reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
301 corefile_identifier.find("Darwin Kernel") != std::string::npos) { 304 if (corefile_identifier.find("UUID=") != std::string::npos) { 305 size_t p = corefile_identifier.find("UUID=") + strlen("UUID="); 306 std::string uuid_str = corefile_identifier.substr(p, 36); 309 if (corefile_identifier.find("stext=") != std::string::npos) { 310 size_t p = corefile_identifier.find("stext=") + strlen("stext="); 311 if (corefile_identifier[p] == '0' && corefile_identifier[p + 1] == 'x') { 311 if (corefile_identifier[p] == '0' && corefile_identifier[p + 1] == 'x') { 313 addr = ::strtoul(corefile_identifier.c_str() + p, nullptr, 16); 325 addr, corefile_identifier.c_str()); 329 && corefile_identifier.find("EFI ") != std::string::npos) { 331 if (corefile_identifier.find("UUID=") != std::string::npos) { 332 size_t p = corefile_identifier.find("UUID=") + strlen("UUID="); 333 std::string uuid_str = corefile_identifier.substr(p, 36); 340 corefile_identifier.c_str());