HomeSort by relevance Sort by last modified time
    Searched full:errnum (Results 26 - 50 of 353) sorted by null

12 3 4 5 6 7 8 91011>>

  /libnativehelper/include/nativehelper/
JNIHelp.h 76 int jniThrowIOException(C_JNIEnv* env, int errnum);
80 * value 'errnum'. The returned pointer may or may not be equal to 'buf'.
84 const char* jniStrError(int errnum, char* buf, size_t buflen);
151 inline int jniThrowIOException(JNIEnv* env, int errnum) {
152 return jniThrowIOException(&env->functions, errnum);
  /external/conscrypt/src/openjdk/native/
JNIHelp.h 76 int jniThrowIOException(JNIEnv* env, int errnum);
80 * value 'errnum'. The returned pointer may or may not be equal to 'buf'.
84 const char* jniStrError(int errnum, char* buf, size_t buflen);
  /external/bison/lib/
error.h 39 if ERRNUM is nonzero, follow it with ": " and strerror (ERRNUM).
strerror-override.c 32 /* If ERRNUM maps to an errno value defined by gnulib, return a string
35 strerror_override (int errnum)
38 switch (errnum)
  /external/zlib/src/contrib/iostream2/
zstream.h 92 * given compressed file. errnum is set to zlib error number. If an
94 * errnum is set to Z_ERRNO and the application may consult errno
97 const char* error(int* errnum) {
98 return ::gzerror(m_fp, errnum);
225 * given compressed file. errnum is set to zlib error number. If an
227 * errnum is set to Z_ERRNO and the application may consult errno
230 const char* error(int* errnum) {
231 return ::gzerror(m_fp, errnum);
  /frameworks/compile/mclinker/lib/Support/Unix/
System.inc 23 char* strerror(int errnum) {
24 return std::strerror(errnum);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
error.h 29 if ERRNUM is nonzero, follow it with ": " and strerror (ERRNUM).
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
error.h 29 if ERRNUM is nonzero, follow it with ": " and strerror (ERRNUM).
  /external/jemalloc/include/jemalloc/internal/
util.h 134 void set_errno(int errnum);
320 set_errno(int errnum)
324 SetLastError(errnum);
326 errno = errnum;
  /external/libxml2/win32/wince/
wincecompat.h 40 char *strerror(int errnum);
  /system/extras/perfprofd/quipper/original-kernel-headers/tools/perf/util/
target.h 47 int perf_target__strerror(struct perf_target *target, int errnum, char *buf,
  /external/elfutils/libdwfl/
argp-std.c 106 inline void failure (Dwfl *dwfl, int errnum, const char *msg)
110 if (errnum == -1)
114 argp_failure (state, EXIT_FAILURE, errnum, "%s", msg);
116 inline error_t fail (Dwfl *dwfl, int errnum, const char *msg)
118 failure (dwfl, errnum, msg);
119 return errnum == -1 ? EIO : errnum;
  /libnativehelper/
JNIHelp.cpp 269 int jniThrowIOException(C_JNIEnv* env, int errnum) {
271 const char* message = jniStrError(errnum, buffer, sizeof(buffer));
308 const char* jniStrError(int errnum, char* buf, size_t buflen) {
311 // char *strerror_r(int errnum, char *buf, size_t n);
312 return strerror_r(errnum, buf, buflen);
314 int rc = strerror_r(errnum, buf, buflen);
319 snprintf(buf, buflen, "errno %d", errnum);
  /external/libmicrohttpd/src/platform/
w32functions.c 102 * Return pointer to string description of errnum error
105 * @param errnum the errno or value from MHD_W32_errno_from_winsock_()
108 const char* MHD_W32_strerror_(int errnum)
110 switch(errnum)
187 return strerror(errnum);
396 * @param errnum the errno value to set
398 void MHD_W32_set_last_winsock_error_(int errnum)
400 switch (errnum)
  /external/webrtc/webrtc/modules/video_capture/mac/qtkit/
video_capture_qtkit_info.mm 54 int errNum = [[_captureInfo getDeviceNamesFromIndex:deviceNumber
60 return errNum;
  /external/freetype/src/gzip/
zutil.h 150 # define zstrerror(errnum) strerror(errnum)
152 # define zstrerror(errnum) ""
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/gzip/
zutil.h 150 # define zstrerror(errnum) strerror(errnum)
152 # define zstrerror(errnum) ""
  /external/opencv3/3rdparty/openexr/Iex/
IexThrowErrnoExc.h 54 // error code errnum. The exception text is initialized with a copy
90 void throwErrnoExc (const std::string &txt, int errnum);
91 void throwErrnoExc (const std::string &txt = "%T." /*, int errnum = oserror() */);
  /libcore/ojluni/src/main/native/
UNIXProcess_md.c 483 throwIOException(JNIEnv *env, int errnum, const char *defaultDetail)
490 if (errnum != 0) {
491 const char *s = strerror(errnum);
496 size_t newsize = strlen(format) + strlen(detail) + 3 * sizeof(errnum);
498 snprintf(errmsg, newsize, format, errnum, detail);
775 int errnum = errno; local
776 restartableWrite(FAIL_FILENO, &errnum, sizeof(errnum));
842 int errnum; local
915 switch (readFully(fail[0], &errnum, sizeof(errnum)))
    [all...]
  /external/compiler-rt/lib/profile/
GCDAProfiling.c 217 int errnum = errno; local
219 strerror(errnum));
227 int errnum = errno; local
229 strerror(errnum));
268 int errnum = errno; local
270 strerror(errnum));
  /external/opencv3/modules/videoio/src/
cap_ximea.cpp 27 void errMsg(const char* msg, int errNum);
342 void CvCaptureCAM_XIMEA::errMsg(const char* msg, int errNum)
346 sprintf( buf, "%s : %d\n", msg, errNum);
349 fprintf(stderr, "%s : %d\n", msg, errNum);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/
error.h 45 const char *snd_strerror(int errnum);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/
error.h 45 const char *snd_strerror(int errnum);
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/
sslproxy_test.py 154 def verify_cb(self, conn, cert, errnum, depth, ok):
160 errnum: possible error number
  /toolchain/binutils/binutils-2.25/libiberty/testsuite/
test-strtol.c 78 int errnum; member in struct:test_data_t
163 if (saved_errno != test_data[i].errnum)

Completed in 2902 milliseconds

12 3 4 5 6 7 8 91011>>