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

  /frameworks/base/media/mca/filterfw/native/core/
native_program.cpp 30 : lib_handle_(NULL),
41 if (lib_handle_)
42 dlclose(lib_handle_);
46 if (!lib_handle_) {
47 lib_handle_ = dlopen(lib_name.c_str(), RTLD_NOW);
48 if (!lib_handle_) {
58 if (!lib_handle_)
60 process_function_ = reinterpret_cast<ProcessFunctionPtr>(dlsym(lib_handle_, func_name.c_str()));
69 if (!lib_handle_)
71 init_function_ = reinterpret_cast<InitFunctionPtr>(dlsym(lib_handle_, func_name.c_str()))
    [all...]
native_program.h 65 void* lib_handle_; member in class:android::filterfw::NativeProgram
  /external/webrtc/webrtc/base/
macwindowpicker.h 31 void* lib_handle_; member in class:rtc::MacWindowPicker
macwindowpicker.cc 37 MacWindowPicker::MacWindowPicker() : lib_handle_(NULL), get_window_list_(NULL),
42 if (lib_handle_ != NULL) {
43 dlclose(lib_handle_);
51 lib_handle_ = dlopen(kCoreGraphicsName, RTLD_NOW);
52 if (lib_handle_ == NULL) {
57 get_window_list_ = dlsym(lib_handle_, kWindowListCopyWindowInfo);
59 dlsym(lib_handle_, kWindowListCreateDescriptionFromArray);
65 dlclose(lib_handle_);
66 lib_handle_ = NULL;
  /external/vulkan-validation-layers/demos/smoke/
ShellXcb.h 51 void *lib_handle_; member in class:ShellXcb
ShellAndroid.h 47 void *lib_handle_; member in class:ShellAndroid
ShellWayland.h 42 void *lib_handle_; member in class:ShellWayland
ShellAndroid.cpp 83 dlclose(lib_handle_);
126 lib_handle_ = handle;
ShellWayland.cpp 120 dlclose(lib_handle_);
209 lib_handle_ = handle;
ShellXcb.cpp 95 dlclose(lib_handle_);
180 lib_handle_ = handle;
  /device/google/dragon/bluetooth/
vendor_interface.h 61 void* lib_handle_; member in class:android::hardware::bluetooth::V1_0::dragon::VendorInterface
vendor_interface.cc 189 lib_handle_ = dlopen(VENDOR_LIBRARY_NAME, RTLD_NOW);
190 if (!lib_handle_) {
197 dlsym(lib_handle_, VENDOR_LIBRARY_SYMBOL_NAME));
280 if (lib_handle_ != nullptr) {
281 dlclose(lib_handle_);
282 lib_handle_ = nullptr;
  /hardware/interfaces/bluetooth/1.0/default/
vendor_interface.h 61 void *lib_handle_; member in class:android::hardware::bluetooth::V1_0::implementation::VendorInterface
vendor_interface.cc 192 lib_handle_ = dlopen(VENDOR_LIBRARY_NAME, RTLD_NOW);
193 if (!lib_handle_) {
200 dlsym(lib_handle_, VENDOR_LIBRARY_SYMBOL_NAME));
299 if (lib_handle_ != nullptr) {
300 dlclose(lib_handle_);
301 lib_handle_ = nullptr;

Completed in 938 milliseconds