HomeSort by relevance Sort by last modified time
    Searched defs:errnum (Results 1 - 21 of 21) sorted by null

  /external/llvm/lib/Support/
Errno.cpp 37 std::string StrError(int errnum) {
39 if (errnum == 0)
52 str = strerror_r(errnum, buffer, MaxErrStrLen - 1);
54 strerror_r(errnum, buffer, MaxErrStrLen - 1);
58 strerror_s(buffer, MaxErrStrLen - 1, errnum);
64 str = strerror(errnum);
69 stream << "Error #" << errnum; local
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
Errno.cpp 37 std::string StrError(int errnum) {
39 if (errnum == 0)
52 str = strerror_r(errnum, buffer, MaxErrStrLen - 1);
54 strerror_r(errnum, buffer, MaxErrStrLen - 1);
58 strerror_s(buffer, MaxErrStrLen - 1, errnum);
64 str = strerror(errnum);
69 stream << "Error #" << errnum; local
  /external/strace/tests/
xet_thread_area_x86.c 48 long errnum; variable
  /external/strace/tests-m32/
xet_thread_area_x86.c 48 long errnum; variable
  /external/strace/tests-mx32/
xet_thread_area_x86.c 48 long errnum; variable
  /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...]
  /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;
  /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) << "]"
  /system/libvintf/
RuntimeInfo-target.cpp 76 int errnum; local
77 const char *errmsg = gzerror(f, &errnum);
79 err = (errnum == Z_ERRNO ? -errno : errnum);
  /toolchain/binutils/binutils-2.27/libiberty/testsuite/
test-strtol.c 78 int errnum; member in struct:test_data_t
163 if (saved_errno != test_data[i].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_priv.h 46 cs_err errnum; member in struct:cs_struct
  /device/linaro/bootloader/edk2/OvmfPkg/Include/IndustryStandard/Xen/io/
xs_wire.h 64 INT32 errnum; member in struct:xsd_errors
  /external/compiler-rt/lib/profile/
GCDAProfiling.c 227 int errnum = errno; local
229 strerror(errnum));
237 int errnum = errno; local
239 strerror(errnum));
278 int errnum = errno; local
280 strerror(errnum));
  /external/syslinux/dos/
syslinux.c 175 uint16_t errnum = 0x0001; local
189 : "=a" (errnum)
193 dprintf(" rv(7305) = %04x", errnum);
197 if (errnum == 0x0001)
198 errnum = int26_write_sector(drive, &dio);
200 if (errnum) {
201 dprintf("rv = %04x\n", errnum);
208 uint16_t errnum = 0x0001; local
222 : "=a" (errnum)
225 dprintf(" rv(7305) = %04x", errnum);
    [all...]
  /external/tcpdump/
print-nfs.c 1029 int errnum; local
1033 errnum = EXTRACT_32BITS(&dp[0]);
1035 *er = errnum;
1036 if (errnum != 0) {
1039 tok2str(status2str, "unk %d", errnum)));
    [all...]
  /libcore/ojluni/src/main/native/
UNIXProcess_md.c 485 throwIOException(JNIEnv *env, int errnum, const char *defaultDetail)
492 if (errnum != 0) {
493 const char *s = strerror(errnum);
498 size_t newsize = strlen(format) + strlen(detail) + 3 * sizeof(errnum);
500 snprintf(errmsg, newsize, format, errnum, detail);
780 int errnum = errno; local
781 restartableWrite(FAIL_FILENO, &errnum, sizeof(errnum));
847 int errnum; local
920 switch (readFully(fail[0], &errnum, sizeof(errnum)))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
bufferedio.c 1715 int errnum; local
    [all...]
  /external/python/cpython2/Modules/_io/
bufferedio.c 1711 int errnum; local
    [all...]
  /external/python/cpython3/Modules/_io/
bufferedio.c 1830 int errnum; local
    [all...]
  /external/pcre/dist2/src/
pcre2grep.c 2634 int errnum; local
    [all...]

Completed in 407 milliseconds