HomeSort by relevance Sort by last modified time
    Searched refs:PathService (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium/base/
base_paths.cc 14 // NOTE: DIR_CURRENT is a special cased in PathService::Get
19 PathService::Get(base::FILE_EXE, &cur);
23 PathService::Get(base::FILE_MODULE, &cur);
path_service_unittest.cc 19 // Returns true if PathService::Get returns true and sets the path parameter
20 // to non-empty for the given PathService::DirType enumeration value.
23 bool result = PathService::Get(dir_type, &path);
31 bool result = PathService::Get(base::DIR_LOCAL_APP_DATA_LOW, &path);
42 // Test that all PathService::Get calls return a value and a true result
path_service.h 19 class PathService {
43 // WARNING: Consumers of PathService::Get may expect paths to be constant
51 // which is just a function mirroring PathService::Get. The ProviderFunc
56 // PathService is used, so a the ProviderFunc MUST BE THREADSAFE.
path_service.cc 40 PathService::ProviderFunc func;
131 bool PathService::GetFromCache(int key, FilePath* result) {
145 void PathService::AddToCache(int key, const FilePath& path) {
156 bool PathService::Get(int key, FilePath* result) {
193 bool PathService::Get(int key, std::wstring* result) {
203 bool PathService::IsOverridden(int key) {
211 bool PathService::Override(int key, const FilePath& path) {
237 void PathService::RegisterProvider(ProviderFunc func, int key_start,
base_paths_posix.cc 45 if (PathService::Get(base::DIR_EXE, &path)) {
base_paths_win.cc 111 PathService::Get(base::DIR_EXE, &cur);
data_pack_unittest.cc 16 PathService::Get(base::DIR_SOURCE_ROOT, &data_path);
trace_event.cc 100 if (!PathService::Get(base::DIR_EXE, &log_file_path))
file_version_info.cc 36 if (!PathService::Get(base::FILE_MODULE, &app_path))
file_version_info_unittest.cc 18 PathService::Get(base::DIR_SOURCE_ROOT, &path);
linux_util.cc 194 if (PathService::Get(base::DIR_TEMP, &rv))
directory_watcher_unittest.cc 46 ASSERT_TRUE(PathService::Get(base::DIR_TEMP, &path));
  /external/chromium/base/test/
perf_test_suite.h 30 PathService::Get(base::FILE_EXE, &exe);
test_suite.h 184 PathService::Get(base::FILE_EXE, &exe);
  /external/chromium/base/i18n/
icu_util.cc 60 PathService::Get(base::DIR_MODULE, &data_path);
87 bool path_ok = PathService::Get(base::DIR_EXE, &data_path);
file_util_icu_unittest.cc 20 ASSERT_TRUE(PathService::Get(base::DIR_TEMP, &test_dir_));
  /external/chromium/net/base/
directory_lister_unittest.cc 60 ASSERT_TRUE(PathService::Get(base::DIR_SOURCE_ROOT, &path));
75 ASSERT_TRUE(PathService::Get(base::DIR_SOURCE_ROOT, &path));
  /external/chromium/net/tools/tld_cleanup/
tld_cleanup.cc 267 PathService::Get(base::DIR_EXE, &log_filename);
277 PathService::Get(base::DIR_SOURCE_ROOT, &input_file);
282 PathService::Get(base::DIR_SOURCE_ROOT, &output_file);
  /external/chromium/net/socket/
ssl_test_util.cc 162 PathService::Get(base::DIR_SOURCE_ROOT, &cert_dir_);
205 CHECK(PathService::Get(base::DIR_SOURCE_ROOT, &third_party_dir));
228 if (!PathService::Get(base::DIR_SOURCE_ROOT, &testserver_path))
236 PathService::Get(base::DIR_SOURCE_ROOT, &document_root_dir_);
243 if (!PathService::Get(base::DIR_SOURCE_ROOT, &python_runtime_))
  /external/chromium/net/disk_cache/
disk_cache_test_util.cc 21 PathService::Get(base::DIR_TEMP, &path); // Ignore return value;
stress_cache.cc 40 PathService::Get(base::FILE_EXE, &exe);
  /external/chromium/net/tools/crash_cache/
crash_cache.cc 41 PathService::Get(base::FILE_EXE, &exe);
304 PathService::Get(base::DIR_SOURCE_ROOT, &path);
  /external/chromium/net/ftp/
ftp_directory_listing_buffer_unittest.cc 51 PathService::Get(base::DIR_SOURCE_ROOT, &test_dir);
  /external/chromium/net/proxy/
proxy_resolver_perftest.cc 152 PathService::Get(base::DIR_SOURCE_ROOT, &path);
  /external/chromium/net/url_request/
url_request_unittest.cc 560 PathService::Get(base::DIR_EXE, &dir);
564 PathService::Get(base::DIR_SOURCE_ROOT, &path);
654 PathService::Get(base::FILE_EXE, &app_path);
843 PathService::Get(base::DIR_SOURCE_ROOT, &app_path);
936 PathService::Get(base::DIR_SOURCE_ROOT, &file_path);
959 PathService::Get(base::DIR_SOURCE_ROOT, &path);
    [all...]

Completed in 577 milliseconds

1 2