Home
last modified time | relevance | path

Searched refs:last_slash (Results 1 – 3 of 3) sorted by relevance

/device/google/cuttlefish/common/libs/utils/
Dresult.cpp184 auto last_slash = file_.rfind("/"); in format() local
186 file_.substr(last_slash == std::string::npos ? 0 : last_slash + 1); in format()
207 auto last_slash = file_.rfind("/"); in format() local
209 file_.substr(last_slash == std::string::npos ? 0 : last_slash + 1); in format()
/device/google/cuttlefish/host/commands/process_restarter/
Dmain.cc56 auto last_slash = short_name.find_last_of('/'); in ExecutableShortName() local
57 if (last_slash != std::string::npos) { in ExecutableShortName()
58 short_name = short_name.substr(last_slash + 1); in ExecutableShortName()
/device/google/cuttlefish/host/libs/process_monitor/
Dprocess_monitor.cc240 auto last_slash = short_name.find_last_of('/'); in StartSubprocesses() local
241 if (last_slash != std::string::npos) { in StartSubprocesses()
242 short_name = short_name.substr(last_slash + 1); in StartSubprocesses()