OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:handleIO
(Results
1 - 2
of
2
) sorted by null
/frameworks/rs/driver/
rsdCore.cpp
295
void*
handleIO
= nullptr;
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/support/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 226 milliseconds