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

12 3 4 5 6

  /external/capstone/arch/X86/
X86Module.c 60 handle->errnum = CS_ERR_OPTION;
76 handle->errnum = CS_ERR_X86_ATT;
80 handle->errnum = CS_ERR_DIET;
  /external/libbrillo/brillo/errors/
error_codes.cc 32 int errnum; member in struct:brillo::errors::system::__anon24082::ErrorMapEntry
188 // by increasing errnum values which is the same order used in the header
195 std::string ErrorCodeFromSystemError(int errnum) {
198 if (entry.errnum == errnum) {
210 int errnum) {
211 std::string message = base::safe_strerror(errnum);
212 std::string code = ErrorCodeFromSystemError(errnum);
214 message = "Unknown error " + std::to_string(errnum);
217 code = "error_" + std::to_string(errnum);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
Errno.h 30 /// Like the no-argument version above, but uses \p errnum instead of errno.
31 std::string StrError(int errnum);
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
Errno.h 30 /// Like the no-argument version above, but uses \p errnum instead of errno.
31 std::string StrError(int errnum);
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
Errno.h 30 /// Like the no-argument version above, but uses \p errnum instead of errno.
31 std::string StrError(int errnum);
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
Errno.h 30 /// Like the no-argument version above, but uses \p errnum instead of errno.
31 std::string StrError(int errnum);
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/
Errno.h 30 /// Like the no-argument version above, but uses \p errnum instead of errno.
31 std::string StrError(int errnum);
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/
Errno.h 30 /// Like the no-argument version above, but uses \p errnum instead of errno.
31 std::string StrError(int errnum);
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/
Errno.h 30 /// Like the no-argument version above, but uses \p errnum instead of errno.
31 std::string StrError(int errnum);
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/
Errno.h 30 /// Like the no-argument version above, but uses \p errnum instead of errno.
31 std::string 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);
  /system/extras/multinetwork/
httpurl.cpp 155 int errnum = errno; local
157 << " errno: " << errnum << " [" << strerror(errnum) << "]"
174 int errnum = errno; local
175 std::cerr << "Failed to connect; errno=" << errnum
176 << " [" << strerror(errnum) << "]"
225 int errnum = errno; local
227 << " errno: " << errnum << " [" << strerror(errnum) << "]"
  /external/libmicrohttpd/src/include/
platform_interface.h 108 #define MHD_strerror_(errnum) strerror((errnum))
110 #define MHD_strerror_(errnum) MHD_W32_strerror_((errnum))
113 /* MHD_set_socket_errno_ set errno to errnum (non-W32) / set socket last error to errnum (W32) */
115 #define MHD_set_socket_errno_(errnum) errno=(errnum)
117 #define MHD_set_socket_errno_(errnum) MHD_W32_set_last_winsock_error_((errnum))
    [all...]
w32functions.h 160 * Return pointer to string description of errnum error
163 * @param errnum the errno or value from MHD_W32_errno_from_winsock_()
166 const char* MHD_W32_strerror_(int errnum);
176 * @param errnum the errno value to set
178 void MHD_W32_set_last_winsock_error_(int errnum);
  /libcore/ojluni/src/main/native/
UnixCopyFile.c 41 static void throwUnixException(JNIEnv* env, int errnum) {
43 "(I)V", errnum);
  /cts/tests/tests/net/jni/
NativeMultinetworkJni.c 196 int i, errnum = 0; local
201 errnum = errno;
202 ALOGD("send(QUIC packet) returned sent=%zd, errno=%d", sent, errnum);
204 return -errnum;
211 errnum = errno;
213 i + 1, MAX_RETRIES, rcvd, errnum);
217 ALOGD("QUIC UDP %s: sent=%zd but rcvd=%zd, errno=%d", kPort, sent, rcvd, errnum);
  /external/capstone/
cs.c 198 return ud->errnum;
253 ud->errnum = CS_ERR_OK;
494 // handle->errnum = CS_ERR_HANDLE;
498 handle->errnum = CS_ERR_OK;
518 handle->errnum = CS_ERR_MEM;
630 handle->errnum = CS_ERR_MEM;
666 handle->errnum = CS_ERR_MEM;
707 handle->errnum = CS_ERR_MEM;
715 handle->errnum = CS_ERR_MEM;
740 handle->errnum = CS_ERR_OK
    [all...]
  /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;
  /external/python/cpython2/Tools/ssl/
make_ssl_data.py 55 for errname, (libnum, errnum) in _ssl.err_names_to_codes.items():
60 if (libcode, errnum) not in new_code_nums:
61 codes[errcode] = libcode, errname, errnum
  /external/python/cpython3/Tools/ssl/
make_ssl_data.py 55 for errname, (libnum, errnum) in _ssl.err_names_to_codes.items():
60 if (libcode, errnum) not in new_code_nums:
61 codes[errcode] = libcode, errname, errnum
  /frameworks/native/services/surfaceflinger/
GpuService.cpp 123 int errnum = errno; local
124 ALOGE("vkjson: failed to create output stream: %s", strerror(errnum));
125 return -errnum;
  /external/libxml2/win32/wince/
wincecompat.h 40 char *strerror(int errnum);
  /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);
157 inline int jniThrowIOException(JNIEnv* env, int errnum) {
158 return jniThrowIOException(&env->functions, errnum);
  /system/libvintf/
RuntimeInfo-target.cpp 76 int errnum; local
77 const char *errmsg = gzerror(f, &errnum);
79 err = (errnum == Z_ERRNO ? -errno : errnum);
  /external/conscrypt/common/src/jni/main/include/conscrypt/
compat.h 54 #define strerror_r(errnum, buf, buflen) strerror_s(buf, buflen, errnum)

Completed in 2116 milliseconds

12 3 4 5 6