/drivers/hdf_core/framework/tools/hdi-gen/util/ |
D | file.cpp | 267 char *absPath = _fullpath(realPath, path.c_str(), PATH_MAX); in CreateParentDir() local 269 char *absPath = realpath(path.c_str(), realPath); in CreateParentDir() local 271 return absPath == nullptr ? "" : absPath; in CreateParentDir()
|
/drivers/peripheral/audio/test/systemtest/common/lib_common/src/ |
D | audio_lib_common.cpp | 182 char absPath[PATH_MAX] = {0}; in RenderReqMmapBufferInit() local 183 if (realpath(path.c_str(), absPath) == nullptr) { in RenderReqMmapBufferInit() 187 FILE *file = fopen(absPath, "rb+"); in RenderReqMmapBufferInit()
|
/drivers/peripheral/audio/test/systemtest/common/adm_common/src/ |
D | audio_adm_common.cpp | 100 char absPath[PATH_MAX] = {0}; in AdmRenderFramePrepare() local 101 if (realpath(path.c_str(), absPath) == nullptr) { in AdmRenderFramePrepare() 104 FILE *file = fopen(absPath, "rb"); in AdmRenderFramePrepare()
|
/drivers/peripheral/camera/vdi_base/usb_camera/adapter/platform/v4l2/src/driver_adapter/src/ |
D | v4l2_uvc.cpp | 41 char absPath[PATH_MAX] = {0}; in V4L2UvcSearchCapability() local 43 name = realpath(v4l2Device.c_str(), absPath); in V4L2UvcSearchCapability() 122 char absPath[PATH_MAX] = {0}; in V4L2UvcGetCap() local 124 devName = realpath(v4l2Device.c_str(), absPath); in V4L2UvcGetCap()
|
/drivers/peripheral/camera/vdi_base/common/adapter/platform/v4l2/src/driver_adapter/src/ |
D | v4l2_uvc.cpp | 41 char absPath[PATH_MAX] = {0}; in V4L2UvcSearchCapability() local 43 name = realpath(v4l2Device.c_str(), absPath); in V4L2UvcSearchCapability() 122 char absPath[PATH_MAX] = {0}; in V4L2UvcGetCap() local 124 devName = realpath(v4l2Device.c_str(), absPath); in V4L2UvcGetCap()
|
D | v4l2_fileformat.cpp | 307 char absPath[PATH_MAX] = {0}; in V4L2OpenDevice() local 309 devName = realpath(deviceName.c_str(), absPath); in V4L2OpenDevice()
|
/drivers/peripheral/camera/vdi_base/common/pipeline_core/ipp/src/ |
D | algo_plugin.cpp | 158 char absPath[PATH_MAX] = {0}; in CheckLibPath() local 159 if (path == nullptr || (realpath(path, absPath) == nullptr)) { in CheckLibPath()
|
/drivers/peripheral/audio/test/systemtest/supportlibs/common/render/src/ |
D | audio_librender_test.cpp | 163 char absPath[PATH_MAX] = {0}; in LibStartAndStream() local 164 if (realpath(path.c_str(), absPath) == nullptr) { in LibStartAndStream() 167 FILE *file = fopen(absPath, "rb"); in LibStartAndStream() 522 char absPath[PATH_MAX] = {0}; variable 523 if (realpath(AUDIO_FILE.c_str(), absPath) == nullptr) { 526 ASSERT_NE(nullptr, realpath(AUDIO_FILE.c_str(), absPath)); 528 FILE *file = fopen(absPath, "rb");
|
D | audio_alsa_librender_test.cpp | 517 char absPath[PATH_MAX] = {0}; variable 518 if (realpath(AUDIO_FILE.c_str(), absPath) == nullptr) { 520 ASSERT_NE(nullptr, realpath(AUDIO_FILE.c_str(), absPath)); 522 FILE *file = fopen(absPath, "rb"); 558 char absPath[PATH_MAX] = {0}; variable 559 if (realpath(AUDIO_FILE.c_str(), absPath) == nullptr) { 561 ASSERT_NE(nullptr, realpath(AUDIO_FILE.c_str(), absPath)); 563 FILE *file = fopen(absPath, "rb");
|
/drivers/peripheral/audio/test/systemtest/common/hdi_common/src/ |
D | audio_hdi_common.cpp | 630 char absPath[PATH_MAX] = {0}; in RenderFramePrepare() local 631 if (realpath(path.c_str(), absPath) == nullptr) { in RenderFramePrepare() 634 FILE *file = fopen(absPath, "rb"); in RenderFramePrepare() 917 char absPath[PATH_MAX] = {0}; in PlayAudioFile() local 918 if (realpath(audiopara.path, absPath) == nullptr) { in PlayAudioFile() 924 FILE *file = fopen(absPath, "rb"); in PlayAudioFile() 1032 char absPath[PATH_MAX] = {0}; in PlayMapAudioFile() local 1033 if (realpath(audiopara.path, absPath) == nullptr) { in PlayMapAudioFile() 1036 FILE *fp = fopen(absPath, "rb+"); in PlayMapAudioFile()
|
/drivers/peripheral/audio/test/systemtest/common/hdi_service_common/src/ |
D | hdi_service_common.cpp | 558 char absPath[PATH_MAX] = {0}; in RenderFramePrepare() local 559 if (realpath(path.c_str(), absPath) == nullptr) { in RenderFramePrepare() 563 FILE *file = fopen(absPath, "rb"); in RenderFramePrepare() 694 char absPath[PATH_MAX] = {0}; in PlayAudioFile() local 695 if (realpath(audiopara.path, absPath) == nullptr) { in PlayAudioFile() 699 FILE *file = fopen(absPath, "rb"); in PlayAudioFile()
|
/drivers/peripheral/audio/test/systemtest/hdi_service/common/render/src/ |
D | audio_idl_hdirender_test.cpp | 549 char absPath[PATH_MAX] = {0}; variable 550 realpath(AUDIO_FILE.c_str(), absPath); 551 ASSERT_NE(realpath(AUDIO_FILE.c_str(), absPath), nullptr); 553 FILE *file = fopen(absPath, "rb");
|