Lines Matching refs:subPath
210 string subPath;
213 subPath = path;
215 subPath = path.substr(0, index);
218 if (access(subPath.c_str(), F_OK) != 0) {
219 if (mkdir(subPath.c_str(), (S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH)) != 0 && errno != EEXIST) {
375 string subPath;
392 subPath = IncludeTrailingPathDelimiter(path) + string(ptr->d_name);
394 ret = ChangeModeDirectory(subPath, mode);
396 if (access(subPath.c_str(), F_OK) == 0) {
397 if (!ChangeMode(subPath, mode)) {