Searched defs:resolved_path (Results 1 - 13 of 13) 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/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/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/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/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/lldb/source/Plugins/Platform/MacOSX/
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);
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...]
/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.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/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/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/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);

Completed in 371 milliseconds