Searched refs:resolved_path (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Drealpath.c22 char* realpath(const char* path, char* resolved_path) { argument
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
[all...]
/external/lldb/source/Host/common/
H A DFileSpec.cpp43 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)) < sizeo
794 char resolved_path[PATH_MAX]; local
831 char resolved_path[PATH_MAX]; local
856 char resolved_path[PATH_MAX]; local
[all...]
H A DHost.cpp960 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
1047 FileSpec::Resolve (raw_path, resolved_path, sizeo
1070 char resolved_path[PATH_MAX]; local
[all...]
/external/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformRemoteiOS.cpp571 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, tru
618 char resolved_path[PATH_MAX]; local
[all...]
H A DPlatformiOSSimulator.cpp326 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/
H A Dextension_resource_protocols.cc44 void ResolvePathDone(const base::FilePath& resolved_path);
69 const base::FilePath& resolved_path) {
71 file_path_ = resolved_path;
68 ResolvePathDone( const base::FilePath& resolved_path) argument
/external/lldb/examples/python/
H A Dsymbolication.py203 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...]
H A Dcrashlog.py180 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/
H A Dshared_module_info.cc173 const GURL& resolved_path = extension->url().Resolve(resource_path); local
174 if (!resolved_path.is_valid()) {
180 URLPattern(URLPattern::SCHEME_EXTENSION, resolved_path.spec()));
/external/chromium_org/extensions/common/
H A Dextension_resource_unittest.cc149 base::FilePath resolved_path = resource.GetFilePath(); local
157 EXPECT_EQ(ToLower(expected_path.value()), ToLower(resolved_path.value()));
/external/qemu/include/
H A Dqemu-common.h106 static inline char *realpath(const char *path, char *resolved_path) argument
108 _fullpath(resolved_path, path, _MAX_PATH);
109 return resolved_path;
/external/compiler-rt/lib/tsan/dd/
H A Ddd_interceptors.cc229 INTERCEPTOR(char*, realpath, const char *path, char *resolved_path) { argument
231 return REAL(realpath)(path, resolved_path);
/external/lldb/tools/debugserver/source/
H A Ddebugserver.cpp208 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,
H A DDNB.h148 nub_bool_t DNBResolveExecutablePath (const char *path, char *resolved_path, size_t resolved_path_size) DNB_EXPORT;
H A DDNB.cpp1947 DNBResolveExecutablePath (const char *path, char *resolved_path, size_t resolved_path_size) argument
1968 if (::CFURLGetFileSystemRepresentation (url.get(), true, (UInt8*)resolved_path, resolved_path_size))
1977 ::strncpy(resolved_path, max_path, resolved_path_size);
1978 return strlen(resolved_path) + 1 < resolved_path_size;
2010 ::strncpy(resolved_path, result.c_str(), resolved_path_size);
/external/lldb/source/Commands/
H A DCommandObjectTarget.cpp2717 char resolved_path[PATH_MAX]; local
2719 if (file_spec.GetPath (resolved_path, sizeof(resolved_path)))
2721 if (strcmp (resolved_path, path) != 0)
2723 result.AppendErrorWithFormat ("invalid module path '%s' with resolved path '%s'\n", path, resolved_path);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc2472 INTERCEPTOR(char *, realpath, const char *path, char *resolved_path) {
2474 COMMON_INTERCEPTOR_ENTER(ctx, realpath, path, resolved_path);
2482 if (!resolved_path)
2483 allocated_path = resolved_path = (char *)WRAP(malloc)(path_max + 1);
2485 char *res = REAL(realpath)(path, resolved_path);

Completed in 2480 milliseconds