Searched refs:handleIO (Results 1 - 4 of 4) sorted by relevance

/frameworks/rs/driver/
H A DrsdCore.cpp295 void* handleIO = nullptr; local
296 handleIO = dlopen("libRSSupportIO.so", RTLD_LAZY | RTLD_LOCAL);
297 if (handleIO == nullptr) {
301 sAllocationDestroy = (sAllocationDestroyFnPtr)dlsym(handleIO, "rscAllocationDestroy");
306 sAllocationIoSend = (sAllocationIoSendFnPtr)dlsym(handleIO, "rscAllocationIoSend");
311 sAllocationSetSurface = (sAllocationSetSurfaceFnPtr)dlsym(handleIO, "rscAllocationSetSurface");
/frameworks/rs/cpp/
H A DrsDispatch.cpp479 bool loadIOSuppSyms(void* handleIO, ioSuppDT& ioDispatch){ argument
480 ioDispatch.sAllocationSetSurface = (sAllocationSetSurfaceFnPtr)dlsym(handleIO, "AllocationSetSurface");
H A DrsDispatch.h275 bool loadIOSuppSyms(void* handleIO, ioSuppDT& ioDispatch);
/frameworks/rs/support/jni/
H A Dandroid_renderscript_RenderScript.cpp306 void* handleIO = NULL; local
307 handleIO = dlopen("libRSSupportIO.so", RTLD_LAZY | RTLD_LOCAL);
308 if (handleIO == NULL) {
312 if (loadIOSuppSyms(handleIO, ioDispatch) == false) {

Completed in 74 milliseconds