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

  /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/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/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/libpcap/
fad-win32.c 230 DWORD last_error = GetLastError(); local
232 if (last_error != ERROR_INSUFFICIENT_BUFFER)
  /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/chromium/base/
platform_file_win.cc 84 DWORD last_error = GetLastError(); local
85 switch (last_error) {
file_util_win.cc 194 DWORD last_error = ::GetLastError(); local
206 ::SetLastError(last_error);
    [all...]
  /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/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCStatement.java 120 conn.db.last_error() == SQLite.Constants.SQLITE_BUSY &&
JDBCConnection.java 129 if (dbx.last_error() != SQLite.Constants.SQLITE_BUSY ||
  /external/libvpx/libvpx/vp8/encoder/
ratectrl.c 1225 int last_error = INT_MAX; local
    [all...]
  /external/chromium/third_party/libevent/
evdns.c 343 last_error(int sock) function
377 #define last_error(sock) (errno) macro
    [all...]
  /external/javasqlite/src/main/java/SQLite/
Database.java 169 * the last_error() method.
200 * the last_error() method.
516 public int last_error() { method in class:Database
  /external/chromium/testing/gtest/src/
gtest-death-test.cc 287 const int last_error = errno; local
289 << GetLastErrnoDescription() << " [" << last_error << "]";
    [all...]
  /external/gtest/src/
gtest-death-test.cc 287 const int last_error = errno; local
289 << GetLastErrnoDescription() << " [" << last_error << "]";
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-death-test.cc 287 const int last_error = errno; local
289 << GetLastErrnoDescription() << " [" << last_error << "]";
    [all...]
  /external/llvm/utils/unittest/googletest/
gtest-death-test.cc 287 const int last_error = errno; local
289 << GetLastErrnoDescription() << " [" << last_error << "]";
    [all...]
  /external/open-vcdiff/gtest/src/
gtest-death-test.cc 274 const int last_error = errno; local
276 << GetLastErrnoDescription() << " [" << last_error << "]";
    [all...]
  /external/protobuf/gtest/src/
gtest-death-test.cc 274 const int last_error = errno; local
276 << GetLastErrnoDescription() << " [" << last_error << "]";
    [all...]
  /external/ceres-solver/internal/ceres/
gmock_gtest_all.cc     [all...]

Completed in 1413 milliseconds