Home
last modified time | relevance | path

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

/hardware/google/gfxstream/guest/mesa/src/vulkan/util/
Dvk_icd_gen.py62 lib_path = args.lib_path variable
64 lib_path = lib_path.replace('/', '\\') variable
69 'library_path': lib_path,
/hardware/google/camera/common/hal/google_camera_hal/
Dzsl_snapshot_capture_session.cc98 for (const auto& lib_path : in CreateSnapshotProcessBlock() local
100 ALOGI("%s: Loading %s", __FUNCTION__, lib_path.c_str()); in CreateSnapshotProcessBlock()
102 lib_handle = dlopen(lib_path.c_str(), RTLD_NOW); in CreateSnapshotProcessBlock()
104 ALOGW("Failed loading %s.", lib_path.c_str()); in CreateSnapshotProcessBlock()
113 "GetProcessBlockFactoryFunc", lib_path.c_str()); in CreateSnapshotProcessBlock()
149 for (const auto& lib_path : in CreateDenoiseProcessBlock() local
151 ALOGI("%s: Loading %s", __FUNCTION__, lib_path.c_str()); in CreateDenoiseProcessBlock()
153 lib_handle = dlopen(lib_path.c_str(), RTLD_NOW); in CreateDenoiseProcessBlock()
155 ALOGW("Failed loading %s.", lib_path.c_str()); in CreateDenoiseProcessBlock()
164 "GetProcessBlockFactoryFunc", lib_path.c_str()); in CreateDenoiseProcessBlock()
Dcamera_device.cc395 for (const auto& lib_path : in LoadExternalCaptureSession() local
397 ALOGI("%s: Loading %s", __FUNCTION__, lib_path.c_str()); in LoadExternalCaptureSession()
402 lib_handle = dlopen(lib_path.c_str(), RTLD_NOW); in LoadExternalCaptureSession()
404 ALOGW("Failed loading %s.", lib_path.c_str()); in LoadExternalCaptureSession()
413 "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/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/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()
/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()