Searched defs:handleIO (Results 1 - 3 of 3) sorted by relevance

/frameworks/rs/cpp/
H A DrsDispatch.cpp426 bool loadIOSuppSyms(void* handleIO, ioSuppDT& ioDispatch){ argument
427 ioDispatch.sAllocationSetSurface = (sAllocationSetSurfaceFnPtr)dlsym(handleIO, "AllocationSetSurface");
/frameworks/rs/driver/
H A DrsdCore.cpp282 void* handleIO = nullptr; local
283 handleIO = dlopen("libRSSupportIO.so", RTLD_LAZY | RTLD_LOCAL);
284 if (handleIO == nullptr) {
288 sAllocationDestroy = (sAllocationDestroyFnPtr)dlsym(handleIO, "rscAllocationDestroy");
293 sAllocationIoSend = (sAllocationIoSendFnPtr)dlsym(handleIO, "rscAllocationIoSend");
298 sAllocationSetSurface = (sAllocationSetSurfaceFnPtr)dlsym(handleIO, "rscAllocationSetSurface");
/frameworks/support/v8/renderscript/jni/
H A Dandroid_renderscript_RenderScript.cpp294 void* handleIO = NULL; local
295 handleIO = dlopen("libRSSupportIO.so", RTLD_LAZY | RTLD_LOCAL);
296 if (handleIO == NULL) {
300 if (loadIOSuppSyms(handleIO, ioDispatch) == false) {

Completed in 131 milliseconds