Lines Matching defs:line
180 string line;
186 while (std::getline(stream, line)) {
187 if (line.find(kGoogleBreakpadKey) == string::npos) {
190 if (line.find(kMicrodumpBegin) != string::npos) {
194 if (line.find(kMicrodumpEnd) != string::npos) {
203 if ((pos = line.find(kOsKey)) != string::npos) {
204 string os_str(line, pos + strlen(kOsKey));
232 // OS line also contains release and version for future use.
233 } else if ((pos = line.find(kStackKey)) != string::npos) {
234 if (line.find(kStackFirstLineKey) != string::npos) {
235 // The first line of the stack (S 0 stack header) provides the value of
241 string stack_str(line, pos + strlen(kStackKey));
258 } else if ((pos = line.find(kCpuKey)) != string::npos) {
259 string cpu_state_str(line, pos + strlen(kCpuKey));
282 } else if ((pos = line.find(kMmapKey)) != string::npos) {
283 string mmap_line(line, pos + strlen(kMmapKey));