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

  /external/chromium_org/content/child/npapi/
plugin_stream_posix.cc 17 temp_file_ = NULL;
30 return fwrite(buf, sizeof(char), length, temp_file_);
34 DCHECK_EQ(static_cast<FILE*>(NULL), temp_file_); local
37 temp_file_ = file_util::OpenFile(temp_file_path_, "a");
39 if (!temp_file_) {
51 file_util::CloseFile(temp_file_);
56 return temp_file_ != NULL;
plugin_stream.h 147 FILE* temp_file_; member in class:content::PluginStream
  /external/chromium_org/third_party/libjingle/source/talk/base/
filelock_unittest.cc 49 scoped_ptr<FileLock> lock(FileLock::TryLock(temp_file_.pathname()));
60 temp_file_ = Pathname(temp_dir_.pathname(), kLockFile);
72 Pathname temp_file_; member in class:talk_base::FileLockTest
76 scoped_ptr<FileLock> lock(FileLock::TryLock(temp_file_.pathname()));
78 EXPECT_FALSE(Filesystem::IsAbsent(temp_file_.pathname()));
80 EXPECT_TRUE(Filesystem::IsAbsent(temp_file_.pathname()));
84 scoped_ptr<FileLock> lock(FileLock::TryLock(temp_file_.pathname()));
89 scoped_ptr<FileLock> lock1(FileLock::TryLock(temp_file_.pathname()));
92 scoped_ptr<FileLock> lock2(FileLock::TryLock(temp_file_.pathname()));
97 scoped_ptr<FileLock> lock(FileLock::TryLock(temp_file_.pathname()))
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/page_capture/
page_capture_apitest.cc 36 temp_file_ = temp_file;
39 base::FilePath temp_file_; member in class:PageCaptureSaveAsMHTMLDelegate
47 ASSERT_FALSE(delegate.temp_file_.empty());
51 ASSERT_FALSE(base::PathExists(delegate.temp_file_));
  /external/chromium_org/chrome/installer/util/
delete_after_reboot_helper_unittest.cc 29 file_util::CreateTemporaryFileInDir(temp_dir_, &temp_file_);
95 base::FilePath temp_file_; member in class:__anon9244::DeleteAfterRebootHelperTest
152 // temp_file_, temp_subdir_file_, temp_subdir_ and temp_dir_ in that order.
155 // Get the short form of temp_file_ and use that to match.
156 std::wstring short_temp_file(GetShortPathName(temp_file_.value().c_str()));
167 { temp_file_, temp_subdir_file_, temp_subdir_, temp_dir_ };
204 // temp_file_, temp_subdir_file_, temp_subdir_ and temp_dir_ in that order.
207 // Get the short form of temp_file_ and use that to match.
208 std::wstring short_temp_file(GetShortPathName(temp_file_.value().c_str()));
219 { temp_file_, temp_subdir_file_, temp_subdir_, temp_dir_ }
    [all...]
  /external/chromium/base/win/
event_trace_consumer_unittest.cc 260 ASSERT_TRUE(file_util::CreateTemporaryFile(&temp_file_));
264 EXPECT_TRUE(file_util::Delete(temp_file_, false));
274 temp_file_.value().c_str());
298 HRESULT hr = consumer_.OpenFileSession(temp_file_.value().c_str());
308 file_util::Delete(temp_file_, false);
326 FilePath temp_file_; member in class:__anon4235::EtwTraceConsumerDataTest
  /external/chromium_org/base/win/
event_trace_consumer_unittest.cc 290 temp_file_ = temp_dir_.path().Append(L"test.etl");
294 EXPECT_TRUE(base::DeleteFile(temp_file_, false));
304 temp_file_.value().c_str());
328 HRESULT hr = consumer_.OpenFileSession(temp_file_.value().c_str());
338 base::DeleteFile(temp_file_, false);
357 FilePath temp_file_; member in class:base::win::__anon6418::EtwTraceConsumerDataTest
  /external/chromium_org/v8/test/cctest/
test-log.cc 63 temp_file_(NULL),
75 if (temp_file_ != NULL) fclose(temp_file_);
86 temp_file_ = logger_->TearDown();
87 CHECK_NE(NULL, temp_file_);
88 fflush(temp_file_);
89 rewind(temp_file_);
90 return temp_file_;
105 FILE* temp_file_; member in class:__anon17113::ScopedLoggerInitializer
  /external/v8/test/cctest/
test-log.cc 36 temp_file_(NULL),
47 if (temp_file_ != NULL) fclose(temp_file_);
57 temp_file_ = LOGGER->TearDown();
58 CHECK_NE(NULL, temp_file_);
59 fflush(temp_file_);
60 rewind(temp_file_);
61 return temp_file_;
78 FILE* temp_file_; member in class:__anon28814::ScopedLoggerInitializer

Completed in 126 milliseconds