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

  /external/chromium_org/ppapi/native_client/tests/nacl_browser/browser_dynamic_library/
browser_dlopen_test.cc 22 void* lib_handle = dlopen("libmemusage.so", RTLD_LAZY); local
23 EXPECT(lib_handle == NULL);
28 void CheckSecondaryThreadSuccess(void *lib_handle, int32_t unused_result) {
29 EXPECT(lib_handle != NULL);
34 void* lib_handle = dlopen("libmemusage.so", RTLD_LAZY); local
37 lib_handle);
  /external/bluetooth/bluedroid/hci/src/
vendor.c 38 static void *lib_handle; variable
63 assert(lib_handle == NULL);
65 lib_handle = dlopen(VENDOR_LIBRARY_NAME, RTLD_NOW);
66 if (!lib_handle) {
71 vendor_interface = (bt_vendor_interface_t *)dlsym(lib_handle, VENDOR_LIBRARY_SYMBOL_NAME);
87 if (lib_handle)
88 dlclose(lib_handle);
89 lib_handle = NULL;
97 if (lib_handle)
98 dlclose(lib_handle);
    [all...]
  /device/moto/shamu/camera/QCamera2/stack/mm-camera-test/inc/
mm_qcamera_commands.h 36 int tuneserver_close_cam(mm_camera_lib_handle *lib_handle);
37 int tuneserver_stop_cam(mm_camera_lib_handle *lib_handle);
38 int tuneserver_open_cam(mm_camera_lib_handle *lib_handle);
mm_qcamera_socket.h 123 int eztune_server_start(void *lib_handle);
mm_qcamera_app.h 132 void *lib_handle; member in struct:__anon4426
  /device/moto/shamu/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_commands.c 42 mm_camera_lib_handle *lib_handle = (mm_camera_lib_handle *) ctrl; local
43 tuningserver_t *tctrl = &lib_handle->tsctrl;
58 mm_camera_lib_set_preview_usercb(lib_handle,
134 mm_camera_lib_handle *lib_handle = (mm_camera_lib_handle *) ctrl; local
135 tuningserver_t *tctrl = &lib_handle->tsctrl;
139 lib_handle, TUNE_CMD_INIT, &client_socket_id, send_buf, send_len);
211 * @lib_handle: the camera handle object
217 int tuneserver_close_cam(mm_camera_lib_handle *lib_handle)
221 result = mm_camera_lib_close(lib_handle);
231 * @lib_handle: the camera handle objec
    [all...]
mm_qcamera_main_menu.c 929 int increase_contrast (mm_camera_lib_handle *lib_handle) {
936 return mm_camera_lib_send_command(lib_handle,
947 int decrease_contrast (mm_camera_lib_handle *lib_handle) {
954 return mm_camera_lib_send_command(lib_handle,
1670 mm_camera_lib_handle lib_handle; local
    [all...]
mm_qcamera_socket.c 333 tuneserver_stop_cam(&tsctrl->lib_handle);
337 tuneserver_close_cam(&tsctrl->lib_handle);
625 mm_camera_lib_handle *lib_handle = (mm_camera_lib_handle *)data; local
681 result = tuneserver_open_cam(&tsctrl.lib_handle, &tsctrl);
688 result = tuneserver_open_cam(lib_handle);
694 lib_handle->tsctrl.clientsocket_id = client_socket;
695 if (tuneserver_ack_onaccept_initprotocol(&lib_handle->tsctrl) < 0) {
700 tuneserver_initialize_tuningp(lib_handle, client_socket,
701 lib_handle->tsctrl.proto->send_buf, lib_handle->tsctrl.proto->send_len)
    [all...]
mm_qcamera_app.c     [all...]
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_wrappers.cpp 103 void* WrapDlsym(void* lib_handle, const char* symbol_name) {
104 LibraryView* wrap_lib = reinterpret_cast<LibraryView*>(lib_handle);
111 if (!lib_handle) {
117 if (lib_handle == RTLD_DEFAULT || lib_handle == RTLD_NEXT) {
127 // when |lib_handle| corresponds to a crazy library, except that
160 lib_handle,
193 int WrapDlclose(void* lib_handle) {
194 LibraryView* wrap_lib = reinterpret_cast<LibraryView*>(lib_handle);
208 SetLinkerError("Invalid library handle %p", lib_handle);
    [all...]
  /ndk/sources/android/crazy_linker/src/
crazy_linker_wrappers.cpp 103 void* WrapDlsym(void* lib_handle, const char* symbol_name) {
104 LibraryView* wrap_lib = reinterpret_cast<LibraryView*>(lib_handle);
111 if (!lib_handle) {
117 if (lib_handle == RTLD_DEFAULT || lib_handle == RTLD_NEXT) {
127 // when |lib_handle| corresponds to a crazy library, except that
160 lib_handle,
193 int WrapDlclose(void* lib_handle) {
194 LibraryView* wrap_lib = reinterpret_cast<LibraryView*>(lib_handle);
208 SetLinkerError("Invalid library handle %p", lib_handle);
    [all...]
  /device/asus/flo/camera/mm-image-codec/qomx_core/
qomx_core.h 65 * @lib_handle: Library handle after dlopen
76 void *lib_handle; member in struct:_omx_core_component_t
qomx_core.c 193 p_core_comp->lib_handle = dlopen(p_core_comp->lib_name, RTLD_NOW);
194 if (NULL == p_core_comp->lib_handle) {
202 p_core_comp->create_comp_func = dlsym(p_core_comp->lib_handle,
204 p_core_comp->get_instance = dlsym(p_core_comp->lib_handle, "getInstance");
246 dlclose(p_core_comp->lib_handle);
247 p_core_comp->lib_handle = NULL;
334 rc = dlclose(p_core_comp->lib_handle);
335 p_core_comp->lib_handle = NULL;
  /device/lge/hammerhead/camera/mm-image-codec/qomx_core/
qomx_core.h 65 * @lib_handle: Library handle after dlopen
76 void *lib_handle; member in struct:_omx_core_component_t
qomx_core.c 193 p_core_comp->lib_handle = dlopen(p_core_comp->lib_name, RTLD_NOW);
194 if (NULL == p_core_comp->lib_handle) {
202 p_core_comp->create_comp_func = dlsym(p_core_comp->lib_handle,
204 p_core_comp->get_instance = dlsym(p_core_comp->lib_handle, "getInstance");
246 dlclose(p_core_comp->lib_handle);
247 p_core_comp->lib_handle = NULL;
334 rc = dlclose(p_core_comp->lib_handle);
335 p_core_comp->lib_handle = NULL;
  /device/moto/shamu/camera/mm-image-codec/qomx_core/
qomx_core.h 65 * @lib_handle: Library handle after dlopen
76 void *lib_handle; member in struct:_omx_core_component_t
qomx_core.c 213 p_core_comp->lib_handle = dlopen(p_core_comp->lib_name, RTLD_NOW);
214 if (NULL == p_core_comp->lib_handle) {
222 p_core_comp->create_comp_func = dlsym(p_core_comp->lib_handle,
224 p_core_comp->get_instance = dlsym(p_core_comp->lib_handle, "getInstance");
266 dlclose(p_core_comp->lib_handle);
267 p_core_comp->lib_handle = NULL;
357 rc = dlclose(p_core_comp->lib_handle);
358 p_core_comp->lib_handle = NULL;
  /external/chromium_org/third_party/mesa/src/src/egl/main/
egldriver.c 88 typedef HMODULE lib_handle; typedef
113 typedef void * lib_handle; typedef
142 _eglOpenLibrary(const char *driverPath, lib_handle *handle)
144 lib_handle lib;
200 lib_handle lib;
207 lib = (lib_handle) NULL;
  /external/mesa3d/src/egl/main/
egldriver.c 88 typedef HMODULE lib_handle; typedef
113 typedef void * lib_handle; typedef
142 _eglOpenLibrary(const char *driverPath, lib_handle *handle)
144 lib_handle lib;
200 lib_handle lib;
207 lib = (lib_handle) NULL;
  /hardware/qcom/audio/voice_processing/
voice_processing.c 422 void *lib_handle; local
429 lib_handle = dlopen(EFFECTS_DESCRIPTOR_LIBRARY_PATH, RTLD_NOW);
430 if (lib_handle == NULL) {
434 desc = (const effect_descriptor_t *)dlsym(lib_handle,
439 desc = (const effect_descriptor_t *)dlsym(lib_handle,
445 // desc = (const effect_descriptor_t *)dlsym(lib_handle,
  /hardware/libhardware/modules/sensors/
multihal.cpp 520 void* lib_handle = dlopen(path, RTLD_LAZY); local
521 if (lib_handle == NULL) {
528 struct hw_module_t* module = (hw_module_t*) dlsym(lib_handle, sym);

Completed in 361 milliseconds