Searched defs:expanded_path (Results 1 - 2 of 2) sorted by relevance

/external/lldb/source/Host/macosx/cfcpp/
H A DCFCString.cpp100 std::string expanded_path; local
101 if (CFCString::ExpandTildeInPath(path, expanded_path))
102 SetFileSystemRepresentation(expanded_path.c_str());
144 CFCString::ExpandTildeInPath(const char* path, std::string &expanded_path) argument
149 expanded_path = globbuf.gl_pathv[0];
153 expanded_path.clear();
155 return expanded_path.c_str();
/external/lldb/tools/debugserver/source/MacOSX/
H A DCFString.cpp104 std::string expanded_path; local
105 if (CFString::GlobPath(path, expanded_path))
106 SetFileSystemRepresentation(expanded_path.c_str());
188 CFString::GlobPath(const char* path, std::string &expanded_path) argument
193 expanded_path = globbuf.gl_pathv[0];
197 expanded_path.clear();
199 return expanded_path.c_str();

Completed in 107 milliseconds