Home | History | Annotate | Download | only in performanced

Lines Matching refs:string

30 void ParseUidStatusField(const std::string& value, std::array<int, 4>& ids) {
65 base::unique_fd Task::OpenTaskFile(const std::string& name) const {
66 const std::string relative_path = "./" + name;
71 UniqueFile Task::OpenTaskFilePointer(const std::string& name) const {
72 const std::string relative_path = "./" + name;
88 std::string Task::GetStatusField(const std::string& field) const {
93 for (std::string line; std::getline(file_stream, line);) {
100 if (offset == std::string::npos)
117 for (std::string line; std::getline(file_stream, line);) {
119 if (offset == std::string::npos) {
125 std::string key = line.substr(0, offset);
126 std::string value = Trim(line.substr(offset + 1));
151 std::string Task::GetCpuSetPath() const {
156 std::string line = "";