Home
last modified time | relevance | path

Searched refs:expanded_path (Results 1 – 4 of 4) sorted by relevance

/llvm-project/lldb/source/Host/macosx/cfcpp/
H A DCFCString.cpp70 std::string expanded_path; in SetFileSystemRepresentationAndExpandTilde() local
71 if (CFCString::ExpandTildeInPath(path, expanded_path)) in SetFileSystemRepresentationAndExpandTilde()
72 SetFileSystemRepresentation(expanded_path.c_str()); in SetFileSystemRepresentationAndExpandTilde()
109 std::string &expanded_path) { in ExpandTildeInPath() argument
112 expanded_path = globbuf.gl_pathv[0]; in ExpandTildeInPath()
115 expanded_path.clear(); in ExpandTildeInPath()
117 return expanded_path.c_str(); in ExpandTildeInPath()
H A DCFCString.h35 std::string &expanded_path);
/llvm-project/lldb/tools/debugserver/source/MacOSX/
H A DCFString.cpp73 std::string expanded_path; in SetFileSystemRepresentationAndExpandTilde() local
74 if (CFString::GlobPath(path, expanded_path)) in SetFileSystemRepresentationAndExpandTilde()
75 SetFileSystemRepresentation(expanded_path.c_str()); in SetFileSystemRepresentationAndExpandTilde()
145 const char *CFString::GlobPath(const char *path, std::string &expanded_path) { in GlobPath() argument
148 expanded_path = globbuf.gl_pathv[0]; in GlobPath()
151 expanded_path.clear(); in GlobPath()
153 return expanded_path.c_str(); in GlobPath()
H A DCFString.h37 static const char *GlobPath(const char *path, std::string &expanded_path);