HomeSort by relevance Sort by last modified time
    Searched refs:temp_file_ (Results 1 - 8 of 8) 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_ = base::OpenFile(temp_file_path_, "a");
39 if (!temp_file_) {
51 base::CloseFile(temp_file_);
56 return temp_file_ != NULL;
plugin_stream.h 136 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/third_party/webrtc/base/
filelock_unittest.cc 32 scoped_ptr<FileLock> lock(FileLock::TryLock(temp_file_.pathname()));
43 temp_file_ = Pathname(temp_dir_.pathname(), kLockFile);
55 Pathname temp_file_; member in class:rtc::FileLockTest
59 scoped_ptr<FileLock> lock(FileLock::TryLock(temp_file_.pathname()));
61 EXPECT_FALSE(Filesystem::IsAbsent(temp_file_.pathname()));
63 EXPECT_TRUE(Filesystem::IsAbsent(temp_file_.pathname()));
67 scoped_ptr<FileLock> lock(FileLock::TryLock(temp_file_.pathname()));
72 scoped_ptr<FileLock> lock1(FileLock::TryLock(temp_file_.pathname()));
75 scoped_ptr<FileLock> lock2(FileLock::TryLock(temp_file_.pathname()));
80 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 28 base::CreateTemporaryFileInDir(temp_dir_, &temp_file_);
94 base::FilePath temp_file_; member in class:__anon10300::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 base::FilePath short_temp_file(GetShortPathName(temp_file_));
168 { temp_file_, temp_subdir_file_, temp_subdir_, temp_dir_ };
206 // temp_file_, temp_subdir_file_, temp_subdir_ and temp_dir_ in that order.
209 // Get the short form of temp_file_ and use that to match.
210 base::FilePath short_temp_file(GetShortPathName(temp_file_));
222 { temp_file_, temp_subdir_file_, temp_subdir_, temp_dir_ }
    [all...]
  /external/chromium_org/base/win/
event_trace_consumer_unittest.cc 272 temp_file_ = temp_dir_.path().Append(L"test.etl");
276 EXPECT_TRUE(base::DeleteFile(temp_file_, false));
286 temp_file_.value().c_str());
310 HRESULT hr = consumer_.OpenFileSession(temp_file_.value().c_str());
320 base::DeleteFile(temp_file_, false);
339 FilePath temp_file_; member in class:base::win::__anon7187::EtwTraceConsumerDataTest
  /external/chromium_org/v8/test/cctest/
test-log.cc 61 temp_file_(NULL),
73 if (temp_file_ != NULL) fclose(temp_file_);
83 temp_file_ = logger_->TearDown();
84 CHECK_NE(NULL, temp_file_);
85 fflush(temp_file_);
86 rewind(temp_file_);
87 return temp_file_;
101 FILE* temp_file_; member in class:__anon21174::ScopedLoggerInitializer

Completed in 740 milliseconds