HomeSort by relevance Sort by last modified time
    Searched refs:handleIO (Results 1 - 4 of 4) sorted by null

  /frameworks/rs/driver/
rsdCore.cpp 288 void* handleIO = nullptr;
289 handleIO = dlopen("libRSSupportIO.so", RTLD_LAZY | RTLD_LOCAL);
290 if (handleIO == nullptr) {
294 sAllocationDestroy = (sAllocationDestroyFnPtr)dlsym(handleIO, "rscAllocationDestroy");
299 sAllocationIoSend = (sAllocationIoSendFnPtr)dlsym(handleIO, "rscAllocationIoSend");
304 sAllocationSetSurface = (sAllocationSetSurfaceFnPtr)dlsym(handleIO, "rscAllocationSetSurface");
  /frameworks/rs/cpp/
rsDispatch.cpp 441 bool loadIOSuppSyms(void* handleIO, ioSuppDT& ioDispatch){
442 ioDispatch.sAllocationSetSurface = (sAllocationSetSurfaceFnPtr)dlsym(handleIO, "AllocationSetSurface");
rsDispatch.h 196 bool loadIOSuppSyms(void* handleIO, ioSuppDT& ioDispatch);
  /frameworks/support/v8/renderscript/jni/
android_renderscript_RenderScript.cpp 304 void* handleIO = NULL;
305 handleIO = dlopen("libRSSupportIO.so", RTLD_LAZY | RTLD_LOCAL);
306 if (handleIO == NULL) {
310 if (loadIOSuppSyms(handleIO, ioDispatch) == false) {
    [all...]

Completed in 472 milliseconds