Lines Matching defs:strLine
66 std::string strLine;
67 if (!std::getline(file, strLine)) {
72 if (strLine.empty()) {
76 if ((strLine.find(process_name)) == std::string::npos) {
80 while (std::getline(file, strLine)) {
81 if ((strLine.find("Pid")) != std::string::npos) {
82 if (::sscanf_s(strLine.c_str(), "%*s%d", &pid, sizeof(pid)) != 1) {
135 std::string strLine;
136 std::getline(file, strLine);
137 if (strLine.empty()) {
145 std::istringstream ss(strLine);
146 while (ss >> strLine) {
176 std::string strLine;
177 std::getline(statFile, strLine);
178 if (strLine.empty()) {
183 if ((strLine.find("cpu")) == std::string::npos) {
188 std::istringstream ss(strLine);