Home
last modified time | relevance | path

Searched refs:lib_path (Results 1 – 6 of 6) sorted by relevance

/hardware/google/camera/common/hal/google_camera_hal/
Dcamera_device.cc269 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()
Dzsl_snapshot_capture_session.cc97 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/
Dcamera_device_session_tests.cc71 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/
Dutils.cc476 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/
Dma_listener.c446 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/
Dmaxxaudio.c454 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()