Searched refs:lib_path (Results 1 – 4 of 4) sorted by relevance
/hardware/google/camera/common/hal/google_camera_hal/ |
D | zsl_snapshot_capture_session.cc | 99 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()
|
D | camera_device.cc | 467 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/ |
D | camera_device_session_tests.cc | 70 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/ |
D | utils.cc | 531 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()
|