Searched defs:last_error (Results 1 - 14 of 14) sorted by relevance

/external/elfutils/libasm/
H A Dasm_error.c136 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/
H A Ddwarf_error.c173 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/
H A Ddwfl_error.c197 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/libpcap/
H A Dfad-win32.c230 DWORD last_error = GetLastError(); local
232 if (last_error != ERROR_INSUFFICIENT_BUFFER)
/external/chromium/base/
H A Dplatform_file_win.cc84 DWORD last_error = GetLastError(); local
85 switch (last_error) {
H A Dfile_util_win.cc194 DWORD last_error = ::GetLastError(); local
206 ::SetLastError(last_error);
/external/elfutils/libelf/
H A Delf_error.c360 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/libvpx/vp8/encoder/
H A Dratectrl.c1321 int last_error = INT_MAX; local
1351 if ((target_bits_per_mb - bits_per_mb_at_this_q) <= last_error)
1359 last_error = bits_per_mb_at_this_q - target_bits_per_mb;
/external/javasqlite/src/main/java/SQLite/
H A DDatabase.java169 * the last_error() method.
200 * the last_error() method.
516 public int last_error() { method in class:Database
/external/protobuf/gtest/src/
H A Dgtest-death-test.cc274 const int last_error = errno; local
276 << GetLastErrnoDescription() << " [" << last_error << "]";
/external/chromium/testing/gtest/src/
H A Dgtest-death-test.cc287 const int last_error = errno; local
289 << GetLastErrnoDescription() << " [" << last_error << "]";
/external/gtest/src/
H A Dgtest-death-test.cc287 const int last_error = errno; local
289 << GetLastErrnoDescription() << " [" << last_error << "]";
/external/llvm/utils/unittest/googletest/
H A Dgtest-death-test.cc287 const int last_error = errno; local
289 << GetLastErrnoDescription() << " [" << last_error << "]";
/external/chromium/third_party/libevent/
H A Devdns.c343 last_error(int sock) function
377 #define last_error(sock) (errno) macro
1178 int err = last_error(ns->socket);
1207 int err = last_error(s->socket);
1226 int err = last_error(port->socket);
1739 int sock_err = last_error(port->socket);
1925 int err = last_error(server->socket);

Completed in 862 milliseconds