HomeSort by relevance Sort by last modified time
    Searched full:last_error (Results 1 - 25 of 74) sorted by null

1 2 3

  /external/chromium_org/google_apis/gcm/engine/
connection_handler_impl.cc 139 int last_error = output_stream_->last_error(); local
142 if (last_error == net::OK)
143 last_error = net::ERR_FAILED;
144 connection_callback_.Run(last_error);
173 int last_error = output_stream_->last_error(); local
176 if (last_error == net::OK)
177 last_error = net::ERR_FAILED;
178 connection_callback_.Run(last_error);
226 int last_error = output_stream_->last_error(); local
    [all...]
connection_handler_impl_unittest.cc 116 int last_error() const { return last_error_; } function in class:gcm::__anon8490::GCMConnectionHandlerImplTest
270 EXPECT_EQ(net::ERR_FAILED, last_error());
290 EXPECT_EQ(net::ERR_TIMED_OUT, last_error());
315 EXPECT_EQ(net::ERR_TIMED_OUT, last_error());
334 EXPECT_EQ(net::ERR_TIMED_OUT, last_error());
524 EXPECT_EQ(net::ERR_TIMED_OUT, last_error());
558 EXPECT_EQ(net::OK, last_error());
624 EXPECT_EQ(net::ERR_CONNECTION_CLOSED, last_error());
  /external/elfutils/libasm/
asm_error.c 136 int last_error; local
157 last_error = *buffer;
160 last_error = global_error;
164 if (error == 0 && last_error == 0)
169 last_error = error;
171 if (last_error == ASM_E_LIBELF)
174 return _(msgs[last_error]);
  /external/elfutils/libdw/
dwarf_error.c 173 int last_error; local
182 last_error = (intptr_t) getspecific (key);
185 last_error = global_error;
188 return last_error != 0 ? _(errmsgs[last_error]) : NULL;
192 return _(errmsgs[error == -1 ? last_error : error]);
  /external/chromium_org/sandbox/win/src/
