Searched refs:full_path (Results 1 - 25 of 159) sorted by relevance

1234567

/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_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.h26 void ShowItemInFolder(Profile* profile, const base::FilePath& full_path);
30 void OpenItem(Profile* profile, const base::FilePath& 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
/external/chromium_org/tools/gyp/test/win/
H A Dgyptest-link-pdb.py25 full_path = test.built_file_path(pdb, chdir=CHDIR)
26 return os.path.isfile(full_path)
H A Dgyptest-link-aslr.py23 full_path = test.built_file_path(exe, chdir=CHDIR)
24 output = test.run_dumpbin('/headers', full_path)
H A Dgyptest-link-deffile.py27 full_path = test.built_file_path(binary, chdir=CHDIR)
28 output = test.run_dumpbin('/exports', full_path)
H A Dgyptest-link-fixed-base.py23 full_path = test.built_file_path(exe, chdir=CHDIR)
24 return test.run_dumpbin('/headers', full_path)
H A Dgyptest-link-incremental.py23 full_path = test.built_file_path(exe, chdir=CHDIR)
24 output = test.run_dumpbin('/disasm', full_path)
H A Dgyptest-link-ordering.py23 full_path = test.built_file_path(exe, chdir=CHDIR)
26 x for x in test.run_dumpbin('/disasm', full_path).splitlines()
H A Dgyptest-link-pdb-output.py25 full_path = test.built_file_path(pdb, chdir=CHDIR)
26 return os.path.isfile(full_path)
H A Dgyptest-link-profile.py24 full_path = test.built_file_path(exe, chdir=CHDIR)
25 return test.run_dumpbin(full_path)
H A Dgyptest-link-safeseh.py23 full_path = test.built_file_path(exe, chdir=CHDIR)
24 output = test.run_dumpbin('/LOADCONFIG', full_path)
/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());
H A Dsafe_util_win.h41 // |full_path| : is the path to the downloaded file. This should be the final
48 HRESULT AVScanFile(const base::FilePath& full_path,
/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
H A Dipc_constants.h21 // Returns the full path to an installed |binary| in |full_path|.
23 base::FilePath* full_path);
/external/chromium_org/sandbox/win/src/
H A Dinterception_agent.h45 // 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/chrome/common/extensions/docs/server2/
H A Dgcs_file_system.py53 full_path = Join(bucket, path)
57 if IsDirectory(full_path):
59 for filename in _ListDir(full_path))
87 full_path = Join(self._bucket, path)
89 (path, full_path))
91 result[path] = _ListDir(full_path)
93 result[path] = _ReadFile(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/sandbox/win/tests/common/
H A Dcontroller.cc24 base::string16 full_path(windows_path);
25 if (full_path.empty())
26 return full_path;
29 full_path.insert(0, L"\\??\\");
31 full_path += L"\\system32\\";
32 full_path += name;
33 return full_path;
42 base::string16 full_path(windows_path);
43 if (full_path.empty())
44 return full_path;
[all...]
/external/chromium_org/extensions/common/
H A Dextension_resource.cc60 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/
H A Dgenerate_gles2_embedded_data.py65 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/third_party/WebKit/Source/bindings/scripts/
H A Dcompute_interfaces_info_individual.py107 def add_paths_to_partials_dict(partial_interface_name, full_path, this_include_path=None):
109 paths_dict['full_paths'].append(full_path)
115 full_path = os.path.realpath(idl_filename)
116 idl_file_contents = get_file_contents(full_path)
126 add_paths_to_partials_dict(partial_interface_name, full_path, this_include_path)
140 'full_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,

Completed in 1395 milliseconds

1234567