Searched refs:unglobbed_path (Results 1 - 2 of 2) sorted by last modified time

/external/lldb/source/Host/common/
H A DFileSpec.cpp191 char unglobbed_path[PATH_MAX]; local
195 size_t return_count = ResolveUsername(src_path, unglobbed_path, sizeof(unglobbed_path));
199 if (return_count == 0 || return_count >= sizeof(unglobbed_path))
200 ::snprintf (unglobbed_path, sizeof(unglobbed_path), "%s", src_path);
205 ::snprintf(unglobbed_path, sizeof(unglobbed_path), "%s", src_path);
210 if (::realpath (unglobbed_path, resolved_path))
218 return ::snprintf(dst_path, dst_len, "%s", unglobbed_path);
[all...]
/external/lldb/source/Target/
H A DTargetList.cpp227 char unglobbed_path[PATH_MAX]; local
228 unglobbed_path[0] = '\0';
230 size_t return_count = FileSpec::ResolveUsername(user_exe_path, unglobbed_path, sizeof(unglobbed_path));
232 if (return_count == 0 || return_count >= sizeof(unglobbed_path))
233 ::snprintf (unglobbed_path, sizeof(unglobbed_path), "%s", user_exe_path);
235 file = FileSpec(unglobbed_path, false);

Completed in 101 milliseconds