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

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
realpath.c 22 char* realpath(const char* path, char* resolved_path) {
29 if (resolved_path == NULL) {
30 resolved_path = (char*)malloc(PATH_MAX);
36 char* out = resolved_path;
37 char* out_end = resolved_path + PATH_MAX - 1;
55 if (stat(resolved_path, &statbuf) != 0)
76 // Parent directory, find previous slash in resolved_path.
77 char* prev_slash = strrchr(resolved_path, '/');
81 if (prev_slash == resolved_path) {
89 if (out != resolved_path + 1)
    [all...]
  /external/lldb/source/Host/common/
FileSpec.cpp 43 char resolved_path[PATH_MAX]; local
44 if (file_spec->GetPath (resolved_path, sizeof(resolved_path)))
45 return ::stat (resolved_path, stats_ptr) == 0;
209 char resolved_path[PATH_MAX]; local
210 if (::realpath (unglobbed_path, resolved_path))
213 return ::snprintf(dst_path, dst_len, "%s", resolved_path);
298 char resolved_path[PATH_MAX]; local
303 path_fit = (FileSpec::Resolve (pathname, resolved_path, sizeof(resolved_path)) < sizeof(resolved_path) - 1)
794 char resolved_path[PATH_MAX]; local
831 char resolved_path[PATH_MAX]; local
856 char resolved_path[PATH_MAX]; local
    [all...]
Host.cpp 960 char resolved_path[PATH_MAX]; local
973 FileSpec::Resolve (raw_path, resolved_path, sizeof(resolved_path));
974 g_lldb_support_exe_dir.SetCString(resolved_path);
992 char resolved_path[PATH_MAX]; local
1001 FileSpec::Resolve (raw_path, resolved_path, sizeof(resolved_path));
1002 g_lldb_headers_dir.SetCString(resolved_path);
1024 char resolved_path[PATH_MAX]; local
1070 char resolved_path[PATH_MAX]; local
    [all...]
  /external/lldb/source/Plugins/Platform/MacOSX/
PlatformRemoteiOS.cpp 571 char resolved_path[PATH_MAX]; local
575 ::snprintf (resolved_path,
576 sizeof(resolved_path),
581 local_file.SetFile(resolved_path, true);
586 ::snprintf (resolved_path,
587 sizeof(resolved_path),
592 local_file.SetFile(resolved_path, true);
595 ::snprintf (resolved_path,
596 sizeof(resolved_path),
601 local_file.SetFile(resolved_path, true)
618 char resolved_path[PATH_MAX]; local
    [all...]
PlatformiOSSimulator.cpp 326 char resolved_path[PATH_MAX]; local
331 ::snprintf (resolved_path,
332 sizeof(resolved_path),
338 local_file.SetFile(resolved_path, true);
  /external/chromium_org/chrome/browser/extensions/
extension_resource_protocols.cc 41 void ResolvePathDone(const base::FilePath& resolved_path);
61 const base::FilePath& resolved_path) {
63 file_path_ = resolved_path;
  /external/lldb/examples/python/
symbolication.py 203 self.resolved_path = None
221 print 'resolved_path = "%s"' % (self.resolved_path)
252 if self.resolved_path:
253 return self.resolved_path
320 resolved_path = self.get_resolved_path()
321 self.module = target.AddModule (resolved_path, self.arch, uuid_str, self.symfile)
334 # self.resolved_path
357 resolved_path = self.get_resolved_path();
358 path_spec = lldb.SBFileSpec (resolved_path)
    [all...]
crashlog.py 180 self.resolved_path = os.path.expanduser (plist['DBGSymbolRichExecutable'])
181 if not self.resolved_path and os.path.exists(self.path):
190 self.resolved_path = self.path
193 if not self.resolved_path:
197 if (self.resolved_path and os.path.exists(self.resolved_path)) or (self.path and os.path.exists(self.path)):
199 # if self.resolved_path:
200 # print ' exe = "%s"' % self.resolved_path
506 for resolved_path in glob.glob(arg):
507 crash_log_files.append(resolved_path)
    [all...]
  /external/chromium_org/extensions/common/manifest_handlers/
shared_module_info.cc 172 const GURL& resolved_path = extension->url().Resolve(resource_path); local
173 if (!resolved_path.is_valid()) {
179 URLPattern(URLPattern::SCHEME_EXTENSION, resolved_path.spec()));
  /external/chromium_org/extensions/common/
extension_resource_unittest.cc 149 base::FilePath resolved_path = resource.GetFilePath(); local
157 EXPECT_EQ(ToLower(expected_path.value()), ToLower(resolved_path.value()));
  /external/qemu/include/
qemu-common.h 106 static inline char *realpath(const char *path, char *resolved_path)
108 _fullpath(resolved_path, path, _MAX_PATH);
109 return resolved_path;
  /external/compiler-rt/lib/tsan/dd/
dd_interceptors.cc 229 INTERCEPTOR(char*, realpath, const char *path, char *resolved_path) {
231 return REAL(realpath)(path, resolved_path);
  /external/lldb/tools/debugserver/source/
debugserver.cpp 208 char resolved_path[PATH_MAX]; local
212 if ( !DNBResolveExecutablePath (inferior_argv[0], resolved_path, sizeof(resolved_path)) )
213 ::strncpy(resolved_path, inferior_argv[0], sizeof(resolved_path));
219 nub_process_t pid = DNBProcessLaunch (resolved_path,
    [all...]
DNB.h 148 nub_bool_t DNBResolveExecutablePath (const char *path, char *resolved_path, size_t resolved_path_size) DNB_EXPORT;
DNB.cpp     [all...]
  /external/lldb/source/Commands/
CommandObjectTarget.cpp 2717 char resolved_path[PATH_MAX]; local
    [all...]

Completed in 346 milliseconds