Searched defs:resolved_path (Results 1 - 10 of 10) sorted by relevance

/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/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/selinux/libselinux/src/
H A Dmatchpathcon.c349 int realpath_not_final(const char *name, char *resolved_path) argument
374 p = strcpy(resolved_path, "");
378 p = realpath(tmp_path, resolved_path);
381 p = realpath("./", resolved_path);
400 resolved_path += len;
401 strcpy(resolved_path, "/");
402 resolved_path += 1;
403 strcpy(resolved_path, last_component);
/external/selinux/policycoreutils/sandbox/
H A Dseunshare.c753 char *resolved_path = NULL; local
770 resolved_path = realpath(pwd->pw_dir,NULL);
771 if (! resolved_path) goto childerr;
773 if (verify_directory(resolved_path, NULL, &st_curhomedir) < 0)
775 if (check_owner_uid(uid, resolved_path, &st_curhomedir) < 0)
779 if (homedir_s && seunshare_mount(homedir_s, resolved_path,
851 free(resolved_path);
/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/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 112 milliseconds