/external/chromium_org/content/browser/renderer_host/pepper/ |
pepper_flash_file_message_filter.cc | 112 base::FilePath full_path = ValidateAndConvertPepperFilePath( local 115 if (full_path.empty()) { 128 full_path, platform_file_flags, NULL, &error); 176 base::FilePath full_path = ValidateAndConvertPepperFilePath( local 178 if (full_path.empty()) { 183 bool result = base::DeleteFile(full_path, recursive); 190 base::FilePath full_path = ValidateAndConvertPepperFilePath( local 192 if (full_path.empty()) { 197 bool result = base::CreateDirectory(full_path); 205 base::FilePath full_path = ValidateAndConvertPepperFilePath local 222 base::FilePath full_path = ValidateAndConvertPepperFilePath( local [all...] |
/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,
|
/external/chromium_org/tools/gyp/test/win/ |
gyptest-link-deffile.py | 27 full_path = test.built_file_path(binary, chdir=CHDIR) 28 output = test.run_dumpbin('/exports', 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-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)
|
/external/chromium_org/chrome/browser/download/ |
drag_download_item_views.cc | 51 base::FilePath full_path = download->GetTargetFilePath(); local 53 // Overwrite |full_path| with drive cache file path when appropriate. 59 full_path = drive_download_handler->GetCacheFilePath(download); 63 full_path, download->GetFileNameToReportUser())); 67 data.SetURL(net::FilePathToFileURL(full_path),
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
local_file_system.py | 74 full_path = os.path.join(self._base_path, 77 result[path] = _ListDir(full_path) 79 result[path] = _ReadFile(full_path) 86 full_path = os.path.join(self._base_path, 88 return _CreateStatInfo(full_path)
|
update_server.py | 25 full_path = os.path.join(path, 'appcfg.py') variable 26 if os.path.exists(full_path): 27 appcfg_path = full_path
|
/external/chromium_org/content/browser/download/ |
base_file_unittest.cc | 69 base::FilePath full_path = base_file_->full_path(); local 74 EXPECT_TRUE(base::ReadFileToString(full_path, &disk_data)); 82 EXPECT_EQ(expect_file_survives_, base::PathExists(full_path)); 154 file_name = file.full_path(); 236 EXPECT_EQ(base::FilePath().value(), base_file_->full_path().value()); 242 EXPECT_TRUE(base::PathExists(base_file_->full_path())); 244 EXPECT_FALSE(base::PathExists(base_file_->full_path())); 245 EXPECT_NE(base::FilePath().value(), base_file_->full_path().value()); 286 base::FilePath initial_path(base_file_->full_path()); [all...] |
download_file.h | 47 // Rename the download file to |full_path|. If that file exists 48 // |full_path| will be uniquified by suffixing " (<number>)" to the 50 virtual void RenameAndUniquify(const base::FilePath& full_path, 53 // Rename the download file to |full_path| and annotate it with 56 virtual void RenameAndAnnotate(const base::FilePath& full_path,
|
/external/v8/test/es5conform/ |
testcfg.py | 91 full_path = root_path + [file[:-3]] 92 full_path = [x for x in full_path if not (x in ['data', 'TestCases'])] 93 if self.Contains(path, full_path): 94 test = ES5ConformTestCase(join(root, file), full_path, self.context,
|
/external/chromium_org/tools/checkperms/ |
checkperms.py | 285 def has_executable_bit(full_path): 288 return bool(permission & os.stat(full_path).st_mode) 291 def has_shebang_or_is_elf(full_path): 294 full_path is the absolute path to the file. 296 with open(full_path, 'rb') as f: 312 full_path = os.path.join(root_path, rel_path) 314 bit = has_executable_bit(full_path) 324 return full_path 325 return '%s: Must have executable bit set' % full_path 330 return full_path [all...] |
/external/chromium/net/tools/crash_cache/ |
crash_cache.cc | 84 // Creates the destinaton folder for this run, and returns it on full_path. 86 FilePath* full_path) { 115 *full_path = path.AppendASCII(folders[action]); 117 if (file_util::PathExists(*full_path)) 120 return file_util::CreateDirectory(*full_path); 313 FilePath full_path; local 314 if (!CreateTargetFolder(path, action, &full_path)) { 325 return SimpleInsert(full_path, action, &cache_thread); 328 return LoadOperations(full_path, action, &cache_thread); 331 return SimpleRemove(full_path, action, &cache_thread) [all...] |
/external/chromium_org/net/tools/crash_cache/ |
crash_cache.cc | 90 // Creates the destinaton folder for this run, and returns it on full_path. 92 base::FilePath* full_path) { 121 *full_path = path.AppendASCII(folders[action]); 123 if (base::PathExists(*full_path)) 126 return base::CreateDirectory(*full_path); 326 base::FilePath full_path; local 327 if (!CreateTargetFolder(path, action, &full_path)) { 338 return SimpleInsert(full_path, action, &cache_thread); 341 return LoadOperations(full_path, action, &cache_thread); 344 return SimpleRemove(full_path, action, &cache_thread) [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/ |
loader.py | 241 def _match_path(self, path, full_path, pattern): 250 full_path = os.path.join(start_dir, path) 251 if os.path.isfile(full_path): 255 if not self._match_path(path, full_path, pattern): 258 name = self._get_name_from_path(full_path) 264 mod_file = os.path.abspath(getattr(module, '__file__', full_path)) 266 fullpath_noext = os.path.splitext(full_path)[0] 269 mod_name = os.path.splitext(os.path.basename(full_path))[0] 270 expected_dir = os.path.dirname(full_path) 275 elif os.path.isdir(full_path) [all...] |
/development/testrunner/test_defs/ |
native_test.py | 85 full_path = os.path.join(os.sep, "system", "bin", f) 89 "(cd /sdcard;%s)" % full_path, 100 adb.SendShellCommand("rm %s" % full_path) 141 full_path = os.path.join(path, binary) 142 if os.path.exists(full_path): 163 full_path = os.path.join(android_build.GetHostBin(), binary) 164 return run_command.RunHostCommand(full_path, valgrind=valgrind)
|
/external/chromium/chrome/browser/ |
platform_util_win.cc | 32 void ShowItemInFolder(const FilePath& full_path) { 33 FilePath dir = full_path.DirName(); 82 const_cast<wchar_t *>(full_path.value().c_str()), 106 << "(): Can't open full_path = \"" 107 << full_path.value() << "\"" 116 void OpenItem(const FilePath& full_path) { 117 app::win::OpenItemViaShell(full_path);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/ |
dump_reader_multipart.py | 98 full_path = self._host.filesystem.join(self._build_dir, binary) 99 if not self._host.filesystem.exists(full_path): 102 _log.error(' at %s' % full_path) 126 full_path = self._host.filesystem.join(self._build_dir, binary) 127 if self._host.filesystem.mtime(full_path) >= symbols_mtime: 136 full_path = self._host.filesystem.join(self._build_dir, binary) 139 '--binary=%s' % full_path,
|
/external/chromium_org/chrome/browser/ |
platform_util_win.cc | 33 void ShowItemInFolderOnFileThread(const base::FilePath& full_path) { 35 base::FilePath dir = full_path.DirName().AsEndingWithSeparator(); 84 const_cast<wchar_t *>(full_path.value().c_str()), 106 << "(): Can't open full_path = \"" 107 << full_path.value() << "\"" 169 void ShowItemInFolder(Profile* profile, const base::FilePath& full_path) { 176 base::Bind(&ShowItemInFolderOnFileThread, full_path)); 179 void OpenItem(Profile* profile, const base::FilePath& full_path) { 187 base::Bind(base::IgnoreResult(&ui::win::OpenItemViaShell), 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
|
download_item.cc | 278 platform_util::OpenItem(full_path()); 282 NewRunnableFunction(&platform_util::OpenItem, full_path())); 290 platform_util::ShowItemInFolder(full_path()); 295 full_path())); 465 void DownloadItem::Rename(const FilePath& full_path) { 467 << " full_path = \"" << full_path.value() << "\"" 469 DCHECK(!full_path.empty()); 470 full_path_ = full_path; 519 void DownloadItem::OnDownloadRenamedToFinalName(const FilePath& full_path) { [all...] |
/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/chrome/browser/search_engines/ |
template_url_parser_unittest.cc | 39 FilePath full_path; local 41 ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &full_path)); 42 full_path = full_path.AppendASCII("osdd"); 43 full_path = full_path.AppendASCII(file_name); 44 ASSERT_TRUE(file_util::PathExists(full_path)); 47 ASSERT_TRUE(file_util::ReadFileToString(full_path, &contents));
|