Searched refs:pathName (Results 1 - 9 of 9) sorted by relevance
/drivers/peripheral/display/hal/default_standard/src/utils/ |
H A D | display_module_loader.h | 27 static std::unique_ptr<DisplayModuleLoader> Create(const std::string &pathName)
in Create() argument 29 void *handle = dlopen(pathName.c_str(), RTLD_NOW | RTLD_NOLOAD);
in Create() 31 handle = dlopen(pathName.c_str(), RTLD_NOW);
in Create()
|
H A D | display_adapter.cpp | 71 int32_t DisplayAdapter::OpenDevice(const std::string &pathName, int32_t flags, mode_t mode)
in OpenDevice() argument 75 return funcs_->OpenDevice(pathName.c_str(), flags, mode);
in OpenDevice() 77 return open(pathName.c_str(), flags, mode);
in OpenDevice()
|
H A D | display_adapter.h | 36 int32_t OpenDevice(const std::string &pathName, int32_t flags, mode_t mode);
|
/drivers/hdf_core/adapter/khdf/liteos/osal/src/ |
H A D | osal_file.c | 43 char pathName[PATH_MAX + 1] = {0}; in OsalFileOpen() local 52 if (realpath(path, pathName) == NULL) { in OsalFileOpen() 57 fd = open(pathName, flags, rights); in OsalFileOpen()
|
/drivers/peripheral/camera/vdi_base/common/pipeline_core/ipp/src/ |
H A D | ipp_algo_parser.cpp | 29 IppAlgoParser::IppAlgoParser(const std::string& pathName) in IppAlgoParser() argument 31 pathName_ = pathName; in IppAlgoParser()
|
/drivers/peripheral/camera/vdi_base/common/pipeline_core/ipp/include/ |
H A D | ipp_algo_parser.h | 30 IppAlgoParser(const std::string& pathName);
|
/drivers/peripheral/usb/test/unittest/hal/src/ |
H A D | usbfn_mtp_test.cpp | 104 uint64_t GetFileSize(const std::string &pathName) in GetFileSize() argument 107 uint64_t ret = stat(pathName.c_str(), &statbuf); in GetFileSize() 114 bool WriteRandomDataToFile(const std::string &pathName, uint64_t fileSize) in WriteRandomDataToFile() argument 121 FILE *opFile = std::fopen(pathName.c_str(), "w"); in WriteRandomDataToFile() 123 HDF_LOGE("UsbfnMtpTest::WriteRandomDataToFile create file failed: %{public}s", pathName.c_str()); in WriteRandomDataToFile() 147 pathName.c_str(), GetFileSize(pathName), fileSize); in WriteRandomDataToFile() 151 bool GenerateFile(const std::string &pathName, int64_t fileSize) in GenerateFile() argument 153 if (GetFileSize(pathName) == static_cast<uint64_t>(fileSize)) { in GenerateFile() 158 int32_t ret = truncate(pathName in GenerateFile() [all...] |
/drivers/peripheral/camera/vdi_base/v4l2/include/camera_host/ |
H A D | hcs_deal.h | 33 HcsDeal(const std::string &pathName);
41 void SetHcsPathName(const std::string &pathName);
|
/drivers/peripheral/camera/vdi_base/v4l2/src/camera_host/ |
H A D | hcs_deal.cpp | 25 HcsDeal::HcsDeal(const std::string &pathName) : sPathName(pathName), pDevResIns(nullptr), pRootNode(nullptr) {}
in HcsDeal() argument 34 void HcsDeal::SetHcsPathName(const std::string &pathName)
in SetHcsPathName() argument 36 sPathName = pathName;
in SetHcsPathName()
|
Completed in 7 milliseconds