HomeSort by relevance Sort by last modified time
    Searched refs:dlsym (Results 151 - 175 of 461) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/rs/cpu_ref/
rsCpuExecutable.cpp 328 const char *rsInfo = (const char *) dlsym(sharedObj, kRsInfo);
330 const int *rsGlobalEntries = (const int *) dlsym(sharedObj, kRsGlobalEntries);
331 const char **rsGlobalNames = (const char **) dlsym(sharedObj, kRsGlobalNames);
332 const void **rsGlobalAddresses = (const void **) dlsym(sharedObj, kRsGlobalAddresses);
333 const size_t *rsGlobalSizes = (const size_t *) dlsym(sharedObj, kRsGlobalSizes);
334 const uint32_t *rsGlobalProperties = (const uint32_t *) dlsym(sharedObj, kRsGlobalProperties);
367 void* addr = dlsym(sharedObj, line);
401 invokeFunctions[i] = (InvokeFunc_t) dlsym(sharedObj, line);
444 (ForEachFunc_t) dlsym(sharedObj, tmpName);
516 (ReduceInitializerFunc_t) dlsym(sharedObj, tmpNameInitializer)))
    [all...]
  /frameworks/av/media/libstagefright/omx/
OMXMaster.cpp 83 (CreateOMXPluginFunc)dlsym(
86 createOMXPlugin = (CreateOMXPluginFunc)dlsym(
128 (DestroyOMXPluginFunc)dlsym(
  /hardware/intel/common/wrs_omxil_core/utils/src/
module.c 174 new->init = dlsym(new->handle, "module_init");
187 new->exit = dlsym(new->handle, "module_exit");
251 symbol = dlsym(module->handle, string);
  /bionic/libc/bionic/
malloc_common.cpp 230 *func = reinterpret_cast<FunctionType>(dlsym(malloc_impl_handler, symbol));
232 error_log("%s: dlsym(\"%s\") failed", getprogname(), symbol);
338 dlsym(malloc_impl_handle, "debug_initialize"));
346 void* finalize_sym = dlsym(malloc_impl_handle, "debug_finalize");
353 void* get_leak_info_sym = dlsym(malloc_impl_handle, "debug_get_malloc_leak_info");
361 void* free_leak_info_sym = dlsym(malloc_impl_handle, "debug_free_malloc_leak_info");
369 void* malloc_backtrace_sym = dlsym(malloc_impl_handle, "debug_malloc_backtrace");
  /hardware/intel/common/utils/ISV/omx/
isv_omxcore.cpp 77 g_cores[i].mInit = (ISVOMXCore::InitFunc)dlsym(libHandle, "OMX_Init");
78 g_cores[i].mDeinit = (ISVOMXCore::DeinitFunc)dlsym(libHandle, "OMX_Deinit");
81 (ISVOMXCore::ComponentNameEnumFunc)dlsym(libHandle, "OMX_ComponentNameEnum");
83 g_cores[i].mGetHandle = (ISVOMXCore::GetHandleFunc)dlsym(libHandle, "OMX_GetHandle");
84 g_cores[i].mFreeHandle = (ISVOMXCore::FreeHandleFunc)dlsym(libHandle, "OMX_FreeHandle");
87 (ISVOMXCore::GetRolesOfComponentFunc)dlsym(
  /device/huawei/angler/camera/QCamera2/HAL/
QCameraThermalAdapter.cpp 74 *(void **)&mRegister = dlsym(mHandle, "thermal_client_register_callback");
77 ALOGE("%s: dlsym failed with error code %s",
82 *(void **)&mUnregister = dlsym(mHandle, "thermal_client_unregister_callback");
85 ALOGE("%s: dlsym failed with error code %s",
  /device/lge/bullhead/camera/QCamera2/HAL/
QCameraThermalAdapter.cpp 74 *(void **)&mRegister = dlsym(mHandle, "thermal_client_register_callback");
77 ALOGE("%s: dlsym failed with error code %s",
82 *(void **)&mUnregister = dlsym(mHandle, "thermal_client_unregister_callback");
85 ALOGE("%s: dlsym failed with error code %s",
  /device/moto/shamu/camera/QCamera2/HAL/
QCameraThermalAdapter.cpp 74 *(void **)&mRegister = dlsym(mHandle, "thermal_client_register_callback");
77 ALOGE("%s: dlsym failed with error code %s",
82 *(void **)&mUnregister = dlsym(mHandle, "thermal_client_unregister_callback");
85 ALOGE("%s: dlsym failed with error code %s",
  /external/llvm/lib/Support/
DynamicLibrary.cpp 87 return dlsym(Data, symbolName);
128 void *ptr = dlsym(*I, symbolName);
  /frameworks/av/media/libmediaplayerservice/
TestPlayerStub.cpp 146 mNewPlayer = reinterpret_cast<NEW_PLAYER>(dlsym(mHandle,
152 ALOGE("dlsym for newPlayer failed %s", err);
157 mDeletePlayer = reinterpret_cast<DELETE_PLAYER>(dlsym(mHandle,
161 ALOGE("dlsym for deletePlayer failed %s", err);
  /hardware/qcom/audio/hal/audio_extn/
audio_extn.c 117 perf_lock_acq = (perf_lock_acquire_t)dlsym(qcopt_handle,
124 perf_lock_rel = (perf_lock_release_t)dlsym(qcopt_handle,
  /hardware/qcom/camera/QCamera2/HAL/
QCameraThermalAdapter.cpp 79 *(void **)&mRegister = dlsym(mHandle, "thermal_client_register_callback");
82 LOGE("dlsym failed with error code %s",
87 *(void **)&mUnregister = dlsym(mHandle, "thermal_client_unregister_callback");
90 LOGE("dlsym failed with error code %s",
  /hardware/qcom/camera/msmcobalt/QCamera2/HAL/
QCameraThermalAdapter.cpp 79 *(void **)&mRegister = dlsym(mHandle, "thermal_client_register_callback");
82 LOGE("dlsym failed with error code %s",
87 *(void **)&mUnregister = dlsym(mHandle, "thermal_client_unregister_callback");
90 LOGE("dlsym failed with error code %s",
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/common/src/
vidc_color_converter.cpp 58 dlsym(mLibHandle,"createC2DColorConverter");
60 dlsym(mLibHandle,"destroyC2DColorConverter");
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/common/src/
vidc_color_converter.cpp 59 dlsym(mLibHandle,"createC2DColorConverter");
61 dlsym(mLibHandle,"destroyC2DColorConverter");
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/common/src/
vidc_color_converter.cpp 59 dlsym(mLibHandle,"createC2DColorConverter");
61 dlsym(mLibHandle,"destroyC2DColorConverter");
  /hardware/qcom/media/msmcobalt/mm-video-v4l2/vidc/common/src/
vidc_color_converter.cpp 59 dlsym(mLibHandle,"createC2DColorConverter");
61 dlsym(mLibHandle,"destroyC2DColorConverter");
  /art/sigchainlib/
sigchain.cc 311 // dlsym. Calling into the dynamic linker will result in locks being
313 // locks is already taken, dlsym will block trying to reenter a
319 linked_sigaction_sym = dlsym(RTLD_NEXT, "sigaction");
321 linked_sigaction_sym = dlsym(RTLD_DEFAULT, "sigaction");
328 linked_sigprocmask_sym = dlsym(RTLD_NEXT, "sigprocmask");
330 linked_sigprocmask_sym = dlsym(RTLD_DEFAULT, "sigprocmask");
  /bionic/libdl/
libdl.c 30 void* dlsym(void* handle __unused, const char* symbol __unused) { return 0; } function
  /bionic/tests/
pthread_dlfcn_test.cpp 46 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "proxy_pthread_atfork"));
  /device/generic/goldfish/camera/
JpegCompressor.cpp 34 void* res = dlsym(dl, signature);
  /external/compiler-rt/test/asan/TestCases/Linux/
stress_dtls.c 91 Functions[lib] = (f_t)dlsym(handle, buf);
  /external/compiler-rt/test/asan/TestCases/Posix/
dlclose-test.cc 56 fun_t *get = (fun_t*)dlsym(lib, "get_address_of_static_var");
58 printf("failed dlsym\n");
  /external/opencv3/modules/core/src/opencl/runtime/
opencl_clamdblas.cpp 84 return dlsym(h, name);
opencl_clamdfft.cpp 84 return dlsym(h, name);

Completed in 958 milliseconds

1 2 3 4 5 67 8 91011>>