Searched refs:dirPath (Results 1 – 12 of 12) sorted by relevance
/developtools/profiler/device/plugins/api/test/unittest/ |
D | plugin_watcher_test.cpp | 81 void CreateFile(std::string dirPath) const in CreateFile() 84 int fd = creat((dirPath + it).c_str(), DEAFULT_FILE_MODE); in CreateFile() 91 void AddFile(std::string dirPath) const in AddFile() 94 int fd = creat((dirPath + it).c_str(), DEAFULT_FILE_MODE); in AddFile() 103 void DeleteFile(std::string dirPath) const in DeleteFile() 106 if (remove((dirPath + it).c_str()) != 0) { in DeleteFile() 111 if (remove((dirPath + it).c_str()) != 0) { in DeleteFile() 117 bool CheckFileList(std::string dirPath) const in CheckFileList() 124 if (cmpFileList.at(i) != (dirPath + expectFileList.at(i))) { in CheckFileList()
|
/developtools/global_resource_tool/src/ |
D | resource_directory.cpp | 72 string dirPath = it->GetFilePath().GetPath(); in ScanResourceLimitKeyDir() local 79 cerr << "Error: '" << dirPath << "' not directory." << endl; in ScanResourceLimitKeyDir() 90 cerr << "Error: '" << dirPath << "', invalid directory name '"; in ScanResourceLimitKeyDir() 94 DirectoryInfo info = { limitKey, fileCluster, dirPath, keyParams, type }; in ScanResourceLimitKeyDir()
|
D | i_resource_compiler.cpp | 45 FileEntry f(directoryInfo.dirPath); in Compile()
|
/developtools/profiler/device/plugins/ftrace_plugin/include/ |
D | file_utils.h | 28 static std::vector<std::string> ListDir(const std::string& dirPath);
|
/developtools/profiler/device/plugins/ftrace_plugin/src/ |
D | file_utils.cpp | 107 std::vector<std::string> FileUtils::ListDir(const std::string& dirPath) in ListDir() argument 110 DIR* dir = opendir(dirPath.c_str()); in ListDir()
|
/developtools/profiler/device/plugins/process_plugin/include/ |
D | process_data_plugin.h | 64 DIR* OpenDestDir(const char* dirPath);
|
/developtools/profiler/device/plugins/cpu_plugin/include/ |
D | cpu_data_plugin.h | 99 DIR* OpenDestDir(std::string& dirPath);
|
/developtools/profiler/device/plugins/process_plugin/src/ |
D | process_data_plugin.cpp | 103 DIR* ProcessDataPlugin::OpenDestDir(const char* dirPath) in OpenDestDir() argument 107 destDir = opendir(dirPath); in OpenDestDir() 109 … PROFILER_LOG_ERROR(LOG_CORE, "%s:failed to opendir(%s), errno=%d", __func__, dirPath, errno); in OpenDestDir()
|
/developtools/profiler/device/plugins/cpu_plugin/src/ |
D | cpu_data_plugin.cpp | 528 DIR* CpuDataPlugin::OpenDestDir(std::string& dirPath) in OpenDestDir() argument 532 destDir = opendir(dirPath.c_str()); in OpenDestDir() 533 …CHECK_NOTNULL(destDir, nullptr, "%s:failed to opendir(%s), errno=%d", __func__, dirPath.c_str(), e… in OpenDestDir()
|
/developtools/global_resource_tool/include/ |
D | resource_data.h | 272 std::string dirPath; member
|
/developtools/profiler/device/plugins/memory_plugin/include/ |
D | memory_data_plugin.h | 354 DIR* OpenDestDir(const char* dirPath);
|
/developtools/profiler/device/plugins/memory_plugin/src/ |
D | memory_data_plugin.cpp | 526 DIR* MemoryDataPlugin::OpenDestDir(const char* dirPath) in OpenDestDir() argument 530 destDir = opendir(dirPath); in OpenDestDir() 535 …PROFILER_LOG_ERROR(LOG_CORE, "%s:failed to opendir(%s), errno(%d:%s)", __func__, dirPath, errno, b… in OpenDestDir()
|