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

  /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/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/lldb/source/Plugins/Platform/MacOSX/
PlatformiOSSimulator.cpp 326 char resolved_path[PATH_MAX]; local
331 ::snprintf (resolved_path,
332 sizeof(resolved_path),
338 local_file.SetFile(resolved_path, true);
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...]
  /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/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...]
  /external/lldb/source/Commands/
CommandObjectTarget.cpp 2717 char resolved_path[PATH_MAX]; local
    [all...]

Completed in 720 milliseconds