Searched refs:first_slash (Results 1 – 2 of 2) sorted by relevance
55 const auto first_slash = parameters->host.find_first_of('/'); in parseUrl() local56 if (first_slash != std::string::npos) { in parseUrl()57 parameters->path = parameters->host.substr(first_slash); in parseUrl()58 parameters->host.erase(first_slash); in parseUrl()
550 auto first_slash = blk_device.find('/'); in ExtraBootDevices() local551 if (first_slash == std::string::npos) continue; in ExtraBootDevices()553 auto boot_device = blk_device.substr(first_slash + 1); in ExtraBootDevices()