Home
last modified time | relevance | path

Searched refs:slash (Results 1 – 5 of 5) sorted by relevance

/system/logging/liblog/
Dpmsg_writer.cpp187 char *cp, *slash; in __android_log_pmsg_file_write() local
207 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()
/system/netd/server/
DNetdConstants.cpp84 const char *slash = strchr(prefix, '/'); in parsePrefix() local
85 const char *prefixlenString = slash + 1; in parsePrefix()
86 if (!slash || !*prefixlenString) in parsePrefix()
101 std::string addressString(prefix, slash - prefix); in parsePrefix()
DNetlinkHandler.cpp141 char *slash = strchr(addrstr, '/'); in onEvent() local
142 if (slash) { in onEvent()
143 *slash = '\0'; in onEvent()
/system/core/fs_mgr/
Dfs_mgr_roots.cpp43 auto slash = str.find_last_of('/'); in GetEntryForPath() local
44 if (slash == std::string::npos) break; in GetEntryForPath()
45 if (slash == 0) { in GetEntryForPath()
48 str = str.substr(0, slash); in GetEntryForPath()
/system/core/init/
Dutil.cpp209 std::string::size_type slash = 0; in mkdir_recursive() local
210 while ((slash = path.find('/', slash + 1)) != std::string::npos) { in mkdir_recursive()
211 auto directory = path.substr(0, slash); in mkdir_recursive()