HomeSort by relevance Sort by last modified time
    Searched refs:err_no (Results 1 - 23 of 23) sorted by null

  /external/strace/tests/
error_msg.c 42 int err_no = errno; local
47 if (err_no)
48 fprintf(stderr, ": %s\n", strerror(err_no));
79 int err_no = errno; local
84 if (err_no)
85 fprintf(stderr, ": %s\n", strerror(err_no));
  /external/strace/tests-m32/
error_msg.c 42 int err_no = errno; local
47 if (err_no)
48 fprintf(stderr, ": %s\n", strerror(err_no));
79 int err_no = errno; local
84 if (err_no)
85 fprintf(stderr, ": %s\n", strerror(err_no));
  /external/strace/tests-mx32/
error_msg.c 42 int err_no = errno; local
47 if (err_no)
48 fprintf(stderr, ": %s\n", strerror(err_no));
79 int err_no = errno; local
84 if (err_no)
85 fprintf(stderr, ": %s\n", strerror(err_no));
  /external/strace/
error_prints.c 45 verror_msg(int err_no, const char *fmt, va_list p)
57 if (err_no)
59 program_invocation_name, msg, strerror(err_no));
68 if (err_no)
69 fprintf(stderr, ": %s\n", strerror(err_no));
strace.c 188 strerror(int err_no)
192 if (err_no < 1 || err_no >= sys_nerr) {
193 xsprintf(buf, "Unknown error %d", err_no);
196 return sys_errlist[err_no];
    [all...]
  /external/ltp/utils/sctp/func_tests/
test_1_to_1_addrs.c 95 int fd, err_no = 0; local
188 err_no = errno;
191 if (error != -1 || err_no != ENOTSOCK)
193 "error:%d, errno:%d", error, err_no);
246 err_no = errno;
249 if (error != -1 || err_no != ENOTSOCK)
251 "error:%d, errno:%d", error, err_no);
test_1_to_1_socket_bind_listen.c 88 int fd, err_no = 0; local
153 err_no = errno;
156 if (error != -1 || err_no != ENOTSOCK)
158 "descriptor error:%d, errno:%d", error, err_no);
268 err_no = errno;
271 if (error != -1 || err_no != ENOTSOCK)
273 "error:%d, errno:%d", error, err_no);
test_getname.c 69 int fd, err_no = 0; local
220 err_no = errno;
223 if (error != -1 || err_no != ENOTSOCK)
225 "error:%d errno:%d", error, err_no);
255 err_no = errno;
258 if (error != -1 || err_no != ENOTSOCK)
260 "error:%d errno:%d", error, err_no);
test_1_to_1_recvfrom.c 72 int fd, err_no = 0; local
135 err_no = errno;
138 if (count != -1 || err_no != ENOTSOCK)
140 "count:%d, errno:%d", count, err_no);
test_1_to_1_recvmsg.c 70 int fd, err_no = 0; local
140 err_no = errno;
143 if (count != -1 || err_no != ENOTSOCK)
145 "count:%d, errno:%d", count, err_no);
test_1_to_1_shutdown.c 73 int fd, err_no = 0; local
124 err_no = errno;
127 if (error != -1 || err_no != ENOTSOCK)
129 "error:%d, errno:%d", error, err_no);
test_1_to_1_accept_close.c 81 int fd, err_no = 0; local
146 err_no = errno;
149 if (error != -1 || err_no != ENOTSOCK)
151 "error:%d, errno:%d", error, err_no);
test_1_to_1_connect.c 75 int fd, err_no = 0; local
132 err_no = errno;
135 if (error != -1 || err_no != ENOTSOCK)
137 "error:%d, errno:%d", error, err_no);
test_1_to_1_send.c 72 int fd, err_no = 0; local
130 err_no = errno;
133 if (count != -1 || err_no != ENOTSOCK)
135 "count:%d, errno:%d", count, err_no);
test_1_to_1_sockopt.c 101 int fd, err_no = 0; local
130 err_no = errno;
133 if (error != -1 || err_no != ENOTSOCK)
135 "error:%d, errno:%d", error, err_no);
180 err_no = errno;
183 if (error != -1 || err_no != ENOTSOCK)
185 "error:%d, errno:%d", error, err_no);
test_1_to_1_sendmsg.c 89 int fd, err_no = 0; local
163 err_no = errno;
166 if (count != -1 || err_no != ENOTSOCK)
168 "count:%d, errno:%d", count, err_no);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
pretty-print.h 36 int err_no; /* for %m */ member in struct:__anon63413
  /external/libxml2/os400/dlfcn/
dlfcn.c 278 dlseterror_from_errno(unsigned int err_no)
288 strcpy(p->str, strerror(err_no));
  /external/libxml2/
rngparser.c 171 xmlCRNGErr(xmlCRelaxNGParserCtxtPtr ctxt, int err_no, const char *err_msg) {
182 } else if (err_no != 0)
183 fprintf(stderr, "error %d\n", err_no);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
socketmodule.c 499 int err_no = WSAGetLastError(); local
503 if (err_no)
504 return PyErr_SetExcFromWindowsErr(socket_error, err_no);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
socketmodule.c 487 int err_no = WSAGetLastError(); local
491 if (err_no)
492 return PyErr_SetExcFromWindowsErr(socket_error, err_no);
    [all...]
  /external/python/cpython2/Modules/
socketmodule.c 523 int err_no = WSAGetLastError(); local
527 if (err_no)
528 return PyErr_SetExcFromWindowsErr(socket_error, err_no);
    [all...]
  /external/python/cpython3/Modules/
socketmodule.c 567 int err_no = WSAGetLastError(); local
571 if (err_no)
572 return PyErr_SetExcFromWindowsErr(PyExc_OSError, err_no);
    [all...]

Completed in 265 milliseconds