HomeSort by relevance Sort by last modified time
    Searched refs:tmp_path (Results 1 - 12 of 12) sorted by null

  /external/chromium/base/
sys_info_unittest.cc 25 FilePath tmp_path; local
26 ASSERT_TRUE(file_util::GetTempDir(&tmp_path));
27 EXPECT_GT(base::SysInfo::AmountOfFreeDiskSpace(tmp_path), 0)
28 << tmp_path.value();
  /external/chromium_org/chrome/installer/util/
logging_installer.cc 124 base::FilePath tmp_path; local
125 ignore_result(PathService::Get(base::DIR_TEMP, &tmp_path));
126 return tmp_path.Append(kLogFilename);
  /external/chromium_org/base/
sys_info_unittest.cc 36 FilePath tmp_path; local
37 ASSERT_TRUE(base::GetTempDir(&tmp_path));
38 EXPECT_GT(base::SysInfo::AmountOfFreeDiskSpace(tmp_path), 0)
39 << tmp_path.value();
  /frameworks/native/cmds/dumpstate/
dumpstate.c 441 char path[PATH_MAX], tmp_path[PATH_MAX]; local
460 strlcpy(tmp_path, path, sizeof(tmp_path));
461 strlcat(tmp_path, ".tmp", sizeof(tmp_path));
462 gzip_pid = redirect_to_file(stdout, tmp_path, do_compress);
493 if (use_outfile && rename(tmp_path, path)) {
494 fprintf(stderr, "rename(%s, %s): %s\n", tmp_path, path, strerror(errno));
  /external/chromium_org/tools/gyp/pylib/gyp/
common.py 335 tmp_fd, self.tmp_path = tempfile.mkstemp(
343 os.unlink(self.tmp_path)
357 same = filecmp.cmp(self.tmp_path, filename, False)
365 os.unlink(self.tmp_path)
379 os.chmod(self.tmp_path, 0666 & ~umask)
385 os.rename(self.tmp_path, filename)
388 os.unlink(self.tmp_path)
  /external/chromium_org/chrome/browser/ui/views/
select_file_dialog_extension_browsertest.cc 95 base::FilePath tmp_path; variable
96 PathService::Get(base::DIR_TEMP, &tmp_path);
97 ASSERT_TRUE(tmp_dir_.CreateUniqueTempDirUnderPath(tmp_path));
  /external/chromium_org/chrome/browser/safe_browsing/
download_protection_service_unittest.cc 806 base::FilePath tmp_path(FILE_PATH_LITERAL("bla.tmp"));
818 EXPECT_CALL(item, GetFullPath()).WillRepeatedly(ReturnRef(tmp_path));
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapObexServer.java 265 String tmp_path = null; local
267 tmp_path = (String)request.getHeader(HeaderSet.NAME);
272 if (D) Log.d(TAG, "backup=" + backup + " create=" + create + " name=" + tmp_path);
280 if (tmp_path == null) {
283 current_path_tmp = current_path_tmp + "/" + tmp_path;
    [all...]
  /external/wpa_supplicant_8/src/utils/
wpa_debug.c 146 char *tmp2, *tmp_path, *fstype; local
149 tmp_path = strtok_r(NULL, " ", &tmp2);
152 path = tmp_path;
  /frameworks/compile/libbcc/gdb_plugin/
android-commands.py 220 tmp_path = os.path.join(self.temp_libdir, lib)
221 self.pull(remote_lib, tmp_path)
222 remote_hash = self._md5sum(tmp_path)
232 + "\t(" + remote_hash + ") " + tmp_path + " (from target) and\n " \
  /external/chromium_org/chrome/browser/chromeos/drive/
file_cache_unittest.cc 855 base::FilePath tmp_path; local
856 ASSERT_EQ(FILE_ERROR_OK, cache_->GetFile(id_tmp, &tmp_path));
876 EXPECT_FALSE(base::PathExists(tmp_path));
    [all...]
  /external/chromium_org/components/breakpad/app/
breakpad_linux.cc 634 base::FilePath tmp_path("/tmp");
635 PathService::Get(base::DIR_TEMP, &tmp_path);
637 base::FilePath dumps_path(tmp_path);
    [all...]

Completed in 735 milliseconds