Searched refs:slash (Results 1 – 5 of 5) sorted by relevance
187 char *cp, *slash; in __android_log_pmsg_file_write() local207 slash = strrchr(cp, '/'); in __android_log_pmsg_file_write()208 if (slash) { in __android_log_pmsg_file_write()209 *slash = ':'; in __android_log_pmsg_file_write()210 slash = strrchr(cp, '/'); in __android_log_pmsg_file_write()211 if (slash) { in __android_log_pmsg_file_write()212 tag = slash + 1; in __android_log_pmsg_file_write()
84 const char *slash = strchr(prefix, '/'); in parsePrefix() local85 const char *prefixlenString = slash + 1; in parsePrefix()86 if (!slash || !*prefixlenString) in parsePrefix()101 std::string addressString(prefix, slash - prefix); in parsePrefix()
141 char *slash = strchr(addrstr, '/'); in onEvent() local142 if (slash) { in onEvent()143 *slash = '\0'; in onEvent()
43 auto slash = str.find_last_of('/'); in GetEntryForPath() local44 if (slash == std::string::npos) break; in GetEntryForPath()45 if (slash == 0) { in GetEntryForPath()48 str = str.substr(0, slash); in GetEntryForPath()
209 std::string::size_type slash = 0; in mkdir_recursive() local210 while ((slash = path.find('/', slash + 1)) != std::string::npos) { in mkdir_recursive()211 auto directory = path.substr(0, slash); in mkdir_recursive()