HomeSort by relevance Sort by last modified time
    Searched refs:full_path (Results 26 - 50 of 75) sorted by null

12 3

  /external/webkit/Tools/Scripts/webkitpy/common/system/
zip_mock.py 50 full_path = self._filesystem.join(path, filename)
52 self._filesystem.write_text_file(full_path, contents)
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
http_server_base.py 82 full_path = os.path.join(folder, file)
83 filesystem.FileSystem().remove(full_path)
  /external/v8/test/mozilla/
testcfg.py 119 full_path = root_path + [file[:-3]]
120 full_path = [x for x in full_path if x != 'data']
121 if self.Contains(path, full_path):
122 test = MozillaTestCase(join(root, file), full_path, self.context,
  /system/extras/ext4_utils/
make_ext4fs.c 72 static u32 build_directory_structure(const char *full_path, const char *dir_path,
85 entries = scandir(full_path, &namelist, filter_dot, (void*)alphasort);
101 asprintf(&dentries[i].full_path, "%s/%s", full_path, namelist[i]->d_name);
105 ret = lstat(dentries[i].full_path, &stat);
147 readlink(dentries[i].full_path, dentries[i].link, info.block_size - 1);
160 entry_inode = make_file(dentries[i].full_path, dentries[i].size);
162 entry_inode = build_directory_structure(dentries[i].full_path,
165 entry_inode = make_link(dentries[i].full_path, dentries[i].link);
179 free(dentries[i].full_path);
    [all...]
  /external/dbus/bus/
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:__anon5137
2839 DBusString full_path; local
3104 DBusString full_path; local
3207 DBusString full_path; local
    [all...]
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);
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...]
  /external/chromium/chrome/browser/download/
download_item.cc 278 platform_util::OpenItem(full_path());
282 NewRunnableFunction(&platform_util::OpenItem, full_path()));
290 platform_util::ShowItemInFolder(full_path());
295 full_path()));
465 void DownloadItem::Rename(const FilePath& full_path) {
467 << " full_path = \"" << full_path.value() << "\""
469 DCHECK(!full_path.empty());
470 full_path_ = full_path;
519 void DownloadItem::OnDownloadRenamedToFinalName(const FilePath& full_path) {
    [all...]
save_file_manager.h 126 void OnShowSavedFileInShell(const FilePath full_path);
130 void DeleteDirectoryOrFile(const FilePath& full_path, bool is_dir);
207 void OnDeleteDirectoryOrFile(const FilePath& full_path, bool is_dir);
save_file_manager.cc 202 void SaveFileManager::DeleteDirectoryOrFile(const FilePath& full_path,
208 this, &SaveFileManager::OnDeleteDirectoryOrFile, full_path, is_dir));
234 info->path = save_file->full_path();
465 bool success = file_util::CopyFile(file_path, save_file->full_path());
467 file_util::Delete(save_file->full_path(), false);
471 void SaveFileManager::OnDeleteDirectoryOrFile(const FilePath& full_path,
474 DCHECK(!full_path.empty());
476 file_util::Delete(full_path, is_dir);
482 void SaveFileManager::OnShowSavedFileInShell(const FilePath full_path) {
484 platform_util::ShowItemInFolder(full_path);
    [all...]
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_file_manager.cc 308 int id, const FilePath& full_path) {
310 << " full_path = \"" << full_path.value() << "\"";
319 if (!download->Rename(full_path)) {
320 // Error. Between the time the UI thread generated 'full_path' to the time
334 int id, const FilePath& full_path, bool overwrite_existing_file) {
337 << " full_path = \"" << full_path.value() << "\"";
350 FilePath new_path = full_path;
367 // Error. Between the time the UI thread generated 'full_path' to the tim
    [all...]
base_file.cc 23 BaseFile::BaseFile(const FilePath& full_path,
28 : full_path_(full_path),
  /external/chromium/chrome/browser/extensions/
file_manager_util.cc 134 void FileManagerUtil::ViewItem(const FilePath& full_path, bool enqueue) {
135 std::string ext = full_path.Extension();
141 path.append(full_path.value());
145 NewRunnableFunction(&ViewItem, full_path, enqueue));
160 mediaplayer->EnqueueMediaFile(browser->profile(), full_path, NULL);
162 mediaplayer->ForcePlayMediaFile(browser->profile(), full_path, NULL);
174 UTF8ToUTF16(full_path.BaseName().value()))
file_manager_util.h 38 static void ViewItem(const FilePath& full_path, bool enqueue);
  /external/v8/test/sputnik/
testcfg.py 97 full_path = current_path + [test.GetPath()[-1]]
98 if self.Contains(path, full_path):
99 case = SputnikTestCase(test, full_path, self.context, mode)
  /external/webkit/Source/WebKit/chromium/scripts/
concatenate_css_files.py 93 full_path = expander.expand(input_file_name)
94 if (full_path is None):
99 input_file = open(full_path, 'r')
concatenate_js_files.py 94 full_path = expander.expand(input_file_name)
95 if (full_path is None):
100 input_file = open(full_path, 'r')
  /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/v8/test/cctest/
testcfg.py 94 full_path = current_path + relative_path
97 if self.Contains(path, full_path):
98 result.append(CcTestCase(full_path, executable, mode, raw_test, dependency, self.context, variant_flags))
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
json_layout_results_generator.py 181 full_path = self._fs.join(self._port.layout_tests_dir(), test_name)
182 full_path = self._fs.normpath(full_path)
183 if not self._fs.exists(full_path):
  /external/chromium/base/test/
test_file_util_win.cc 199 bool HasInternetZoneIdentifier(const FilePath& full_path) {
200 FilePath zone_path(full_path.value() + L":Zone.Identifier");
  /external/valgrind/tsan/
ts_dynamorio.cc 170 CHECK(info->full_path);
173 dr_module_preferred_name(info), info->full_path);
175 g_main_module_path = new string(info->full_path);
394 symbol_name.c_str(), info->full_path, target_fun);
401 dr_printf(" 'foo_to_wrap' entry point: bb %p, %s / %s\n", pc, dr_module_preferred_name(info), info->full_path);
  /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...]
  /external/chromium/chrome/browser/net/
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);

Completed in 1709 milliseconds

12 3