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()
103 private String[] curPath; field in CpuMonitor268 curPath = new String[cpusPresent]; in init()274 curPath[i] = "/sys/devices/system/cpu/cpu" + i + "/cpufreq/scaling_cur_freq"; in init()347 long cpuFreqCur = readFreqFromFile(curPath[i]); in sampleCpuUtilization()
354 const char* curPath = path; in findNode() local355 int curLen = getCurrentComponentLen(curPath); in findNode()359 curNode = curNode->getChild(std::string(curPath, curPath+curLen)); in findNode()364 curPath += curLen; in findNode()366 if (curPath[0] == 0) in findNode()370 DE_ASSERT(curPath[0] == '.'); in findNode()371 curPath += 1; in findNode()372 curLen = getCurrentComponentLen(curPath); in findNode()
37 curPath = os.getcwd()41 os.chdir(curPath)
259 curPath = prefix + curNode.name261 caseMap[curPath] = curNode264 recursiveBuild(child, curPath + '.')