Home
last modified time | relevance | path

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

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