Searched refs:curPath (Results 1 – 5 of 5) sorted by relevance
275 FilePath curPath (path); in createDirectoryAndParents() local277 if (curPath.exists()) in createDirectoryAndParents()280 while (!curPath.exists()) in createDirectoryAndParents()282 createPaths.push_back(curPath.getPath()); in createDirectoryAndParents()284 std::string parent = curPath.getDirName(); in createDirectoryAndParents()285 DE_CHECK_RUNTIME_ERR(parent != curPath.getPath()); in createDirectoryAndParents()286 curPath = FilePath(parent); in createDirectoryAndParents()
78 private String[] curPath; field in CpuMonitor113 curPath = new String [cpusPresent]; in init()117 curPath[i] = "/sys/devices/system/cpu/cpu" + i + "/cpufreq/scaling_cur_freq"; in init()161 long cpufreqCur = readFreqFromFile(curPath[i]); in sampleCpuUtilization()
318 const char* curPath = path; in findNode() local319 int curLen = getCurrentComponentLen(curPath); in findNode()323 curNode = curNode->getChild(std::string(curPath, curPath+curLen)); in findNode()328 curPath += curLen; in findNode()330 if (curPath[0] == 0) in findNode()334 DE_ASSERT(curPath[0] == '.'); in findNode()335 curPath += 1; in findNode()336 curLen = getCurrentComponentLen(curPath); in findNode()
37 curPath = os.getcwd()41 os.chdir(curPath)
258 curPath = prefix + curNode.name260 caseMap[curPath] = curNode263 recursiveBuild(child, curPath + '.')