HomeSort by relevance Sort by last modified time
    Searched refs:lib_handle_ (Results 1 - 6 of 6) 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/chromium_org/third_party/libjingle/source/talk/base/
macwindowpicker.h 24 void* lib_handle_; member in class:talk_base::MacWindowPicker
macwindowpicker.cc 31 MacWindowPicker::MacWindowPicker() : lib_handle_(NULL), get_window_list_(NULL),
36 if (lib_handle_ != NULL) {
37 dlclose(lib_handle_);
45 lib_handle_ = dlopen(kCoreGraphicsName, RTLD_NOW);
46 if (lib_handle_ == NULL) {
51 get_window_list_ = dlsym(lib_handle_, kWindowListCopyWindowInfo);
53 dlsym(lib_handle_, kWindowListCreateDescriptionFromArray);
59 dlclose(lib_handle_);
60 lib_handle_ = NULL;
  /external/chromium_org/third_party/webrtc/base/
macwindowpicker.h 30 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;

Completed in 5465 milliseconds