Home
last modified time | relevance | path

Searched refs:pathLen (Results 1 – 2 of 2) sorted by relevance

/hardware/google/aemu/base/
DSharedLibrary.cpp203 size_t pathLen = strlen(libraryName) + sizeof(kDllExtension); in do_open() local
204 path = static_cast<char*>(malloc(pathLen)); in do_open()
205 snprintf(path, pathLen, "%s%s", libraryName, kDllExtension); in do_open()
DPathUtils.cpp127 size_t pathLen = strlen(path); in removeTrailingDirSeparator() local
129 while (pathLen > 1U && isDirSeparator(path[pathLen - 1U], hostType)) { in removeTrailingDirSeparator()
130 pathLen--; in removeTrailingDirSeparator()
132 return std::string(path, pathLen); in removeTrailingDirSeparator()