Home
last modified time | relevance | path

Searched refs:outPath (Results 1 – 16 of 16) sorted by relevance

/developtools/smartperf_host/ide/
Dbuild.js114 let outPath = path.normalize(path.join(__dirname, '/', outDir));
115 if (checkDirExist(outPath)) {
117 removeDir(outPath);
181 rs = childProcess.spawnSync('go', ['build', '-o', outPath, serverSrc], {
185 rs = childProcess.spawnSync('go', ['build', '-o', outPath + '/main', serverSrc], {
225 function removeDir(outPath) { argument
227 if (fs.existsSync(outPath)) {
228 files = fs.readdirSync(outPath);
230 let curPath = outPath + '/' + file;
237 fs.rmdirSync(outPath);
/developtools/profiler/host/smartperf/ide/
Dbuild.js114 let outPath = path.normalize(path.join(__dirname, '/', outDir));
115 if (checkDirExist(outPath)) {
117 removeDir(outPath);
181 rs = childProcess.spawnSync('go', ['build', '-o', outPath, serverSrc], {
185 rs = childProcess.spawnSync('go', ['build', '-o', outPath + '/main', serverSrc], {
225 function removeDir(outPath) { argument
227 if (fs.existsSync(outPath)) {
228 files = fs.readdirSync(outPath);
230 let curPath = outPath + '/' + file;
237 fs.rmdirSync(outPath);
/developtools/packing_tool/adapter/ohos/
DUncompressEntrance.java140 …public static boolean unpack(String appPath, String outPath, String deviceType, boolean unpackApk)… in unpack() argument
146 if (outPath == null || outPath.isEmpty()) { in unpack()
155 utility.setOutPath(outPath); in unpack()
181 public static boolean unpackHap(String hapPath, String outPath, boolean unpackApk) { in unpackHap() argument
187 if (outPath == null || outPath.isEmpty()) { in unpackHap()
196 utility.setOutPath(outPath); in unpackHap()
229 String outPath) { in parseApp() argument
270 String outPath) { in parseApp() argument
DCompressEntrance.java40 public static boolean pack(String hapPath, String packInfoPath, String outPath) { in pack() argument
51 if (outPath == null || outPath.isEmpty()) { in pack()
60 utility.setOutPath(outPath); in pack()
DUtility.java62 private String outPath = ""; field in Utility
374 return outPath; in getOutPath()
377 public void setOutPath(String outPath) { in setOutPath() argument
378 if (!outPath.startsWith(CMD_PREFIX)) { in setOutPath()
379 this.outPath = getFormattedPath(outPath); in setOutPath()
DUncompressVerify.java114 File outPath = new File(utility.getOutPath(), RPCID_SC); in rpcidCommandVerify() local
115 if (outPath.exists() && FALSE.equals(utility.getForceRewrite())) { in rpcidCommandVerify()
DUncompress.java104 File outPath = new File(utility.getOutPath()); in unpackageProcess() local
105 deleteFile(outPath); in unpackageProcess()
106 outPath.mkdirs(); in unpackageProcess()
/developtools/ace_ets2bundle/compiler/
Duglify-source.js41 function uglifyCode(code, outPath) { argument
43 fs.writeFileSync(outPath, uglifyCode)
/developtools/ace_js2bundle/ace-loader/
Duglify-source.js41 function uglifyCode(code, outPath) { argument
43 fs.writeFileSync(outPath, uglifyCode)
/developtools/profiler/host/smartperf/client/client_command/include/
Dsmartperf_command.h63 std::string outPath = "/data/local/tmp/data.csv"; variable
/developtools/profiler/host/smartperf/client/client_command/
Dsmartperf_command.cpp86 outPath = outPathParam + std::string(".csv"); in HandleCommand()
143 SpCsvUtil::WriteCsv(std::string(outPath.c_str()), vmap); in ExecCommand()
/developtools/profiler/device/plugins/hiebpf_plugin/tools/include/
Debpf_converter.h28 EbpfConverter(const std::string& inputPath, const std::string& outPath);
/developtools/global_resource_tool/src/
Dresource_append.cpp259 FileEntry::FilePath outPath(outputPath); in ScanFile() local
260 … return ResourceUtil::CopyFleInner(fileInfo.filePath, outPath.Append(ID_DEFINED_FILE).GetPath()); in ScanFile()
538 FileEntry::FilePath outPath(packageParser_.GetOutput()); in LoadResourceItemFromMem() local
539 if (ResourceUtil::FileExist(outPath.Append(data).GetPath())) { in LoadResourceItemFromMem()
542 if (!ResourceUtil::CreateDirs(outPath.Append(data).GetParent().GetPath())) { in LoadResourceItemFromMem()
550 if (!ResourceUtil::CopyFleInner(filePathStr, outPath.Append(data).GetPath())) { in LoadResourceItemFromMem()
/developtools/hdc/src/daemon/
Ddaemon_usb.cpp176 string outPath = basePath + "/ep1"; in ConnectEPPoint() local
177 if ((hUSB->bulkOut = open(outPath.c_str(), O_RDWR)) < 0) { in ConnectEPPoint()
178 WRITE_LOG(LOG_WARN, "%s: cannot open bulk-out ep: errno=%d", outPath.c_str(), errno); in ConnectEPPoint()
/developtools/profiler/device/plugins/hiebpf_plugin/tools/src/
Debpf_converter.cpp52 EbpfConverter::EbpfConverter(const std::string& inputPath, const std::string& outPath) in EbpfConverter() argument
53 : inputPath_(inputPath), outputPath_(outPath) {} in EbpfConverter()
/developtools/packing_tool/
DREADME_zh.md300 …putStream input,String parseMode,String deviceType,String hapName,String outPath) | Java接口 | 接口功能:…