Home
last modified time | relevance | path

Searched refs:relativeFilePath (Results 1 – 3 of 3) sorted by relevance

/developtools/smartperf_host/trace_streamer/src/parser/htrace_pbreader_parser/
Dhtrace_parser.cpp113 for (auto relativeFilePath : relativeFilePaths) { in ParserFileSO() local
114 if (relativeFilePath.compare(0, directory.length(), directory)) { in ParserFileSO()
115 TS_LOGI("%s not in directory %s", relativeFilePath.c_str(), directory.c_str()); in ParserFileSO()
118 std::unique_ptr<ElfFile> elfFile = ElfFile::MakeUnique(relativeFilePath); in ParserFileSO()
120 TS_LOGI("elf %s load failed", relativeFilePath.c_str()); in ParserFileSO()
123 TS_LOGI("loaded elf %s", relativeFilePath.c_str()); in ParserFileSO()
126 auto absoluteFilePath = relativeFilePath.substr(directory.length()); in ParserFileSO()
/developtools/profiler/host/smartperf/trace_streamer/src/parser/htrace_pbreader_parser/
Dhtrace_parser.cpp116 for (auto relativeFilePath : relativeFilePaths) { in ParserFileSO() local
117 if (relativeFilePath.compare(0, directory.length(), directory)) { in ParserFileSO()
118 TS_LOGI("%s not in directory %s", relativeFilePath.c_str(), directory.c_str()); in ParserFileSO()
121 std::unique_ptr<ElfFile> elfFile = ElfFile::MakeUnique(relativeFilePath); in ParserFileSO()
123 TS_LOGI("elf %s load failed", relativeFilePath.c_str()); in ParserFileSO()
126 TS_LOGI("loaded elf %s", relativeFilePath.c_str()); in ParserFileSO()
129 auto absoluteFilePath = relativeFilePath.substr(directory.length()); in ParserFileSO()
/developtools/ace_ets2bundle/compiler/src/
Dutils.ts322 const relativeFilePath: string = filePath.replace(projectRootPath, ''); constant
323 const output: string = path.join(buildPath, relativeFilePath);
334 …const relativeFilePath: string = tempFilePath.substring(tempFilePath.indexOf(packageDir) + package… constant
335 … output = path.join(buildPath, buildInHar ? '' : TEMPORARY, packageDir, MAIN, relativeFilePath);
344 const relativeFilePath: string = filePath.replace(projectPath, ''); constant
345 const output: string = path.join(buildPath, buildInHar ? '' : TEMPORARY, relativeFilePath);