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

  /external/lldb/source/Target/
TargetList.cpp 227 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);
  /external/lldb/source/Host/common/
FileSpec.cpp 191 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...]

Completed in 470 milliseconds