HomeSort by relevance Sort by last modified time
    Searched refs:expanded_path (Results 1 - 4 of 4) sorted by null

  /external/lldb/source/Host/macosx/cfcpp/
CFCString.cpp 100 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)
149 expanded_path = globbuf.gl_pathv[0];
153 expanded_path.clear();
155 return expanded_path.c_str();
CFCString.h 37 static const char *ExpandTildeInPath(const char* path, std::string &expanded_path);
  /external/lldb/tools/debugserver/source/MacOSX/
CFString.cpp 104 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)
193 expanded_path = globbuf.gl_pathv[0];
197 expanded_path.clear();
199 return expanded_path.c_str();
CFString.h 40 static const char* GlobPath(const char* path, std::string &expanded_path);

Completed in 144 milliseconds