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

1 2 3 4 5 6 7

  /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/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/storage/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;
  /external/chromium_org/extensions/common/
extension_resource.cc 60 base::FilePath full_path = clean_extension_root.Append(relative_path);
90 full_path = base::MakeAbsoluteFilePath(full_path);
91 if (base::PathExists(full_path) &&
93 clean_extension_root.IsParent(full_path))) {
94 return full_path;
  /external/chromium_org/gpu/gles2_conform_support/
generate_gles2_embedded_data.py 65 full_path = os.path.join(scan_dir, file)
67 base_path = full_path[len(self.scan_dir) + 1:]
68 if os.path.isdir(full_path):
70 sub_dirs.append(full_path)
73 print full_path.replace("\\", "/")
82 data = open(full_path, "r")
  /external/chromium_org/chrome/installer/mini_installer/
pe_resource.cc 24 bool PEResource::WriteToDisk(const wchar_t* full_path) {
36 HANDLE out_file = ::CreateFile(full_path, GENERIC_WRITE, 0, NULL,

Completed in 339 milliseconds

1 2 3 4 5 6 7