Home
last modified time | relevance | path

Searched refs:fileName (Results 1 – 25 of 159) sorted by relevance

1234567

/developtools/ace_js2bundle/ace-loader/src/
Dcard-loader.js37 const fileName = resourcePath.replace(path.extname(resourcePath).toString(), '')
40 const styleInfo = findStyleFile(fileName)
45 output = addJson(this, output, fileName, '')
90 compResourcepath + `?${customElementName}#${fileName}`)
95 compStyleInfo.styleFileName + `?${customElementName}#${fileName}`)
97 … output = addJson(this, output, compFileName, `?${customElementName}#${fileName}`, elementLastName)
104 function findStyleFile (fileName) { argument
106 let styleFileName = fileName + '.css'
112 styleFileName = fileName + '.less'
117 styleFileName = fileName + '.sass'
[all …]
/developtools/hiperf/test/unittest/common/native/
Dsubcommand_record_test.cpp54 size_t GetFileSize(const char* fileName);
127 size_t SubCommandRecordTest::GetFileSize(const char* fileName) in GetFileSize() argument
129 if (fileName == nullptr) { in GetFileSize()
133 stat(fileName, &statbuf); in GetFileSize()
854 std::string fileName = TEST_FILE; variable
855 size_t fileSize = GetFileSize(fileName.c_str());
867 std::string fileName = TEST_FILE; variable
868 size_t fileSize = GetFileSize(fileName.c_str());
880 std::string fileName = TEST_FILE; variable
881 size_t fileSize = GetFileSize(fileName.c_str());
[all …]
Dreport_protobuf_file_test.cpp80 std::string fileName = "perf.proto"; variable
81 ASSERT_EQ(protobufOutputFileWriter_->Create(fileName), true);
82 EXPECT_EQ(access(fileName.c_str(), F_OK), 0);
85 EXPECT_EQ(protobufOutputFileWriter_->Create(fileName), false);
96 std::string fileName = "perf.proto"; variable
98 ASSERT_EQ(protobufOutputFileWriter_->Create(fileName), true);
111 std::string fileName = "perf.proto"; variable
153 std::string fileName = "perf.proto"; variable
155 ASSERT_EQ(protobufOutputFileWriter_->Create(fileName), true);
173 protobufInputFileReader_->Dump(fileName, protobufReadBack);
[all …]
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/codesigning/sign/
DCentralDirectory.java58 private final byte[] fileName; field in CentralDirectory
66 this.fileName = builder.fileName; in CentralDirectory()
88 return Strings.fromByteArray(this.fileName); in getFileName()
135 private byte[] fileName; field in CentralDirectory.Builder
162 public Builder setFileName(byte[] fileName) { in setFileName() argument
163 this.fileName = fileName; in setFileName()
/developtools/profiler/device/base/test/unittest/
Dcommon_test.cpp134 std::string fileName = "/data/local/tmp/config.txt"; variable
136 EXPECT_TRUE(WriteFile(fileName, fileContent));
141 bool ret = ReadFile(fileName, validPaths, readContent);
146 fileName = "config.txt";
149 ret = ReadFile(fileName, validPaths, readContent);
154 fileName = "configtmp.txt";
157 ret = ReadFile(fileName, validPaths, readContent);
162 fileName = "/data/local/tmp/config.txt";
165 ret = ReadFile(fileName, validPaths, readContent);
170 fileName = "/data/local/tmp/config.txt";
[all …]
/developtools/profiler/device/plugins/hiebpf_plugin/tools/src/
Debpf_converter.cpp208 char fileName[maps.fileNameLen + 1]; in EventMapsParsing() local
209 (void)memset_s(fileName, sizeof(fileName), 0, sizeof(fileName)); in EventMapsParsing()
211 CHK(Read(reinterpret_cast<void*>(fileName), sizeof(fileName) - 1)); in EventMapsParsing()
212 maps.fileName = fileName; in EventMapsParsing()
231 << " fileName: " << maps.fileName << '\n'; in EventMapsParsing()
266 char fileName[info.fileNameSize + 1]; in SymbolInfoParsing() local
267 (void)memset_s(fileName, sizeof(fileName), 0, sizeof(fileName)); in SymbolInfoParsing()
269 CHK(Read(reinterpret_cast<void*>(&fileName), sizeof(fileName) - 1)); in SymbolInfoParsing()
270 info.fileName = fileName; in SymbolInfoParsing()
272 record_[std::string(fileName)] = Record(fileName, symAddr, strAddr); in SymbolInfoParsing()
[all …]
/developtools/profiler/hiebpf/include/
Delf_symbol_info.h40 bool IsCached(const std::string &fileName) in IsCached() argument
42 return (fileNames_.find(fileName) != fileNames_.end()); in IsCached()
45 void CacheFileName(const std::string &fileName) in CacheFileName() argument
47 fileNames_.insert(fileName); in CacheFileName()
50 bool GetSymbolTable(const std::string &fileName, ElfSymbolTable &symbolTable);
/developtools/ace_ets2bundle/compiler/src/
Dets_checker.ts74 SOURCE_FILES.set(path.normalize(sourceFile.fileName), sourceFile);
81 .forEach((fileName: string) => {
82 if (/\.d\.ts$/.test(fileName)) {
83 declarationsFileNames.push(path.resolve(__dirname, '../declarations', fileName));
168 function getCheckJSDocTagNameConfig(fileName: string, sourceFileName: string): CheckJSDocTagNameCon…
172 if (isCardFile(fileName)) {
198 rootFileNames.forEach((fileName: string) => {
199 files[fileName] = {version: 0};
203 getScriptVersion: fileName => {
204 if (!files[path.resolve(fileName)]) {
[all …]
Dprocess_module_files.ts43 …let temporaryFile: string = genTemporaryPath(node.fileName, projectConfig.projectPath, process.env…
54 …let relativeSourceFilePath = toUnixPath(node.fileName).replace(toUnixPath(projectConfig.projectRoo…
84 const fileName: string = node.fileName; constant
89 ts.getBaseFileName(fileName),
100 …sourceMapJson['sources'] = [toUnixPath(fileName).replace(toUnixPath(projectConfig.projectRootPath)…
103 content = transformModuleSpecifier(fileName, processSystemApi(content, true), projectConfig);
/developtools/smartperf_host/ide/src/base-ui/utils/
DCSVFormater.ts23 let fileName = (obj['fileName'] || 'UserExport') + '.csv';
79 this.saveCsvFile(fileName, csv);
82 static saveCsvFile(fileName: any, csvData: any) {
90 linkDom.setAttribute('download', fileName);
96 }), fileName);
101 oWin.document.execCommand('SaveAs', true, fileName);
180 …static async csvExport(dataSource: { columns: any[]; tables: any[]; fileName: string }): Promise<s…
193 fileName: `${dataSource.fileName}_${childIndex}`,
201 fileName: dataSource.fileName,
/developtools/hiperf/test/fuzztest/perffile_fuzzer/
DPerfFile_fuzzer.cpp23 explicit PerfFileReaderFuzzer(const std::string &fileName, FILE *fp) in PerfFileReaderFuzzer() argument
24 : PerfFileReader(fileName, fp) {} in PerfFileReaderFuzzer()
26 static std::unique_ptr<PerfFileReaderFuzzer> Instance(const std::string &fileName, in Instance() argument
29 std::string resolvedPath = CanonicalizeSpecPath(fileName.c_str()); in Instance()
32 printf("fail to append file %s\n", fileName.c_str()); in Instance()
41 printf("fail to open file %s\n", fileName.c_str()); in Instance()
/developtools/profiler/hiebpf/src/
Dmaps_info.cpp103 bool MapsInfo::IsLegalFileName(const std::string &fileName) in IsLegalFileName() argument
105 if (fileName.find(':') != std::string::npos or in IsLegalFileName()
106 fileName.front() == '[' or fileName.back() == ']' or in IsLegalFileName()
107 std::strncmp(fileName.c_str(), "/dev/", sizeof("/dev/")) == 0 or in IsLegalFileName()
108 std::strncmp(fileName.c_str(), "/memfd:", sizeof("/memfd:")) == 0 or in IsLegalFileName()
109 std::strncmp(fileName.c_str(), "//anon", sizeof("//anon")) == 0 or in IsLegalFileName()
110 StringEndsWith(fileName, ".ttf")) { in IsLegalFileName()
Dlibbpf_logger.cpp70 auto fileName = GetLogFileName(); in OpenLogFile() local
71 if (fileName.length() == 0) { in OpenLogFile()
74 fileName = "/data/local/tmp/" + fileName; in OpenLogFile()
75 fd_ = open(fileName.c_str(), O_WRONLY | O_CREAT, FILE_MODE); in OpenLogFile()
80 if (link(fileName.c_str(), logFile.c_str()) != 0) { in OpenLogFile()
/developtools/hdc/src/common/
Ddebug.cpp20 int WriteHexToDebugFile(const char *fileName, const uint8_t *buf, const int bufLen) in WriteHexToDebugFile() argument
23 …(snprintf_s(pathName, sizeof(pathName), sizeof(pathName) - 1, "/mnt/hgfs/vtmp/%s", fileName) < 0) { in WriteHexToDebugFile()
30 … if (snprintf_s(pathName, sizeof(pathName), sizeof(pathName) - 1, "/tmp/%s", fileName) < 0) { in WriteHexToDebugFile()
48 int ReadHexFromDebugFile(const char *fileName, uint8_t *buf, const int bufLen) in ReadHexFromDebugFile() argument
51 …(snprintf_s(pathName, sizeof(pathName), sizeof(pathName) - 1, "/mnt/hgfs/vtmp/%s", fileName) < 0) { in ReadHexFromDebugFile()
56 … if (snprintf_s(pathName, sizeof(pathName), sizeof(pathName) - 1, "/tmp/%s", fileName) < 0 || in ReadHexFromDebugFile()
/developtools/profiler/hiebpf/test/unittest/
Dlibbpf_logger_test.cpp87 std::string fileName = "/data/local/tmp/libebpf.log"; variable
88 ret = logger.OpenLogFile(fileName);
90 std::string cmd = "rm " + fileName;
102 std::string fileName = logger.GetLogFileName(); variable
103 EXPECT_STRNE(fileName.c_str(), "");
Dhhlog_test.cpp44 std::string fileName = HHLogger::GetInstance().GetLogFileName(); variable
45 EXPECT_STRNE(fileName.c_str(), "");
83 std::string fileName = "/data/local/tmp/libebpf.log"; variable
84 ret = HHLogger::GetInstance().InitLogger(HHLOG_DEBUG, fileName);
86 std::string cmd = "rm " + fileName;
/developtools/profiler/device/plugins/api/src/
Dplugin_watcher.cpp75 std::string fileName = entry->d_name; in ScanPlugins() local
77 size_t pos = fileName.rfind(".so"); in ScanPlugins()
78 if (pos != std::string::npos && (pos == fileName.length() - strlen(".so"))) { in ScanPlugins()
79 OnPluginAdded(std::string(fullpath) + '/' + fileName); in ScanPlugins()
121 std::string fileName = event->name; in MonitorIsSet() local
122 size_t pos = fileName.rfind(".so"); in MonitorIsSet()
123 if ((pos == std::string::npos) || (pos != fileName.length() - strlen(".so"))) { in MonitorIsSet()
129 OnPluginAdded(pluginDir + '/' + fileName); in MonitorIsSet()
133 OnPluginRemoved(pluginDir + '/' + fileName); in MonitorIsSet()
/developtools/profiler/host/smartperf/ide/src/trace/
DSpApplication.ts624 fileName: filename,
636 fileName: string,
666 that.vsDownload(mainMenu, fileName, isServer, dbName);
668 that.download(mainMenu, fileName, isServer, dbName);
681 that.vsDownloadDB(mainMenu, fileName);
683 that.downloadDB(mainMenu, fileName);
756 fileName: string,
816 children: getTraceOptionMenus(showFileName, fileSize, fileName, true, dbName),
833 function handleWasmMode(ev: any, showFileName: string, fileSize: string, fileName: string) {
888 children: getTraceOptionMenus(showFileName, fileSize, fileName, false),
[all …]
/developtools/smartperf_host/ide/src/trace/
DSpApplication.ts633 fileName: filename,
645 fileName: string,
675 that.vsDownload(mainMenu, fileName, isServer, dbName);
677 that.download(mainMenu, fileName, isServer, dbName);
690 that.vsDownloadDB(mainMenu, fileName);
692 that.downloadDB(mainMenu, fileName);
765 fileName: string,
825 children: getTraceOptionMenus(showFileName, fileSize, fileName, true, dbName),
843 function handleWasmMode(ev: any, showFileName: string, fileSize: string, fileName: string) {
902 children: getTraceOptionMenus(showFileName, fileSize, fileName, false),
[all …]
/developtools/profiler/host/smartperf/ide/src/base-ui/utils/
DCSVFormater.ts23 fileName = (obj['fileName'] || 'UserExport') + '.csv',
81 this.SaveAs(fileName, CSV);
84 static SaveAs(fileName: any, csvData: any) {
92 linkDom.setAttribute('download', fileName);
100 (navigator as any).msSaveBlob(_csvData, fileName);
105 oWin.document.execCommand('SaveAs', true, fileName);
186 …static async csvExport(dataSource: { columns: any[]; tables: any[]; fileName: string }): Promise<s…
192 fileName: dataSource.fileName,
/developtools/ace_ets2bundle/compiler/test/
Dtest.ts48 fileName: `${name}.ts`,
62 const fileName: string = path.basename(item, '.ts'); constant
63 it(fileName, () => {
64 expectActual(fileName, item);
/developtools/ace_ets2bundle/compiler/src/fast_build/ets_ui/
Drollup-plugin-ets-typescript.ts114 const fileName: string = path.resolve(options.id); constant
115 let shouldDisable: boolean = shouldDisableCache || disableNonEntryFileCache(fileName);
117 …shouldDisable = shouldDisable || storedFileInfo.shouldInvalidFiles.has(fileName) || this.share.raw…
118 if (cacheFile && cacheFile[fileName] && cacheFile[fileName].children.length) {
119 for (let child of cacheFile[fileName].children) {
120 …const newTimeMs: number = fs.existsSync(child.fileName) ? fs.statSync(child.fileName).mtimeMs : -1;
129 storedFileInfo.collectCachedFiles(fileName);
229 fileName: id,
273 targetSourceFile.fileName = id;
278 const writeFile: ts.WriteFileCallback = (fileName: string, data: string) => {
[all …]
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/zip/
DZipEntryHeader.java107 private String fileName; field in ZipEntryHeader
155 this.fileName = new String(nameBytes, StandardCharsets.UTF_8); in readFileName()
193 bf.put(fileName.getBytes(StandardCharsets.UTF_8)); in toBytes()
290 return fileName; in getFileName()
293 public void setFileName(String fileName) { in setFileName() argument
294 this.fileName = fileName; in setFileName()
/developtools/profiler/host/smartperf/ide/src/trace/bean/
DPerfProfile.ts22 fileName: string = ''; property in PerfFile
28 data.fileName = data.path.substring(number + 1);
32 data.fileName = data.path;
53 fileName: string = ''; property in PerfCallChain
/developtools/smartperf_host/ide/src/trace/bean/
DPerfProfile.ts22 fileName: string = ''; property in PerfFile
28 perfData.fileName = perfData.path.substring(number + 1);
32 perfData.fileName = perfData.path;
63 fileName: string = ''; property in PerfCallChain

1234567