Home
last modified time | relevance | path

Searched refs:readWrite (Results 1 – 4 of 4) sorted by relevance

/developtools/hdc/src/common/
Dasync_cmd.cpp116 int AsyncCmd::ThreadFork(const string &command, bool readWrite, int &cpid) in ThreadFork() argument
118 AsyncParams params = AsyncParams(command, readWrite, cpid); in ThreadFork()
144 bool readWrite = params.readWriteParam; in Popen()
163 if (readWrite) { in Popen()
178 if (readWrite) { in Popen()
187 if (readWrite) { in Popen()
Dasync_cmd.h46 int ThreadFork(const string &command, bool readWrite, int &cpid);
Dbase.h74 …bool CheckDirectoryOrPath(const char *localPath, bool pathOrDir, bool readWrite, string &errStr, m…
75 bool CheckDirectoryOrPath(const char *localPath, bool pathOrDir, bool readWrite);
Dbase.cpp1120 …bool CheckDirectoryOrPath(const char *localPath, bool pathOrDir, bool readWrite, string &errStr, m… in CheckDirectoryOrPath() argument
1140 uv_fs_access(nullptr, &req, localPath, readWrite ? R_OK : W_OK, nullptr); in CheckDirectoryOrPath()
1142 const char *op = readWrite ? "access R_OK" : "access W_OK"; in CheckDirectoryOrPath()
1194 bool CheckDirectoryOrPath(const char *localPath, bool pathOrDir, bool readWrite) in CheckDirectoryOrPath() argument
1198 return CheckDirectoryOrPath(localPath, pathOrDir, readWrite, strUnused, mode); in CheckDirectoryOrPath()