| /developtools/ace_js2bundle/ace-loader/ |
| D | module-source.js | 19 const exists = function(src, dst, callback) { argument 23 fs.exists(dst, function(exists) { 25 callback(src, dst); 27 fs.mkdir(dst, function() { 28 callback(src, dst); 35 const copy = function(src, dst){ argument 42 _dst = dst + '/' + _path,
|
| /developtools/profiler/host/smartperf/trace_streamer/src/base/ |
| D | file.cpp | 43 ssize_t Read(int32_t fd, uint8_t* dst, size_t dstSize) in Read() argument 46 return _read(fd, dst, static_cast<unsigned>(dstSize)); in Read() 50 ret = read(fd, dst, dstSize); in Read()
|
| D | file.h | 37 ssize_t Read(int32_t fd, uint8_t* dst, size_t dstSize);
|
| /developtools/smartperf_host/trace_streamer/src/base/ |
| D | file.cpp | 43 ssize_t Read(int32_t fd, uint8_t* dst, size_t dstSize) in Read() argument 46 return _read(fd, dst, static_cast<unsigned>(dstSize)); in Read() 50 ret = read(fd, dst, dstSize); in Read()
|
| D | file.h | 37 ssize_t Read(int32_t fd, uint8_t* dst, size_t dstSize);
|
| /developtools/integration_verification/tools/fotff/utils/ |
| D | ssh.go | 127 var src, dst io.ReadWriteCloser 136 if dst, err = os.Create(localFile); err != nil { 139 defer dst.Close() 148 if dst, err = client.Create(remoteFile); err != nil { 151 defer dst.Close() 155 n, err := io.CopyBuffer(dst, src, make([]byte, 32*1024*1024))
|
| /developtools/profiler/host/smartperf/trace_streamer/ |
| D | huoyantu.sh | 31 dst=$2 35 ../FlameGraph/flamegraph.pl out.floded > $dst
|
| /developtools/smartperf_host/trace_streamer/ |
| D | huoyantu.sh | 31 dst=$2 35 ../FlameGraph/flamegraph.pl out.floded > $dst
|
| /developtools/global_resource_tool/src/ |
| D | file_entry.cpp | 145 bool FileEntry::CopyFileInner(const string &src, const string &dst) in CopyFileInner() argument 148 if (!CopyFile(AdaptLongPath(src).c_str(), AdaptLongPath(dst).c_str(), false)) { in CopyFileInner() 149 …cerr << "Error: copy file fail from '" << src << "' to '" << dst << "'. reason:" << strerror(errno… in CopyFileInner() 154 ofstream out(dst, ios::binary); in CopyFileInner() 156 …cerr << "Error: open failed '" << src << "' or '" << dst << "'. reason:" << strerror(errno) << end… in CopyFileInner()
|
| D | resource_pack.cpp | 254 string dst = FileEntry::FilePath(packageParser_.GetOutput()) in CopyRawFile() local 256 if (CopyRawFileImpl(rawfilePath, dst) != RESTOOL_SUCCESS) { in CopyRawFile() 263 uint32_t ResourcePack::CopyRawFileImpl(const string &src, const string &dst) const in CopyRawFileImpl() 265 if (!ResourceUtil::CreateDirs(dst)) { in CopyRawFileImpl() 279 string subPath = FileEntry::FilePath(dst).Append(filename).GetPath(); in CopyRawFileImpl() 485 string dst = FileEntry::FilePath(dstDir).Append(fileName).GetPath(); in CopyIcon() local 490 if (!ResourceUtil::CopyFleInner(source, dst)) { in CopyIcon() 491 cerr << "Error: copy file fail from '" << source << "' to '" << dst << "'." << endl; in CopyIcon()
|
| D | resource_util.cpp | 213 bool ResourceUtil::CopyFleInner(const string &src, const string &dst) in CopyFleInner() argument 215 return FileEntry::CopyFileInner(src, dst); in CopyFleInner()
|
| /developtools/integration_verification/cases/smoke/basic/screenshot32/resource/ |
| D | distributedtest.py | 63 def file_from_dev(src, dst, sn): argument 64 cmd = "hdc_std -t {} file recv \"{}\" \"{}\"".format(sn, src, dst)
|
| D | capturescreentest.py | 99 def file_to_dev(src, dst): argument 100 cmd = "hdc_std -t {} file send \"{}\" \"{}\"".format(args.device_num, src, dst) 104 def file_from_dev(src, dst): argument 105 cmd = "hdc_std -t {} file recv \"{}\" \"{}\"".format(args.device_num, src, dst)
|
| /developtools/smartperf_host/trace_streamer/doc/ |
| D | app_startup.md | 23 First Frame-Render Phase:通过应用帧首帧数据,可以在frame_slice表中通过dst字段关联到渲染帧首帧数据,即为该应用的第六阶段的数据。
|
| D | des_tables.md | 240 - 已知进程的实际渲染帧的dst为12,求其对应的RS进程的渲染帧 1559 |dst |INT | 1570 - dst:该帧对应的渲染帧是哪一行 1584 该表记录了app到RenderService的帧的映射关系,同frame_slice表中的src映射到dst的关系。
|
| /developtools/global_resource_tool/include/ |
| D | file_entry.h | 57 static bool CopyFileInner(const std::string &src, const std::string &dst);
|
| D | resource_pack.h | 46 uint32_t CopyRawFileImpl(const std::string &src, const std::string &dst) const;
|
| D | resource_util.h | 125 static bool CopyFleInner(const std::string &src, const std::string &dst);
|
| /developtools/smartperf_host/ide/server/ |
| D | smarperfServer.py | 164 dst = open("./logger/" + fileName, "a") 172 dst.write(f"{formatted_date} {req['fileName']} ({req['fileSize']} M)\n")
|
| D | main.go | 187 …dst, err := os.OpenFile(exPath+"/logger/"+fileName, os.O_WRONLY|os.O_CREATE|os.O_APPEND|os.O_SYNC,… 196 …dst.WriteString(fmt.Sprintf("%s %s (%s M)\n", now.Format("2006-01-02 15:04:05"), req.FileName, req…
|
| /developtools/profiler/host/smartperf/ide/server/ |
| D | main.go | 187 …dst, err := os.OpenFile(exPath+"/logger/"+fileName, os.O_WRONLY|os.O_CREATE|os.O_APPEND|os.O_SYNC,… 196 …dst.WriteString(fmt.Sprintf("%s %s (%s M)\n", now.Format("2006-01-02 15:04:05"), req.FileName, req…
|
| /developtools/smartperf_host/ide/src/doc/md/ |
| D | des_tables.md | 218 - 已知进程的实际渲染帧的dst为12,求其对应的RS进程的渲染帧 1425 |dst |INT | 1436 - dst:该帧对应的渲染帧是哪一行 1449 该表记录了app到RenderService的帧的映射关系,同frame_slice表中的src映射到dst的关系。
|
| /developtools/profiler/host/smartperf/trace_streamer/doc/ |
| D | des_tables.md | 218 - 已知进程的实际渲染帧的dst为12,求其对应的RS进程的渲染帧 1425 |dst |INT | 1436 - dst:该帧对应的渲染帧是哪一行 1449 该表记录了app到RenderService的帧的映射关系,同frame_slice表中的src映射到dst的关系。
|
| /developtools/profiler/host/smartperf/ide/src/doc/md/ |
| D | des_tables.md | 218 - 已知进程的实际渲染帧的dst为12,求其对应的RS进程的渲染帧 1425 |dst |INT | 1436 - dst:该帧对应的渲染帧是哪一行 1449 该表记录了app到RenderService的帧的映射关系,同frame_slice表中的src映射到dst的关系。
|
| /developtools/profiler/host/smartperf/trace_streamer/src/trace_data/ |
| D | trace_stdtype.cpp | 2189 void FrameSlice::SetDst(uint64_t row, uint64_t dst) in SetDst() argument 2191 dsts_[row] = dst; in SetDst() 2268 size_t FrameMaps::AppendNew(FrameSlice* frameSlice, uint64_t src, uint64_t dst) in AppendNew() argument 2273 dsts_.push_back(dst); in AppendNew() 2274 if (frameSlice->Types().at(dst) == FrameSlice::EXPECT_SLICE) { in AppendNew() 2275 uint64_t expRsStartTime = frameSlice->TimeStampData().at(dst); in AppendNew() 2278 auto acturalRow = dst - 1; in AppendNew()
|