Searched refs:last_error (Results 1 - 25 of 40) sorted by relevance

12

/external/elfutils/libasm/
H A Dasm_error.c80 int last_error = global_error; local
84 if (error == 0 && last_error == 0)
89 last_error = error;
91 if (last_error == ASM_E_LIBELF)
94 return _(msgs[last_error]);
/external/libtextclassifier/common/
H A Dmmap.cc48 const std::string last_error = GetLastSystemError(); local
49 TC_LOG(ERROR) << "Error closing file descriptor: " << last_error;
63 const std::string last_error = GetLastSystemError(); local
64 TC_LOG(ERROR) << "Error opening " << filename << ": " << last_error; local
80 const std::string last_error = GetLastSystemError(); local
81 TC_LOG(ERROR) << "Unable to stat fd: " << last_error;
111 const std::string last_error = GetLastSystemError(); local
112 TC_LOG(ERROR) << "Error while mmaping: " << last_error;
125 const std::string last_error = GetLastSystemError(); local
126 TC_LOG(ERROR) << "Error during Unmap / munmap: " << last_error;
[all...]
/external/elfutils/libdw/
H A Ddwarf_error.c114 int last_error = global_error; local
117 return last_error != 0 ? _(errmsgs[last_error]) : NULL;
121 return _(errmsgs[error == -1 ? last_error : error]);
/external/elfutils/libelf/
H A Delf_error.c338 int last_error = global_error; local
342 assert (msgidx[last_error] < sizeof (msgstr));
343 return last_error != 0 ? _(msgstr + msgidx[last_error]) : NULL;
348 assert (msgidx[error == -1 ? last_error : error] < sizeof (msgstr));
349 return _(msgstr + msgidx[error == -1 ? last_error : error]);
/external/elfutils/libdwfl/
H A Ddwfl_error.c145 int last_error = global_error; local
147 if (error == 0 && last_error == 0)
150 error = last_error;
/external/autotest/client/site_tests/video_VEAPerf/
H A Dvideo_VEAPerf.py232 last_error = None
249 except Exception as last_error:
251 logging.exception(last_error)
257 if last_error:
258 raise last_error
/external/autotest/client/site_tests/video_VDAPerf/
H A Dvideo_VDAPerf.py294 last_error = None
304 except Exception as last_error:
306 logging.exception(last_error)
310 if last_error:
/external/libmojo/mojo/public/cpp/bindings/lib/
H A Dvalidation_errors.h85 ValidationError last_error() const { return last_error_; } function in class:mojo::internal::ValidationErrorObserverForTesting
/external/autotest/client/site_tests/video_VideoDecodeMemoryUsage/
H A Dvideo_VideoDecodeMemoryUsage.py365 last_error = None
379 except Exception as last_error:
383 if last_error:
384 raise # the last_error
/external/valgrind/gdbserver_tests/
H A Dmssnapshot.stderrB.exp7 v.info last_error : show last error found
H A Dmchelp.stdoutB.exp5 v.info last_error : show last error found
62 v.info last_error : show last error found
/external/libchrome/base/files/
H A Dfile.h298 static Error OSErrorToFileError(DWORD last_error);
/external/libcups/cups/
H A Dcups-private.h132 ipp_status_t last_error; /* Last IPP error */ member in struct:_cups_globals_s
H A Drequest.c481 return (_cupsGlobals()->last_error);
1081 cg->last_error = status;
1108 DEBUG_printf(("4_cupsSetError: last_error=%s, last_status_message=\"%s\"",
1109 ippErrorString(cg->last_error), cg->last_status_message));
H A Dutil.c673 if (n == 0 && cg->last_error >= IPP_STATUS_ERROR_BAD_REQUEST)
875 cancel_status = cg->last_error;
881 cg->last_error = cancel_status;
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_win.cc544 fd_t OpenFile(const char *filename, FileAccessMode mode, error_t *last_error) { argument
559 if (res == kInvalidFd && last_error)
560 *last_error = GetLastError();
/external/libmojo/mojo/public/cpp/bindings/tests/
H A Dvalidation_unittest.cc182 if (observer.last_error() == mojo::internal::VALIDATION_ERROR_NONE)
185 result = mojo::internal::ValidationErrorToString(observer.last_error());
/external/google-breakpad/src/third_party/libdisasm/swig/
H A Dlibdisasm.i374 enum x86_report_codes last_error;
384 dis->last_error = code;
H A Dlibdisasm_oop.i811 enum x86_report_codes last_error;
858 dis->last_error = code;
/external/javasqlite/src/main/java/SQLite/JDBC2z/
H A DJDBCStatement.java120 conn.db.last_error() == SQLite.Constants.SQLITE_BUSY &&
/external/libchrome/base/
H A Dlogging.cc871 DWORD last_error = err_; local
872 base::debug::Alias(&last_error);
/external/protobuf/gtest/src/
H A Dgtest-death-test.cc274 const int last_error = errno; local
276 << GetLastErrnoDescription() << " [" << last_error << "]";
/external/ImageMagick/MagickCore/
H A Dnt-base.c947 last_error[MagickPathExtent];
952 *last_error='\0';
955 (void) CopyMagickString(last_error,error,MagickPathExtent);
957 return(last_error);
929 last_error[MagickPathExtent]; local
/external/libpcap/
H A Dpcap-win32.c1448 DWORD last_error = GetLastError(); local
1450 if (last_error != ERROR_INSUFFICIENT_BUFFER)
1452 pcap_win32_err_to_str(last_error, our_errbuf);
/external/libvpx/libvpx/vp8/encoder/
H A Dratectrl.c1157 int last_error = INT_MAX; local
1195 if ((target_bits_per_mb - bits_per_mb_at_this_q) <= last_error) {
1203 last_error = bits_per_mb_at_this_q - target_bits_per_mb;

Completed in 887 milliseconds

12