Searched defs:full_path (Results 1 - 25 of 67) sorted by relevance

123

/external/chromium_org/chrome/browser/download/
H A Ddrag_download_item_views.cc45 base::FilePath full_path = download->GetTargetFilePath(); local
47 // Overwrite |full_path| with drive cache file path when appropriate.
53 full_path = drive_download_handler->GetCacheFilePath(download);
57 ui::FileInfo(full_path, download->GetFileNameToReportUser()));
/external/chromium_org/chrome/browser/
H A Dplatform_util_chromeos.cc23 void ShowItemInFolder(Profile* profile, const base::FilePath& full_path) { argument
25 file_manager::util::ShowItemInFolder(profile, full_path);
28 void OpenItem(Profile* profile, const base::FilePath& full_path) { argument
30 file_manager::util::OpenItem(profile, full_path);
H A Dplatform_util_android.cc13 void ShowItemInFolder(Profile* profile, const base::FilePath& full_path) { argument
17 void OpenItem(Profile* profile, const base::FilePath& full_path) { argument
H A Dplatform_util_linux.cc56 void ShowItemInFolderOnFileThread(const base::FilePath& full_path) { argument
57 base::FilePath dir = full_path.DirName();
68 void ShowItemInFolder(Profile* profile, const base::FilePath& full_path) { argument
71 base::Bind(&ShowItemInFolderOnFileThread, full_path));
74 void OpenItem(Profile* profile, const base::FilePath& full_path) { argument
77 base::Bind(&XDGOpen, full_path.value()));
H A Dplatform_util_win.cc37 void ShowItemInFolderOnFileThread(const base::FilePath& full_path) { argument
39 base::FilePath dir = full_path.DirName().AsEndingWithSeparator();
88 const_cast<wchar_t *>(full_path.value().c_str()),
106 << "(): Can't open full_path = \""
107 << full_path.value() << "\""
162 void OpenItemViaShellInUtilityProcess(const base::FilePath& full_path) { argument
166 utility_process_host->Send(new ChromeUtilityMsg_OpenItemViaShell(full_path));
173 void ShowItemInFolder(Profile* profile, const base::FilePath& full_path) { argument
180 base::Bind(&ShowItemInFolderOnFileThread, full_path));
183 void OpenItem(Profile* profile, const base::FilePath& full_path) { argument
[all...]
/external/chromium_org/remoting/host/
H A Dipc_constants.cc22 base::FilePath* full_path) {
35 *full_path = path;
21 GetInstalledBinaryPath(const base::FilePath::StringType& binary, base::FilePath* full_path) argument
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dupdate_server.py25 full_path = os.path.join(path, 'appcfg.py') variable
26 if os.path.exists(full_path):
27 appcfg_path = full_path
/external/chromium_org/chrome/installer/mini_installer/
H A Dpe_resource.cc24 bool PEResource::WriteToDisk(const wchar_t* full_path) { argument
36 HANDLE out_file = ::CreateFile(full_path, GENERIC_WRITE, 0, NULL,
/external/chromium_org/content/browser/
H A Dsafe_util_win.cc27 // |full_path| is the path to the downloaded file.
28 bool SetInternetZoneIdentifierDirectly(const base::FilePath& full_path) { argument
30 std::wstring path = full_path.value() + L":Zone.Identifier";
54 HRESULT AVScanFile(const base::FilePath& full_path, argument
67 SetInternetZoneIdentifierDirectly(full_path);
77 hr = attachment_services->SetLocalPath(full_path.value().c_str());
/external/qemu/distrib/ext4_utils/src/
H A Dcontents.h22 char *full_path; member in struct:dentry
/external/chromium_org/chrome/browser/chromeos/file_manager/
H A Dfileapi_util.h46 base::FilePath full_path; // Value of Entry.fullPath. member in struct:file_manager::util::EntryDefinition
/external/chromium_org/chrome/utility/
H A Dshell_handler_win.cc33 void ShellHandler::OnOpenItemViaShell(const base::FilePath& full_path) { argument
34 ui::win::OpenItemViaShell(full_path);
/external/chromium_org/components/test/data/password_manager/
H A Drun_tests.py49 full_path = os.path.realpath(__file__) variable
50 tests_dir = os.path.dirname(full_path)
/external/chromium_org/storage/browser/database/
H A Ddatabase_util.cc89 base::FilePath full_path = db_tracker->GetFullDBFilePath( local
91 if (!full_path.empty() && !sqlite_suffix.empty()) {
92 DCHECK(full_path.Extension().empty());
93 full_path = full_path.InsertBeforeExtensionASCII(
97 if (full_path.value().find(FILE_PATH_LITERAL("..")) !=
100 return full_path;
/external/chromium_org/base/files/
H A Dfile_enumerator_posix.cc94 FilePath full_path = root_path_.Append(i->filename_); local
95 if (ShouldSkip(full_path))
99 fnmatch(pattern_.c_str(), full_path.value().c_str(), FNM_NOESCAPE))
103 pending_paths_.push(full_path);
/external/chromium_org/components/search_engines/
H A Dtemplate_url_parser_unittest.cc97 base::FilePath full_path; local
98 ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &full_path));
99 full_path = full_path.AppendASCII("osdd");
100 full_path = full_path.AppendASCII(file_name);
101 ASSERT_TRUE(base::PathExists(full_path));
104 ASSERT_TRUE(base::ReadFileToString(full_path, &contents));
/external/chromium_org/content/browser/download/
H A Dbase_file.h36 BaseFile(const base::FilePath& full_path,
48 // directory to create the temporary file in if |full_path()| is empty. If
49 // |default_directory| and |full_path()| are empty, then a temporary file will
60 // was successful. After a failure, the full_path() and in_progress() can be
63 virtual DownloadInterruptReason Rename(const base::FilePath& full_path);
87 const base::FilePath& full_path() const { return full_path_; } function in class:content::BaseFile
93 // Returns the number of bytes in the file pointed to by full_path().
H A Dsave_file.cc45 DownloadInterruptReason SaveFile::Rename(const base::FilePath& full_path) { argument
46 return file_.Rename(full_path);
68 return file_.full_path();
H A Dsave_item.cc116 void SaveItem::Rename(const base::FilePath& full_path) { argument
117 DCHECK(!full_path.empty() && !has_final_name());
118 full_path_ = full_path;
H A Dsave_item.h51 void Rename(const base::FilePath& full_path);
59 const base::FilePath& full_path() const { return full_path_; } function in class:content::SaveItem
/external/chromium_org/net/disk_cache/
H A Dcache_util.cc109 bool DelayedCacheCleanup(const base::FilePath& full_path) { argument
114 base::FilePath current_path = full_path.StripTrailingSeparators();
131 if (!disk_cache::MoveCache(full_path, to_delete)) {
132 LOG(ERROR) << "Unable to move cache folder " << full_path.value() << " to "
/external/chromium_org/ui/base/win/
H A Dshell.cc29 bool OpenItemWithExternalApp(const base::string16& full_path) { argument
34 sei.lpFile = full_path.c_str();
40 bool OpenAnyViaShell(const base::string16& full_path, argument
47 sei.lpFile = full_path.c_str();
55 return OpenItemWithExternalApp(full_path);
59 bool OpenItemViaShell(const base::FilePath& full_path) { argument
60 return OpenAnyViaShell(full_path.value(), full_path.DirName().value(),
/external/chromium_org/base/test/
H A Dtest_file_util_win.cc239 bool HasInternetZoneIdentifier(const FilePath& full_path) { argument
240 FilePath zone_path(full_path.value() + L":Zone.Identifier");
/external/chromium_org/chrome/browser/policy/cloud/
H A Dcomponent_cloud_policy_browsertest.cc155 base::FilePath full_path; local
156 if (!PathService::Get(chrome::DIR_TEST_DATA, &full_path)) {
161 ExtensionBrowserTest::LoadExtension(full_path.Append(path)));
/external/chromium_org/components/url_fixer/
H A Durl_fixer_unittest.cc220 // full_path = "c:\foo\bar.txt"
225 base::FilePath* full_path) {
226 *full_path = dir.Append(file_name);
227 return base::WriteFile(*full_path, "", 0) == 0;
456 base::FilePath full_path; local
461 ASSERT_TRUE(MakeTempFile(temp_dir_.path(), file_part, &full_path));
462 full_path = base::MakeAbsoluteFilePath(full_path);
463 ASSERT_FALSE(full_path.empty());
478 file_part).possibly_invalid_spec(), full_path));
223 MakeTempFile(const base::FilePath& dir, const base::FilePath& file_name, base::FilePath* full_path) argument
[all...]

Completed in 578 milliseconds

123