Home | History | Annotate | Download | only in xcore

Lines Matching refs:handle

49     void *handle = open_handle (lib_path);
50 //XCAM_ASSERT (handle);
51 if (!handle) {
55 desc = load_symbol (handle);
69 void *handle = NULL;
74 handle = dlopen (lib_path, RTLD_LAZY);
75 if (!handle) {
81 _handle = handle;
82 return handle;
86 AnalyzerLoader::get_symbol (void* handle)
90 XCAM_ASSERT (handle);
92 desc = (void *)dlsym (handle, _symbol);