HomeSort by relevance Sort by last modified time
    Searched refs:kInvalidPlatformFileValue (Results 1 - 25 of 119) sorted by null

1 2 3 4 5

  /external/chromium_org/base/files/
scoped_platform_file_closer.cc 11 if (file && *file != kInvalidPlatformFileValue)
memory_mapped_file_posix.cc 18 : file_(kInvalidPlatformFileValue),
27 if (fstat(file_, &file_stat) == kInvalidPlatformFileValue) {
46 if (file_ != kInvalidPlatformFileValue)
51 file_ = kInvalidPlatformFileValue;
memory_mapped_file.cc 50 if (file_ == kInvalidPlatformFileValue) {
file_util_proxy_unittest.cc 28 file_(kInvalidPlatformFileValue),
38 if (file_ != kInvalidPlatformFileValue)
90 if (file_ != kInvalidPlatformFileValue)
96 EXPECT_NE(kInvalidPlatformFileValue, file_);
130 EXPECT_NE(kInvalidPlatformFileValue, file_);
149 EXPECT_NE(kInvalidPlatformFileValue, file_);
161 EXPECT_EQ(kInvalidPlatformFileValue, file_);
194 EXPECT_NE(kInvalidPlatformFileValue, file_);
214 file_ = kInvalidPlatformFileValue;
  /external/chromium_org/chrome/common/media_galleries/
picasa_types.cc 30 *platform_file = base::kInvalidPlatformFileValue;
48 : indicator_file(base::kInvalidPlatformFileValue),
49 category_file(base::kInvalidPlatformFileValue),
50 date_file(base::kInvalidPlatformFileValue),
51 filename_file(base::kInvalidPlatformFileValue),
52 name_file(base::kInvalidPlatformFileValue),
53 token_file(base::kInvalidPlatformFileValue),
54 uid_file(base::kInvalidPlatformFileValue) {
  /external/chromium_org/chrome/browser/chromeos/drive/
local_file_reader.cc 33 DCHECK_EQ(base::kInvalidPlatformFileValue, *platform_file);
42 if (file == base::kInvalidPlatformFileValue) {
67 DCHECK_NE(base::kInvalidPlatformFileValue, platform_file);
74 // Or, if |platform_file| is kInvalidPlatformFileValue, does nothing.
78 if (platform_file != base::kInvalidPlatformFileValue) {
92 platform_file_(base::kInvalidPlatformFileValue) {
104 platform_file_ = base::kInvalidPlatformFileValue;
118 platform_file_(base::kInvalidPlatformFileValue),
131 DCHECK_EQ(base::kInvalidPlatformFileValue, platform_file_);
150 DCHECK_NE(base::kInvalidPlatformFileValue, platform_file_)
    [all...]
  /external/chromium_org/base/
platform_file.cc 25 return kInvalidPlatformFileValue;
platform_file_win.cc 97 if (file != kInvalidPlatformFileValue)
107 if (file == kInvalidPlatformFileValue)
124 if (file == kInvalidPlatformFileValue || offset < 0)
137 if (file == kInvalidPlatformFileValue)
173 if (file == kInvalidPlatformFileValue)
202 if (file == kInvalidPlatformFileValue)
228 return ((file != kInvalidPlatformFileValue) && ::FlushFileBuffers(file));
234 if (file == kInvalidPlatformFileValue)
platform_file_unittest.cc 42 EXPECT_EQ(base::kInvalidPlatformFileValue, file);
53 EXPECT_NE(base::kInvalidPlatformFileValue, file);
65 EXPECT_NE(base::kInvalidPlatformFileValue, file);
76 EXPECT_EQ(base::kInvalidPlatformFileValue, file);
87 EXPECT_NE(base::kInvalidPlatformFileValue, file);
101 EXPECT_NE(base::kInvalidPlatformFileValue, file);
123 EXPECT_NE(base::kInvalidPlatformFileValue, file);
135 EXPECT_NE(base::kInvalidPlatformFileValue, file);
155 EXPECT_NE(base::kInvalidPlatformFileValue, file);
233 EXPECT_NE(base::kInvalidPlatformFileValue, file)
    [all...]
platform_file.h 119 const PlatformFile kInvalidPlatformFileValue = INVALID_HANDLE_VALUE;
123 const PlatformFile kInvalidPlatformFileValue = -1;
230 // if (file != kInvalidPlatformFileValue)
244 *value_ = kInvalidPlatformFileValue;
  /external/chromium_org/chrome/browser/extensions/api/serial/
serial_connection.cc 32 file_(base::kInvalidPlatformFileValue) {
55 if (file_ == base::kInvalidPlatformFileValue) {
62 if (file_ != base::kInvalidPlatformFileValue) {
64 file_ = base::kInvalidPlatformFileValue;
  /external/chromium_org/webkit/glue/
webfileutilities_impl.cc 60 return base::kInvalidPlatformFileValue;
72 if (handle == base::kInvalidPlatformFileValue)
75 handle = base::kInvalidPlatformFileValue;
81 if (handle == base::kInvalidPlatformFileValue || !data || length <= 0)
  /external/chromium_org/net/disk_cache/simple/
simple_test_util.cc 22 if (base::kInvalidPlatformFileValue == entry_file)
  /external/chromium_org/content/renderer/pepper/
ppb_broker_impl.cc 34 pipe_handle_(PlatformFileToInt(base::kInvalidPlatformFileValue)),
46 pipe_handle_ = PlatformFileToInt(base::kInvalidPlatformFileValue);
100 if (pipe_handle_ == PlatformFileToInt(base::kInvalidPlatformFileValue))
115 PlatformFileToInt(base::kInvalidPlatformFileValue));
117 handle == PlatformFileToInt(base::kInvalidPlatformFileValue));
  /external/chromium_org/courgette/
memory_allocator.cc 18 TempFile::TempFile() : file_(base::kInvalidPlatformFileValue) {
28 file_ = base::kInvalidPlatformFileValue;
33 DCHECK(file_ == base::kInvalidPlatformFileValue);
45 if (file_ == base::kInvalidPlatformFileValue)
52 return file_ != base::kInvalidPlatformFileValue;
  /external/chromium/webkit/glue/
webfileutilities_impl.cc 108 return base::kInvalidPlatformFileValue;
119 if (handle == base::kInvalidPlatformFileValue)
122 handle = base::kInvalidPlatformFileValue;
128 if (handle == base::kInvalidPlatformFileValue)
136 if (handle == base::kInvalidPlatformFileValue || offset < 0)
145 if (handle == base::kInvalidPlatformFileValue || !data || length <= 0)
156 if (handle == base::kInvalidPlatformFileValue || !data || length <= 0)
  /external/chromium_org/net/base/
file_stream_context.cc 41 : file(base::kInvalidPlatformFileValue) {
54 if (file_ != base::kInvalidPlatformFileValue)
59 } else if (file_ != base::kInvalidPlatformFileValue) {
88 if (file_ == base::kInvalidPlatformFileValue) {
101 if (file_ != base::kInvalidPlatformFileValue) {
103 file_ = base::kInvalidPlatformFileValue;
193 if (file == base::kInvalidPlatformFileValue)
207 if (file_ == base::kInvalidPlatformFileValue)
217 if (file_ == base::kInvalidPlatformFileValue) {
225 file_ = base::kInvalidPlatformFileValue;
    [all...]
  /external/chromium/base/
platform_file.h 25 const PlatformFile kInvalidPlatformFileValue = INVALID_HANDLE_VALUE;
28 const PlatformFile kInvalidPlatformFileValue = -1;
152 // if (file != kInvalidPlatformFileValue)
166 *value_ = kInvalidPlatformFileValue;
platform_file_win.cc 81 if (file != kInvalidPlatformFileValue)
114 if (file == kInvalidPlatformFileValue)
136 if (file == kInvalidPlatformFileValue)
155 if (file == kInvalidPlatformFileValue)
181 return ((file != kInvalidPlatformFileValue) && ::FlushFileBuffers(file));
187 if (file == kInvalidPlatformFileValue)
platform_file_unittest.cc 71 EXPECT_EQ(base::kInvalidPlatformFileValue, file);
80 EXPECT_NE(base::kInvalidPlatformFileValue, file);
90 EXPECT_NE(base::kInvalidPlatformFileValue, file);
99 EXPECT_EQ(base::kInvalidPlatformFileValue, file);
108 EXPECT_NE(base::kInvalidPlatformFileValue, file);
122 EXPECT_NE(base::kInvalidPlatformFileValue, file);
140 EXPECT_NE(base::kInvalidPlatformFileValue, file);
212 EXPECT_NE(base::kInvalidPlatformFileValue, file);
261 EXPECT_NE(base::kInvalidPlatformFileValue, file);
  /external/chromium_org/chrome/renderer/spellchecker/
hunspell_engine.cc 41 : file_(base::kInvalidPlatformFileValue),
134 if (file_ != base::kInvalidPlatformFileValue)
141 return file_ != base::kInvalidPlatformFileValue;
cocoa_spelling_engine_mac.cc 17 DCHECK(bdict_file == base::kInvalidPlatformFileValue);
  /external/chromium_org/ipc/
ipc_platform_file.h 27 return base::kInvalidPlatformFileValue;
  /external/chromium_org/content/renderer/
mhtml_generator.cc 17 file_(base::kInvalidPlatformFileValue) {
45 file_ = base::kInvalidPlatformFileValue;
  /external/chromium_org/ppapi/proxy/
ppb_broker_proxy.cc 60 socket_handle_(base::kInvalidPlatformFileValue) {
64 socket_handle_ = base::kInvalidPlatformFileValue;
87 if (socket_handle_ == base::kInvalidPlatformFileValue)
96 DCHECK(socket_handle_ == base::kInvalidPlatformFileValue);
200 int32_t socket_handle = PlatformFileToInt(base::kInvalidPlatformFileValue);
205 socket_handle == PlatformFileToInt(base::kInvalidPlatformFileValue));

Completed in 326 milliseconds

1 2 3 4 5