Searched refs:lib_path (Results 1 – 6 of 6) sorted by relevance
/hardware/google/camera/common/hal/google_camera_hal/ |
D | camera_device.cc | 269 for (const auto& lib_path : in LoadExternalCaptureSession() local 271 ALOGI("%s: Loading %s", __FUNCTION__, lib_path.c_str()); in LoadExternalCaptureSession() 276 lib_handle = dlopen(lib_path.c_str(), RTLD_NOW); in LoadExternalCaptureSession() 278 ALOGW("Failed loading %s.", lib_path.c_str()); in LoadExternalCaptureSession() 287 "GetCaptureSessionFactory", lib_path.c_str()); in LoadExternalCaptureSession()
|
D | zsl_snapshot_capture_session.cc | 97 for (const auto& lib_path : in CreateSnapshotProcessBlock() local 99 ALOGI("%s: Loading %s", __FUNCTION__, lib_path.c_str()); in CreateSnapshotProcessBlock() 101 lib_handle = dlopen(lib_path.c_str(), RTLD_NOW); in CreateSnapshotProcessBlock() 103 ALOGW("Failed loading %s.", lib_path.c_str()); in CreateSnapshotProcessBlock() 112 "GetProcessBlockFactoryFunc", lib_path.c_str()); in CreateSnapshotProcessBlock()
|
/hardware/google/camera/common/hal/tests/ |
D | camera_device_session_tests.cc | 71 for (const auto& lib_path : in LoadExternalCaptureSession() local 73 ALOGI("%s: Loading %s", __FUNCTION__, lib_path.c_str()); in LoadExternalCaptureSession() 75 lib_handle = dlopen(lib_path.c_str(), RTLD_NOW); in LoadExternalCaptureSession() 77 ALOGW("Failed loading %s.", lib_path.c_str()); in LoadExternalCaptureSession() 86 "GetCaptureSessionFactory", lib_path.c_str()); in LoadExternalCaptureSession()
|
/hardware/google/camera/common/hal/utils/ |
D | utils.cc | 476 std::string lib_path(dir_path); in FindLibraryPaths() local 477 lib_path += entry->d_name; in FindLibraryPaths() 479 if (stat(lib_path.c_str(), &st) == 0) { in FindLibraryPaths() 481 libs.push_back(lib_path); in FindLibraryPaths()
|
/hardware/qcom/audio/post_proc/ |
D | ma_listener.c | 446 char lib_path[PATH_MAX] = {0}; in init_once() local 457 ret = snprintf(lib_path, PATH_MAX, "%s/%s", HAL_VENDOR_PATH, HAL_LIB_NAME); in init_once() 463 handle = dlopen(lib_path, RTLD_NOW); in init_once()
|
/hardware/qcom/audio/hal/audio_extn/ |
D | maxxaudio.c | 454 char lib_path[128] = {0}; in audio_extn_ma_init() local 475 ret = snprintf(lib_path, sizeof(lib_path), "%s/%s", LIB_MA_PATH, LIB_MA_PARAM); in audio_extn_ma_init() 481 my_data->waves_handle = dlopen(lib_path, RTLD_NOW); in audio_extn_ma_init()
|