process_policy_test.cc 59 DWORD last_error = GetLastError(); local
60 if ((ERROR_NOT_ENOUGH_QUOTA == last_error) ||
61 (ERROR_ACCESS_DENIED == last_error) ||
62 (ERROR_FILE_NOT_FOUND == last_error)) {
85 DWORD last_error = GetLastError(); local
86 if ((ERROR_NOT_ENOUGH_QUOTA == last_error) ||
87 (ERROR_ACCESS_DENIED == last_error) ||
88 (ERROR_FILE_NOT_FOUND == last_error)) {
win_utils.cc 204 DWORD last_error = ::GetLastError(); local
205 if (0 == return_value && (ERROR_FILE_NOT_FOUND == last_error ||
206 ERROR_PATH_NOT_FOUND == last_error ||
207 ERROR_INVALID_NAME == last_error)) {
  /external/elfutils/libelf/
elf_error.c 360 int last_error; local
369 last_error = (intptr_t) getspecific (key);
372 last_error = global_error;
376 assert (msgidx[last_error] < sizeof (msgstr));
377 return last_error != 0 ? _(msgstr + msgidx[last_error]) : NULL;
382 assert (msgidx[error == -1 ? last_error : error] < sizeof (msgstr));
383 return _(msgstr + msgidx[error == -1 ? last_error : error]);
  /external/valgrind/main/gdbserver_tests/
mssnapshot.stderrB.exp 7 v.info last_error : show last error found
mchelp.stdoutB.exp 5 v.info last_error : show last error found
34 v.info last_error : show last error found
  /external/elfutils/libdwfl/
dwfl_error.c 197 int last_error; local
206 last_error = (intptr_t) getspecific (key);
209 last_error = global_error;
211 if (error == 0 && last_error == 0)
214 error = last_error;
  /external/chromium_org/chrome/service/cloud_print/
print_system_win.cc 233 DWORD last_error = GetLastError(); local
234 if (ERROR_INVALID_PARAMETER != last_error) {
236 DCHECK(last_error == ERROR_INSUFFICIENT_BUFFER);
  /external/chromium_org/win8/delegate_execute/
chrome_util.cc 68 DWORD last_error = ::GetLastError();
69 if (last_error != ERROR_FILE_NOT_FOUND) {
71 last_error);
  /external/chromium_org/tools/win/link_limiter/
limiter.cc 102 DWORD last_error = 0; local
108 last_error = GetLastError();
109 if (!ok && last_error == ERROR_INSUFFICIENT_BUFFER &&
113 } while (!ok && last_error == ERROR_INSUFFICIENT_BUFFER);
118 envvar_name.c_str(), ErrorMessageToString(last_error).c_str());
  /external/chromium_org/sandbox/win/sandbox_poc/
main_ui_window.cc 415 DWORD last_error = 0; local
416 while(last_error == ERROR_SUCCESS || last_error == ERROR_PIPE_LISTENING ||
417 last_error == ERROR_NO_DATA)
457 last_error = ERROR_SUCCESS;
459 last_error = GetLastError();
  /external/chromium_org/base/files/
file_win.cc 279 File::Error File::OSErrorToFileError(DWORD last_error) {
280 switch (last_error) {
310 last_error);
  /external/chromium_org/base/
platform_file_win.cc 289 PlatformFileError LastErrorToPlatformFileError(DWORD last_error) {
290 switch (last_error) {
320 last_error);
  /external/chromium_org/google_apis/gcm/base/
socket_stream.h 82 // Note: GetState() (and possibly last_error()) should be checked upon
94 net::Error last_error() const;
174 net::Error last_error() const;
socket_stream_unittest.cc 296 ASSERT_EQ(result, input_stream()->last_error());
305 ASSERT_EQ(net::ERR_CONNECTION_CLOSED, input_stream()->last_error());
393 ASSERT_EQ(result, output_stream()->last_error());
402 ASSERT_EQ(net::ERR_CONNECTION_CLOSED, output_stream()->last_error());
socket_stream.cc 142 net::Error SocketInputStream::last_error() const { function in class:gcm::SocketInputStream
289 net::Error SocketOutputStream::last_error() const { function in class:gcm::SocketOutputStream
  /external/chromium_org/chrome/browser/extensions/
extension_bindings_apitest.cc 42 test_data_dir_.AppendASCII("browsertest").AppendASCII("last_error")));
  /external/chromium/base/
platform_file_win.cc 84 DWORD last_error = GetLastError(); local
85 switch (last_error) {
  /libcore/luni/src/test/java/libcore/sqlite/
OldDatabaseTest.java 646 assertEquals(db.last_error(), Constants.SQLITE_OK);
652 assertEquals(db.last_error(),db.last_error());
653 assertEquals(db.last_error(),Constants.SQLITE_ERROR);
658 assertEquals(db.last_error(), Constants.SQLITE_OK);
662 assertEquals(Constants.SQLITE_ERROR,db.last_error());
681 assertEquals(db.last_error(), Constants.SQLITE_OK);
688 assertEquals(db.last_error(), Constants.SQLITE_ERROR);
691 .error_string(db.last_error()), errorString);
817 assertEquals(db.last_error(),Constants.SQLITE_OK)
    [all...]
  /external/chromium_org/third_party/leveldatabase/
env_chromium.cc 240 bool ShouldKeepTrying(base::PlatformFileError last_error) {
241 DCHECK_NE(last_error, base::PLATFORM_FILE_OK);
242 last_error_ = last_error;
758 DWORD last_error = GetLastError(); local
759 if (last_error == ERROR_FILE_NOT_FOUND)
761 return base::LastErrorToPlatformFileError(last_error);
771 DWORD last_error = GetLastError(); local
773 if (last_error != ERROR_NO_MORE_FILES)
774 return_value = base::LastErrorToPlatformFileError(last_error);
    [all...]
  /external/chromium_org/chrome/browser/storage_monitor/
image_capture_device_manager_unittest.mm 245 base::PlatformFileError last_error() const { return last_error_; }
380 EXPECT_EQ(base::PLATFORM_FILE_ERROR_NOT_FOUND, listener_.last_error());
392 ASSERT_EQ(base::PLATFORM_FILE_OK, listener_.last_error());
  /external/libpcap/
fad-win32.c 230 DWORD last_error = GetLastError(); local
232 if (last_error != ERROR_INSUFFICIENT_BUFFER)

Completed in 1342 milliseconds

1 2 3