HomeSort by relevance Sort by last modified time
    Searched refs:full_path (Results 101 - 125 of 152) sorted by null

1 2 3 45 6 7

  /external/chromium_org/content/browser/download/
save_file_manager.cc 192 void SaveFileManager::DeleteDirectoryOrFile(const base::FilePath& full_path,
198 this, full_path, is_dir));
467 void SaveFileManager::OnDeleteDirectoryOrFile(const base::FilePath& full_path,
470 DCHECK(!full_path.empty());
472 base::DeleteFile(full_path, is_dir);
download_item_impl.cc 85 base::FilePath full_path = download_file->FullPath(); local
87 return full_path;
841 " full_path = \"%" PRFilePath "\"\n\t"
    [all...]
download_file_unittest.cc 287 const base::FilePath& full_path,
290 &DownloadFile::RenameAndUniquify, full_path, result_path_p);
294 const base::FilePath& full_path,
297 &DownloadFile::RenameAndAnnotate, full_path, result_path_p);
309 const base::FilePath& full_path,
315 ((*download_file_).*method)(full_path,
377 const base::FilePath& full_path,
380 GetParam(), full_path, result_path_p);
base_file.cc 28 BaseFile::BaseFile(const base::FilePath& full_path,
36 : full_path_(full_path),
download_item_impl.h 323 DownloadInterruptReason reason, const base::FilePath& full_path);
336 const base::FilePath& full_path);
  /external/lldb/test/unittest2/test/
test_discovery.py 150 full_path = os.path.abspath(os.path.normpath('/foo'))
155 self.assertEqual(loader._top_level_dir, full_path)
156 self.assertIn(full_path, sys.path)
316 full_path = os.path.abspath('foo')
326 if full_path in sys.path:
327 sys.path.remove(full_path)
350 self.assertEqual(sys.path[0], full_path)
  /external/chromium_org/chrome/browser/apps/app_shim/
extension_app_shim_handler_mac.cc 133 base::FilePath full_path = profile_manager->user_data_dir().Append(path); local
135 return cache.GetIndexOfProfileWithPath(full_path) != std::string::npos;
141 base::FilePath full_path = profile_manager->user_data_dir().Append(path); local
142 Profile* profile = profile_manager->GetProfileByPath(full_path);
152 base::FilePath full_path = profile_manager->user_data_dir().Append(path); local
154 full_path,
  /external/chromium_org/chrome/browser/media_galleries/
media_scan_manager_unittest.cc 148 // final path in |full_path|.
150 base::FilePath* full_path) {
152 *full_path =
154 ASSERT_TRUE(base::CreateDirectory(*full_path));
163 base::FilePath full_path; local
164 MakeTestFolder(rel_path, &full_path);
166 gallery_prefs_->LookUpGalleryByPath(full_path, &gallery_info);
  /external/chromium_org/chrome/installer/mini_installer/
mini_installer.cc 350 PathString full_path; local
351 if (!full_path.assign(ctx->base_path) ||
352 !full_path.append(name) ||
353 !resource.WriteToDisk(full_path.get()))
357 if (!ctx->chrome_resource_path->assign(full_path.get()))
360 if (!ctx->setup_resource_path->assign(full_path.get()))
    [all...]
  /external/chromium_org/components/url_fixer/
url_fixer.cc 104 // file exists, returns true and sets |full_path| to the result. Otherwise,
105 // returns false and leaves |full_path| unchanged.
107 base::FilePath* full_path) {
115 *full_path = file_path;
614 base::FilePath full_path; local
615 if (is_file && !ValidPathForFile(trimmed, &full_path)) {
629 if (!ValidPathForFile(unescaped, &full_path))
638 GURL file_url = net::FilePathToFileURL(full_path);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/html5fs/
html5_fs.cc 93 Path full_path(path);
94 full_path.Prepend(prefix_);
95 return full_path;
  /external/chromium_org/remoting/webapp/
build-webapp.py 53 full_path = os.path.join(root, f)
54 rel_path = os.path.relpath(full_path, directory)
55 zip.write(full_path, os.path.join(zipfile_base, rel_path))
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_shared_library.h 45 // |full_path| if the file full path.
53 bool Load(const char* full_path,
  /external/chromium_org/base/files/
file_util.cc 186 bool CreateDirectory(const FilePath& full_path) {
187 return CreateDirectoryAndGetError(full_path, NULL);
file_util.h 261 BASE_EXPORT bool CreateDirectoryAndGetError(const FilePath& full_path,
265 BASE_EXPORT bool CreateDirectory(const FilePath& full_path);
file_util_win.cc 375 bool CreateDirectoryAndGetError(const FilePath& full_path,
380 const wchar_t* full_path_str = full_path.value().c_str();
401 FilePath parent_path(full_path.DirName());
402 if (parent_path.value() == full_path.value()) {
418 if (error_code == ERROR_ALREADY_EXISTS && DirectoryExists(full_path)) {
file_util_posix.cc 191 char full_path[PATH_MAX]; local
192 if (realpath(input.value().c_str(), full_path) == NULL)
194 return FilePath(full_path);
562 bool CreateDirectoryAndGetError(const FilePath& full_path,
568 FilePath last_path = full_path;
569 subpaths.push_back(full_path);
570 for (FilePath path = full_path.DirName();
  /external/chromium_org/base/test/
test_file_util_win.cc 239 bool HasInternetZoneIdentifier(const FilePath& full_path) {
240 FilePath zone_path(full_path.value() + L":Zone.Identifier");
  /external/chromium_org/components/nacl/browser/
nacl_file_host.cc 205 base::FilePath full_path = pnacl_dir.AppendASCII(
207 *file_to_open = full_path;
  /external/chromium_org/third_party/skia/gm/rebaseline_server/
results.py 226 full_path = os.path.join(dirpath, matching_filename)
227 meta_dict[builder] = gm_json.LoadFromFile(full_path)
  /external/chromium_org/tools/gn/bootstrap/
bootstrap.py 137 full_path = os.path.join(GN_ROOT, name)
139 os.path.relpath(full_path, SRC_ROOT))
  /external/libpcap/
pcap-usb-linux.c 344 char full_path[USB_LINE_LEN]; local
367 snprintf(full_path, USB_LINE_LEN, LINUX_USB_MON_DEV"%d", handlep->bus_index);
368 handle->fd = open(full_path, O_RDONLY, 0);
402 snprintf(full_path, USB_LINE_LEN, USB_TEXT_DIR"/%dt", handlep->bus_index);
403 handle->fd = open(full_path, O_RDONLY, 0);
412 snprintf(full_path, USB_LINE_LEN, USB_TEXT_DIR_OLD"/%dt", handlep->bus_index);
413 handle->fd = open(full_path, O_RDONLY, 0);
418 "Can't open USB bus file %s: %s", full_path, strerror(errno));
  /external/fio/
diskutil.c 363 char full_path[256]; local
368 sprintf(full_path, "%s%s%s", path, FIO_OS_PATH_SEPARATOR, dir->d_name);
371 if (!check_dev_match(majdev, mindev, full_path)) {
378 if (stat(full_path, &st) == -1) {
383 if (lstat(full_path, &st) == -1) {
392 found = find_block_dir(majdev, mindev, full_path, 0);
394 strcpy(path, full_path);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/
server_base.py 194 full_path = self._filesystem.join(folder, file)
195 self._filesystem.remove(full_path)
  /external/chromium_org/tools/gyp/pylib/gyp/
MSVSVersion.py 344 full_path = os.path.join(path, 'devenv.exe')
346 if not force_express and os.path.exists(full_path):

Completed in 1271 milliseconds

1 2 3 45 6 7