• Home
  • Raw
  • Download

Lines Matching refs:cacheOutputPath

105   cacheOutputPath: string,  property
631 let cacheOutputPath: string = "";
635 cacheOutputPath = path.join(process.env.cachePath, TEMPORARY, abilityDir, keyPath);
637 cacheOutputPath = output;
639 validateFilePathLength(cacheOutputPath, logger);
640 parent = path.join(cacheOutputPath, '..');
644 fs.writeFileSync(cacheOutputPath, inputString);
645 if (fs.existsSync(cacheOutputPath)) {
646 const fileSize: any = fs.statSync(cacheOutputPath).size;
654 cacheOutputPath = toUnixPath(cacheOutputPath);
656 …intermediateJsBundle.push({path: output, size: fileSize, cacheOutputPath: cacheOutputPath, sourceF…
945 const cacheOutputPath: string = inputPaths[i].cacheOutputPath; constant
946 const cacheAbcFilePath: string = cacheOutputPath.replace(/\.temp\.js$/, '.abc');
947 if (!fs.existsSync(cacheOutputPath)) {
948 logger.debug(red, `ArkTS:ERROR ${cacheOutputPath} is lost`, reset);
953 const hashInputContentData: any = toHashData(cacheOutputPath);
955 …if (jsonObject[cacheOutputPath] === hashInputContentData && jsonObject[cacheAbcFilePath] === hashA…
956 updateJsonObject[cacheOutputPath] = hashInputContentData;
972 const cacheOutputPath: string = fileterIntermediateJsBundle[i].cacheOutputPath; constant
973 const cacheAbcFilePath: string = cacheOutputPath.replace(/\.temp\.js$/, '.abc');
974 if (!fs.existsSync(cacheOutputPath) || !fs.existsSync(cacheAbcFilePath)) {
975 logger.debug(red, `ArkTS:ERROR ${cacheOutputPath} is lost`, reset);
979 const hashInputContentData: any = toHashData(cacheOutputPath);
981 hashJsonObject[cacheOutputPath] = hashInputContentData;
1043 const cacheOutputPath: string = intermediateJsBundle[i].cacheOutputPath; constant
1044 …const cacheAbcFilePath: string = intermediateJsBundle[i].cacheOutputPath.replace(/\.temp\.js$/, ".…
1058 if (process.env.cachePath === undefined && fs.existsSync(cacheOutputPath)) {
1059 fs.unlinkSync(cacheOutputPath);
1258 const cacheOutputPath: string = info.cacheOutputPath; constant
1262 const abcFilePath: string = cacheOutputPath.replace(/\.temp\.js$/, ".abc");
1263 filesInfo += `${cacheOutputPath};${recordName};${moduleType};${sourceFile};${abcFilePath}\n`;