| 5165 | // safe-call-into-r-impl.cpp |
| 5166 | bool SetEnableSignalStopSource(bool enabled); |
| 5167 | extern "C" SEXP _arrow_SetEnableSignalStopSource(SEXP enabled_sexp){ |
| 5168 | BEGIN_CPP11 |
| 5169 | arrow::r::Input<bool>::type enabled(enabled_sexp); |
| 5170 | return cpp11::as_sexp(SetEnableSignalStopSource(enabled)); |
| 5171 | END_CPP11 |
| 5172 | } |
| 5173 | // safe-call-into-r-impl.cpp |
| 5174 | bool CanRunWithCapturedR(); |
| 5175 | extern "C" SEXP _arrow_CanRunWithCapturedR(){ |
nothing calls this directly
no test coverage detected