Searched refs:errStr (Results 1 – 6 of 6) sorted by relevance
| /developtools/hdc/src/common/ |
| D | file.cpp | 71 string errStr; in SetMasterParameters() local 127 …if (!Base::CheckDirectoryOrPath(context->localPath.c_str(), true, true, errStr, mode) && (mode & S… in SetMasterParameters() 249 string errStr; in SlaveCheck() local 262 if (!CheckLocalPath(ctxNow.localPath, stat.optionalName, errStr)) { in SlaveCheck() 263 LogMsg(MSG_FAIL, "%s", errStr.c_str()); in SlaveCheck() 267 if (!CheckFilename(ctxNow.localPath, stat.optionalName, errStr)) { in SlaveCheck() 268 LogMsg(MSG_FAIL, "%s", errStr.c_str()); in SlaveCheck()
|
| D | transfer.cpp | 463 bool HdcTransferBase::CheckLocalPath(string &localPath, string &optName, string &errStr) in CheckLocalPath() argument 503 if (!Base::TryCreateDirectory(makedirPath, errStr)) { in CheckLocalPath() 512 errStr = "Not a directory, path:"; in CheckLocalPath() 513 errStr += localPath.c_str(); in CheckLocalPath() 519 bool HdcTransferBase::CheckFilename(string &localPath, string &optName, string &errStr) in CheckFilename() argument 548 if (!Base::TryCreateDirectory(localPath, errStr)) { in CheckFilename() 588 string errStr; in SmartSlavePath() local 594 if (Base::CheckDirectoryOrPath(localPath.c_str(), true, false, errStr, mode)) { in SmartSlavePath() 595 WRITE_LOG(LOG_DEBUG, "%s", errStr.c_str()); in SmartSlavePath()
|
| D | transfer.h | 113 bool CheckLocalPath(string &localPath, string &optName, string &errStr); 114 bool CheckFilename(string &localPath, string &optName, string &errStr);
|
| D | base.cpp | 1165 …bool CheckDirectoryOrPath(const char *localPath, bool pathOrDir, bool readWrite, string &errStr, m… in CheckDirectoryOrPath() argument 1176 BuildErrorString(localPath, "lstat", buf, errStr); in CheckDirectoryOrPath() 1191 BuildErrorString(localPath, op, buf, errStr); in CheckDirectoryOrPath() 1199 errStr = "Not support "; in CheckDirectoryOrPath() 1200 errStr += type; in CheckDirectoryOrPath() 1201 errStr += ": "; in CheckDirectoryOrPath() 1202 errStr += localPath; in CheckDirectoryOrPath() 1205 errStr = "Not support dir: "; in CheckDirectoryOrPath() 1206 errStr += localPath; in CheckDirectoryOrPath()
|
| D | base.h | 75 …bool CheckDirectoryOrPath(const char *localPath, bool pathOrDir, bool readWrite, string &errStr, m…
|
| /developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/profiler/base/ |
| D | BaseProfilerUtils.ets | 64 let errStr:String = err 65 if(errStr.indexOf("denied")>0){
|