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

  /external/dbus/dbus/
dbus-auth-util.c 85 DBusString full_path; local
87 if (!_dbus_string_init (&full_path))
90 if (!_dbus_string_copy (&test_directory, 0, &full_path, 0))
91 _dbus_assert_not_reached ("couldn't copy dir to full_path");
93 if (!_dbus_concat_dir_and_file (&full_path, &filename))
100 _dbus_string_free (&full_path);
106 if (!_dbus_auth_script_run (&full_path))
108 _dbus_string_free (&full_path);
112 _dbus_string_free (&full_path);
dbus-server-unix.c 88 DBusString full_path; local
91 if (!_dbus_string_init (&full_path))
99 _dbus_string_free (&full_path);
107 !_dbus_string_append (&full_path, tmpdir) ||
108 !_dbus_concat_dir_and_file (&full_path, &filename))
110 _dbus_string_free (&full_path);
119 _dbus_server_new_for_domain_socket (_dbus_string_get_const_data (&full_path),
127 _dbus_string_free (&full_path);
dbus-message-util.c 544 DBusString full_path; local
546 if (!_dbus_string_init (&full_path))
549 if (!_dbus_string_copy (&test_directory, 0, &full_path, 0))
550 _dbus_assert_not_reached ("couldn't copy dir to full_path");
552 if (!_dbus_concat_dir_and_file (&full_path, &filename))
567 _dbus_string_free (&full_path);
574 if (! (*function) (&full_path,
577 _dbus_string_free (&full_path);
581 _dbus_string_free (&full_path);
    [all...]
  /external/chromium/chrome/browser/search_engines/
template_url_parser_unittest.cc 39 FilePath full_path; local
41 ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &full_path));
42 full_path = full_path.AppendASCII("osdd");
43 full_path = full_path.AppendASCII(file_name);
44 ASSERT_TRUE(file_util::PathExists(full_path));
47 ASSERT_TRUE(file_util::ReadFileToString(full_path, &contents));
  /system/extras/ext4_utils/
contents.h 22 char *full_path; member in struct:dentry
  /external/chromium/chrome/browser/download/
base_file.h 28 BaseFile(const FilePath& full_path,
43 virtual bool Rename(const FilePath& full_path);
57 FilePath full_path() const { return full_path_; } function in class:BaseFile
base_file_unittest.cc 38 FilePath full_path = base_file_->full_path(); local
43 EXPECT_TRUE(file_util::ReadFileToString(full_path, &disk_data));
51 EXPECT_EQ(expect_file_survives_, file_util::PathExists(full_path));
87 EXPECT_EQ(FilePath().value(), base_file_->full_path().value());
93 EXPECT_TRUE(file_util::PathExists(base_file_->full_path()));
95 EXPECT_FALSE(file_util::PathExists(base_file_->full_path()));
96 EXPECT_NE(FilePath().value(), base_file_->full_path().value());
128 FilePath initial_path(base_file_->full_path());
195 FilePath initial_path(base_file_->full_path());
    [all...]
save_item.h 50 void Rename(const FilePath& full_path);
58 const FilePath& full_path() const { return full_path_; } function in class:SaveItem
download_item.h 209 void Rename(const FilePath& full_path);
223 void OnDownloadRenamedToFinalName(const FilePath& full_path);
245 FilePath full_path() const { return full_path_; } function in class:DownloadItem
download_util.cc 332 installer->InstallUserScript(download_item.full_path(),
343 installer->InstallCrx(download_item.full_path());
568 const FilePath full_path = download->full_path(); local
569 data.SetFilename(full_path);
573 net::GetMimeTypeFromFile(full_path, &mime_type);
577 data.SetURL(net::FilePathToFileURL(full_path),
    [all...]
  /external/chromium/chrome/browser/net/
url_fixer_upper_unittest.cc 181 // full_path = "c:\foo\bar.txt"
186 FilePath* full_path) {
187 *full_path = dir.Append(file_name);
188 return file_util::WriteFile(*full_path, "", 0) == 0;
408 FilePath full_path, dir; local
411 ASSERT_TRUE(MakeTempFile(dir, file_part, &full_path));
412 ASSERT_TRUE(file_util::AbsolutePath(&full_path));
429 file_part).possibly_invalid_spec(), full_path));
430 EXPECT_TRUE(file_util::Delete(full_path, false));
448 ASSERT_TRUE(MakeTempFile(new_dir, sub_file, &full_path));
    [all...]
url_fixer_upper.cc 104 // file exists, returns true and sets |full_path| to the result. Otherwise,
105 // returns false and leaves |full_path| unchanged.
107 FilePath* full_path) {
115 *full_path = file_path;
534 FilePath full_path; local
535 if (!ValidPathForFile(trimmed, &full_path)) {
549 if (!ValidPathForFile(unescaped, &full_path))
558 GURL file_url = net::FilePathToFileURL(full_path);
  /external/chromium/net/tools/crash_cache/
crash_cache.cc 84 // Creates the destinaton folder for this run, and returns it on full_path.
86 FilePath* full_path) {
115 *full_path = path.AppendASCII(folders[action]);
117 if (file_util::PathExists(*full_path))
120 return file_util::CreateDirectory(*full_path);
313 FilePath full_path; local
314 if (!CreateTargetFolder(path, action, &full_path)) {
325 return SimpleInsert(full_path, action, &cache_thread);
328 return LoadOperations(full_path, action, &cache_thread);
331 return SimpleRemove(full_path, action, &cache_thread)
    [all...]
  /external/dbus/bus/
activation-helper.c 55 DBusString full_path; local
69 if (!_dbus_string_init (&full_path))
93 _dbus_string_set_length (&full_path, 0);
96 if (!_dbus_string_append (&full_path, dir) ||
97 !_dbus_concat_dir_and_file (&full_path, &filename))
103 _dbus_verbose ("Trying to load file '%s'\n", _dbus_string_get_data (&full_path));
104 desktop_file = bus_desktop_file_load (&full_path, &tmp_error);
109 _dbus_string_get_const_data (&full_path),
136 _dbus_string_free (&full_path);
config-parser-trivial.c 345 check_return_values (const DBusString *full_path)
357 printf ("Testing values from: %s\n", _dbus_string_get_const_data (full_path));
359 parser = bus_config_load (full_path, TRUE, NULL, &error);
420 do_load (const DBusString *full_path,
429 parser = bus_config_load (full_path, TRUE, NULL, &error);
473 const DBusString *full_path; member in struct:__anon6495
482 return do_load (d->full_path, d->validity, TRUE);
536 DBusString full_path; local
539 if (!_dbus_string_init (&full_path))
542 if (!_dbus_string_copy (&test_directory, 0, &full_path, 0)
670 DBusString full_path; local
    [all...]
activation.c 581 DBusString full_path; local
596 if (!_dbus_string_init (&full_path))
622 _dbus_string_set_length (&full_path, 0);
640 if (!_dbus_string_append (&full_path, s_dir->dir_c) ||
641 !_dbus_concat_dir_and_file (&full_path, &filename))
648 desktop_file = bus_desktop_file_load (&full_path, &tmp_error);
652 _dbus_string_get_const_data (&full_path),
674 _dbus_string_get_const_data (&full_path), tmp_error.message);
710 _dbus_string_free (&full_path);
2207 DBusString file_name, full_path; local
2242 DBusString file_name, full_path; local
2274 DBusString filename, full_path; local
    [all...]
config-parser.c 2213 DBusString full_path; local
2354 DBusString full_path, selinux_policy_root; local
2401 DBusString full_path; local
2426 DBusString full_path; local
2516 DBusString full_path; local
2776 const DBusString *full_path; member in struct:__anon6504
2839 DBusString full_path; local
3104 DBusString full_path; local
3207 DBusString full_path; local
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
filter_false_positive_perftest.cc 95 FilePath full_path; local
96 CHECK(PathService::Get(chrome::DIR_TEST_DATA, &full_path));
97 full_path = full_path.Append(FILE_PATH_LITERAL("safe_browsing"));
98 full_path = full_path.Append(FILE_PATH_LITERAL("filter"));
99 CHECK(file_util::PathExists(full_path));
100 return full_path;
  /external/chromium/googleurl/src/
url_parse.cc 294 Component full_path; local
303 full_path = Component();
305 full_path = Component(end_auth, spec_len - end_auth);
310 ParsePath(spec, full_path, &parsed->path, &parsed->query, &parsed->ref);
  /external/chromium/base/
file_util_posix.cc 87 char full_path[PATH_MAX]; local
88 if (realpath(path->value().c_str(), full_path) == NULL)
90 *path = FilePath(full_path);
488 bool CreateDirectory(const FilePath& full_path) {
493 FilePath last_path = full_path;
494 subpaths.push_back(full_path);
495 for (FilePath path = full_path.DirName();
671 FilePath full_path = root_path_.Append(i->filename); local
672 if (ShouldSkip(full_path))
676 fnmatch(pattern_.c_str(), full_path.value().c_str(), FNM_NOESCAPE)
    [all...]
file_util_unittest.cc 297 const wchar_t* full_path; member in struct:__anon3054::dir_case
    [all...]
  /external/elfutils/src/
ar.c 142 static bool full_path; variable
367 full_path = true;
1117 entry.key = full_path ? argv[cnt] : basename (argv[cnt]);
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
httpcommon.h 246 string full_path() const { function in class:talk_base::Url
  /sdk/emulator/qtools/
trace_reader.h 583 static char full_path[4096]; local
588 full_path[0] = 0;
590 strcpy(full_path, root_);
592 strcat(full_path, region->path);
593 FILE *fobj = fopen(full_path, "r");
617 fprintf(stderr, "Cannot read ELF header from '%s'\n", full_path);
631 fprintf(stderr, "Can't read symbol table from '%s'\n", full_path);
638 fprintf(stderr, "Can't read symbol string table from '%s'\n", full_path);
    [all...]

Completed in 443 milliseconds