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

1 2 3 4 5 6 7 8

  /external/chromium_org/ui/base/win/
shell.h 20 // default application registered for the file specified by 'full_path',
23 UI_EXPORT bool OpenItemViaShell(const base::FilePath& full_path);
28 UI_EXPORT bool OpenItemViaShellNoZoneCheck(const base::FilePath& full_path);
34 UI_EXPORT bool OpenAnyViaShell(const string16& full_path,
40 // to open the file specified by 'full_path'.
42 bool OpenItemWithExternalApp(const string16& full_path);
shell.cc 63 bool OpenItemWithExternalApp(const string16& full_path) {
68 sei.lpFile = full_path.c_str();
72 bool OpenAnyViaShell(const string16& full_path,
79 sei.lpFile = full_path.c_str();
87 return OpenItemWithExternalApp(full_path);
91 bool OpenItemViaShell(const base::FilePath& full_path) {
92 return OpenAnyViaShell(full_path.value(), full_path.DirName().value(),
96 bool OpenItemViaShellNoZoneCheck(const base::FilePath& full_path) {
97 return OpenAnyViaShell(full_path.value(), string16(), string16()
    [all...]
  /external/chromium/chrome/common/
win_safe_util.h 31 // You must provide a valid 'full_path' to the file to be opened and a well
37 // specified by 'full_path' it ask the user, via the Windows "Open With"
41 const FilePath& full_path,
48 bool SetInternetZoneIdentifier(const FilePath& full_path);
win_safe_util.cc 25 const FilePath& full_path,
36 return app::win::OpenItemViaShell(full_path);
54 hr = attachment_services->SetLocalPath(full_path.value().c_str());
84 return app::win::OpenItemViaShellNoZoneCheck(full_path);
87 bool SetInternetZoneIdentifier(const FilePath& full_path) {
89 std::wstring path = full_path.value() + L":Zone.Identifier";
  /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/third_party/WebKit/Tools/Scripts/
check-for-inappropriate-macros-in-external-headers 43 full_path = File.join Dir.pwd, framework, $is_shallow_bundle ? "" : "Versions/A/", path
44 if File.directory? full_path
45 Dir.glob "#{full_path}/**/*.h"
46 elsif File.exists? full_path
47 [full_path]
49 print_error "path '#{full_path}' for argument '#{path}' does not exist."
  /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.py 24 full_path = test.built_file_path(pdb, chdir=CHDIR)
25 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-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)
  /external/chromium_org/webkit/browser/database/
database_util.cc 59 base::FilePath full_path = db_tracker->GetFullDBFilePath( local
61 if (!full_path.empty() && !sqlite_suffix.empty()) {
62 DCHECK(full_path.Extension().empty());
63 full_path = full_path.InsertBeforeExtensionASCII(
67 if (full_path.value().find(FILE_PATH_LITERAL("..")) !=
70 return full_path;
  /external/chromium/chrome/common/extensions/
extension_resource.cc 48 FilePath full_path = clean_extension_root.Append(relative_path);
57 if (file_util::AbsolutePath(&full_path) &&
58 file_util::PathExists(full_path) &&
59 clean_extension_root.IsParent(full_path)) {
60 return full_path;
  /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
  /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/chrome/browser/
platform_util_linux.cc 58 void ShowItemInFolderOnFileThread(const base::FilePath& full_path) {
59 base::FilePath dir = full_path.DirName();
70 void ShowItemInFolder(const base::FilePath& full_path) {
73 base::Bind(&ShowItemInFolderOnFileThread, full_path));
76 void OpenItem(const base::FilePath& full_path) {
79 base::Bind(&XDGOpen, full_path.value()));
platform_util.h 23 void ShowItemInFolder(const base::FilePath& full_path);
27 void OpenItem(const base::FilePath& full_path);
platform_util_android.cc 13 void ShowItemInFolder(const base::FilePath& full_path) {
17 void OpenItem(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,

Completed in 123 milliseconds

1 2 3 4 5 6 7 8