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

1 2 3 4 5 6 7 8

  /external/chromium_org/chrome/browser/local_discovery/storage/
privet_filesystem_attribute_cache.h 21 const base::File::Info* GetFileInfo(const base::FilePath& full_path);
24 void AddFileInfoFromJSON(const base::FilePath& full_path,
30 void AddEntryInfoFromJSON(const base::FilePath& full_path,
privet_filesystem_attribute_cache.cc 17 const base::FilePath& full_path) {
19 file_info_map_.find(NormalizeFilePath(full_path));
29 const base::FilePath& full_path,
31 AddEntryInfoFromJSON(full_path, json);
46 AddEntryInfoFromJSON(full_path.AppendASCII(name), entry_value);
51 const base::FilePath& full_path,
65 file_info_map_[NormalizeFilePath(full_path)] = file_info;
  /external/chromium_org/chrome/browser/
platform_util_chromeos.cc 23 void ShowItemInFolder(Profile* profile, const base::FilePath& full_path) {
25 file_manager::util::ShowItemInFolder(profile, full_path);
28 void OpenItem(Profile* profile, const base::FilePath& full_path) {
30 file_manager::util::OpenItem(profile, full_path);
platform_util_linux.cc 56 void ShowItemInFolderOnFileThread(const base::FilePath& full_path) {
57 base::FilePath dir = full_path.DirName();
68 void ShowItemInFolder(Profile* profile, const base::FilePath& full_path) {
71 base::Bind(&ShowItemInFolderOnFileThread, full_path));
74 void OpenItem(Profile* profile, const base::FilePath& full_path) {
77 base::Bind(&XDGOpen, full_path.value()));
platform_util.h 26 void ShowItemInFolder(Profile* profile, const base::FilePath& full_path);
30 void OpenItem(Profile* profile, const base::FilePath& full_path);
platform_util_android.cc 13 void ShowItemInFolder(Profile* profile, const base::FilePath& full_path) {
17 void OpenItem(Profile* profile, const base::FilePath& full_path) {
  /external/chromium_org/content/browser/
safe_util_win.h 41 // |full_path| : is the path to the downloaded file. This should be the final
48 HRESULT AVScanFile(const base::FilePath& full_path,
safe_util_win.cc 27 // |full_path| is the path to the downloaded file.
28 bool SetInternetZoneIdentifierDirectly(const base::FilePath& full_path) {
30 std::wstring path = full_path.value() + L":Zone.Identifier";
54 HRESULT AVScanFile(const base::FilePath& full_path,
67 SetInternetZoneIdentifierDirectly(full_path);
77 hr = attachment_services->SetLocalPath(full_path.value().c_str());
  /external/chromium_org/remoting/host/
ipc_constants.h 21 // Returns the full path to an installed |binary| in |full_path|.
23 base::FilePath* full_path);
ipc_constants.cc 22 base::FilePath* full_path) {
35 *full_path = path;
  /external/chromium_org/ui/base/win/
shell.h 21 // default application registered for the file specified by 'full_path',
24 UI_BASE_EXPORT bool OpenItemViaShell(const base::FilePath& full_path);
30 const base::FilePath& full_path);
36 UI_BASE_EXPORT bool OpenAnyViaShell(const base::string16& full_path,
42 // to open the file specified by 'full_path'.
44 bool OpenItemWithExternalApp(const base::string16& full_path);
  /external/chromium_org/tools/gyp/test/win/
gyptest-link-aslr.py 23 full_path = test.built_file_path(exe, chdir=CHDIR)
24 output = test.run_dumpbin('/headers', full_path)
gyptest-link-fixed-base.py 23 full_path = test.built_file_path(exe, chdir=CHDIR)
24 return test.run_dumpbin('/headers', full_path)
gyptest-link-incremental.py 23 full_path = test.built_file_path(exe, chdir=CHDIR)
24 output = test.run_dumpbin('/disasm', full_path)
gyptest-link-pdb-output.py 25 full_path = test.built_file_path(pdb, chdir=CHDIR)
26 return os.path.isfile(full_path)
gyptest-link-pdb.py 25 full_path = test.built_file_path(pdb, chdir=CHDIR)
26 return os.path.isfile(full_path)
gyptest-link-profile.py 24 full_path = test.built_file_path(exe, chdir=CHDIR)
25 return test.run_dumpbin(full_path)
gyptest-link-safeseh.py 23 full_path = test.built_file_path(exe, chdir=CHDIR)
24 output = test.run_dumpbin('/LOADCONFIG', full_path)
gyptest-cl-buffer-security-check.py 26 full_path = test.built_file_path(exe, chdir=CHDIR)
27 output = test.run_dumpbin('/disasm', full_path)
gyptest-link-deffile.py 27 full_path = test.built_file_path(binary, chdir=CHDIR)
28 output = test.run_dumpbin('/exports', full_path)
gyptest-link-defrelink.py 28 full_path = test.built_file_path(binary, chdir=CHDIR)
29 output = test.run_dumpbin('/exports', full_path)
gyptest-link-ordering.py 23 full_path = test.built_file_path(exe, chdir=CHDIR)
26 x for x in test.run_dumpbin('/disasm', full_path).splitlines()
  /external/chromium_org/content/browser/download/
mock_download_file.h 31 const base::FilePath& full_path));
33 void(const base::FilePath& full_path,
36 void(const base::FilePath& full_path,
  /external/chromium_org/sandbox/win/src/
interception_agent.h 45 // full_path is the (optional) full name of the module being loaded and name
46 // is the internal module name. If full_path is provided, it will be used
48 bool OnDllLoad(const UNICODE_STRING* full_path, const UNICODE_STRING* name,
62 bool DllMatch(const UNICODE_STRING* full_path, const UNICODE_STRING* name,
  /external/chromium_org/webkit/browser/database/
database_util.cc 89 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;

Completed in 723 milliseconds

1 2 3 4 5 6 7 8