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

1 2

  /external/elfutils/libasm/
asm_error.c 80 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/
mmap.cc 48 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/
dwarf_error.c 114 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/
elf_error.c 338 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/
dwfl_error.c 145 int last_error = global_error; local
147 if (error == 0 && last_error == 0)
150 error = last_error;
  /external/libpcap/
fad-win32.c 151 DWORD last_error = GetLastError(); local
153 if (last_error != ERROR_INSUFFICIENT_BUFFER)
  /external/libmojo/mojo/public/cpp/bindings/lib/
validation_errors.h 85 ValidationError last_error() const { return last_error_; } function in class:mojo::internal::ValidationErrorObserverForTesting
  /external/autotest/client/site_tests/video_VEAPerf/
video_VEAPerf.py 234 last_error = None
251 except Exception as last_error:
253 logging.exception(last_error)
259 if last_error:
260 raise last_error
  /external/autotest/client/site_tests/video_VDAPerf/
video_VDAPerf.py 285 last_error = None
295 except Exception as last_error:
297 logging.exception(last_error)
301 if last_error:
  /external/autotest/client/site_tests/video_VideoDecodeMemoryUsage/
video_VideoDecodeMemoryUsage.py 363 last_error = None
375 except Exception as last_error:
379 if last_error:
380 raise # the last_error
  /external/valgrind/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
59 v.info last_error : show last error found
  /external/libchrome/base/files/
file.h 298 static Error OSErrorToFileError(DWORD last_error);
  /external/libcups/cups/
cups-private.h 132 ipp_status_t last_error; /* Last IPP error */ member in struct:_cups_globals_s
request.c 481 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));
util.c 673 if (n == 0 && cg->last_error >= IPP_STATUS_ERROR_BAD_REQUEST)
875 cancel_status = cg->last_error;
881 cg->last_error = cancel_status;
  /frameworks/native/libs/vr/libbufferhubqueue/
buffer_hub_queue_client.cpp 510 int last_error = 0; local
533 last_error = ret;
541 last_error = ret;
551 return ErrorStatus(-last_error);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_win.cc 544 fd_t OpenFile(const char *filename, FileAccessMode mode, error_t *last_error) {
559 if (res == kInvalidFd && last_error)
560 *last_error = GetLastError();
  /external/autotest/server/hosts/
cros_repair.py 185 # "last_error": 0,
204 'last_error=%d.' % tpm['last_error']))
  /external/google-breakpad/src/third_party/libdisasm/swig/
libdisasm.i 374 enum x86_report_codes last_error;
384 dis->last_error = code;
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCStatement.java 120 conn.db.last_error() == SQLite.Constants.SQLITE_BUSY &&
  /external/libchrome/base/
logging.cc 871 DWORD last_error = err_; local
872 base::debug::Alias(&last_error);
  /external/libmojo/mojo/public/cpp/bindings/tests/
validation_unittest.cc 182 if (observer.last_error() == mojo::internal::VALIDATION_ERROR_NONE)
185 result = mojo::internal::ValidationErrorToString(observer.last_error());
  /external/ImageMagick/MagickCore/
nt-base.c 947 last_error[MagickPathExtent];
952 *last_error='\0';
955 (void) CopyMagickString(last_error,error,MagickPathExtent);
957 return(last_error);
929 last_error[MagickPathExtent]; local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
ratectrl.c 1157 int last_error = INT_MAX; local
    [all...]

Completed in 1027 milliseconds

1 2