Home
last modified time | relevance | path

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

/hardware/google/camera/common/hal/google_camera_hal/
Dzsl_snapshot_capture_session.cc99 for (const auto& lib_path : in CreateSnapshotProcessBlock() local
101 ALOGI("%s: Loading %s", __FUNCTION__, lib_path.c_str()); in CreateSnapshotProcessBlock()
103 lib_handle = dlopen(lib_path.c_str(), RTLD_NOW); in CreateSnapshotProcessBlock()
105 ALOGW("Failed loading %s.", lib_path.c_str()); in CreateSnapshotProcessBlock()
114 "GetProcessBlockFactoryFunc", lib_path.c_str()); in CreateSnapshotProcessBlock()
150 for (const auto& lib_path : in CreateDenoiseProcessBlock() local
152 ALOGI("%s: Loading %s", __FUNCTION__, lib_path.c_str()); in CreateDenoiseProcessBlock()
154 lib_handle = dlopen(lib_path.c_str(), RTLD_NOW); in CreateDenoiseProcessBlock()
156 ALOGW("Failed loading %s.", lib_path.c_str()); in CreateDenoiseProcessBlock()
165 "GetProcessBlockFactoryFunc", lib_path.c_str()); in CreateDenoiseProcessBlock()
Dcamera_device.cc467 for (const auto& lib_path : in LoadExternalCaptureSession() local
469 ALOGI("%s: Loading %s", __FUNCTION__, lib_path.c_str()); in LoadExternalCaptureSession()
474 lib_handle = dlopen(lib_path.c_str(), RTLD_NOW); in LoadExternalCaptureSession()
476 ALOGW("Failed loading %s.", lib_path.c_str()); in LoadExternalCaptureSession()
485 "GetCaptureSessionFactory", lib_path.c_str()); in LoadExternalCaptureSession()
/hardware/google/camera/common/hal/tests/
Dcamera_device_session_tests.cc70 for (const auto& lib_path : in LoadExternalCaptureSession() local
72 ALOGI("%s: Loading %s", __FUNCTION__, lib_path.c_str()); in LoadExternalCaptureSession()
74 lib_handle = dlopen(lib_path.c_str(), RTLD_NOW); in LoadExternalCaptureSession()
76 ALOGW("Failed loading %s.", lib_path.c_str()); in LoadExternalCaptureSession()
85 "GetCaptureSessionFactory", lib_path.c_str()); in LoadExternalCaptureSession()
/hardware/google/camera/common/hal/utils/
Dutils.cc531 std::string lib_path(dir_path); in FindLibraryPaths() local
532 lib_path += entry->d_name; in FindLibraryPaths()
534 if (stat(lib_path.c_str(), &st) == 0) { in FindLibraryPaths()
536 libs.push_back(lib_path); in FindLibraryPaths()