Searched refs:errno (Results 101 - 125 of 4275) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libdaemon-0.14/examples/
H A Dtestd.c22 #include <errno.h>
40 daemon_log(LOG_ERR, "Failed to reset all signal handlers: %s", strerror(errno));
46 daemon_log(LOG_ERR, "Failed to unblock all signals: %s", strerror(errno));
61 daemon_log(LOG_WARNING, "Failed to kill daemon: %s", strerror(errno));
90 daemon_log(LOG_ERR, "Could not recieve return value from daemon process: %s", strerror(errno));
103 daemon_log(LOG_ERR, "Failed to close all file descriptors: %s", strerror(errno));
112 daemon_log(LOG_ERR, "Could not create PID file (%s).", strerror(errno));
119 daemon_log(LOG_ERR, "Could not register signal handlers (%s).", strerror(errno));
144 if (errno == EINTR)
147 daemon_log(LOG_ERR, "select(): %s", strerror(errno));
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/libasprintf/
H A Dvasprintf.c28 #include <errno.h>
50 errno = EOVERFLOW;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/
H A Do_dir_test.c36 #include <errno.h>
58 if (errno)
H A DLPdir_vms.c31 #include <errno.h>
75 errno = EINVAL;
79 errno = 0;
90 errno = EINVAL;
104 errno = ENAMETOOLONG;
111 errno = ENOMEM;
138 errno = 0;
139 vaxc$errno = status;
145 errno = EVMSERR;
146 vaxc$errno
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgpg-error-1.10/src/
H A Dcode-from-errno.c1 /* code-from-errno.c - Mapping errnos to error codes.
25 #include <errno.h>
29 #include "code-from-errno.h"
57 int err = errno;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/examples/nss/
H A Dnss_winbind.c17 #include <errno.h>
33 errno = ENOMEM;
39 errno = ENOENT;
54 errno = EINVAL;
100 errno = ENOENT;
104 errno = nss_errno;
124 errno = EINVAL;
143 errno = EINVAL;
171 errno = ENOENT;
175 errno
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/os_brew/
H A Dos_errno.c21 return (errno);
25 * We've seen cases where system calls failed but errno was never set. For
26 * that reason, __os_get_errno() and __os_get_syserr set errno to EAGAIN if
32 * Return the last ANSI C "errno" value or EAGAIN if the last error
39 if (errno == 0)
41 return (errno);
52 if (errno == 0)
54 return (errno);
59 * Set the value of errno.
73 errno
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/os-Linux/
H A Dumid.c5 #include <errno.h>
51 printf("make_uml_dir : malloc failed, errno = %d\n", errno);
56 if((mkdir(uml_dir, 0777) < 0) && (errno != EEXIST)){
57 printf("Failed to mkdir '%s': %s\n", uml_dir, strerror(errno));
58 err = -errno;
86 if (errno != ENOENT)
87 return -errno;
102 if (unlink(file) < 0 && errno != ENOENT) {
103 ret = -errno;
[all...]
H A Dexecvp.c26 #include <errno.h>
86 if (errno == ENOEXEC) {
90 switch (errno) {
118 return -errno;
130 return -errno;
144 errno = -ret;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/avahi-daemon/
H A Dcaps.c28 #include <errno.h>
54 avahi_log_error("cap_set_proc() failed: %s", strerror(errno));
61 avahi_log_error("prctl(PR_SET_KEEPCAPS) failed: %s", strerror(errno));
79 avahi_log_error("prctl(PR_SET_KEEPCAPS) failed: %s", strerror(errno));
92 avahi_log_error("cap_set_proc() failed: %s", strerror(errno));
111 avahi_log_error("cap_set_proc() failed: %s", strerror(errno));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/os-Linux/sys-i386/
H A Dregisters.c6 #include <errno.h>
34 return -errno;
41 return -errno;
49 return -errno;
52 return -errno;
73 panic("save_registers - saving registers failed, errno = %d\n",
94 "errno = %d\n", -err);
104 panic("check_ptrace : PTRACE_GETREGS failed, errno = %d",
105 errno);
107 errno
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/etc/cnid_dbd/
H A Dusockfd.c13 #include <errno.h>
44 strerror(errno));
48 if (unlink(usock_fn) < 0 && errno != ENOENT) {
50 usock_fn, strerror(errno));
58 usock_fn, strerror(errno));
64 usock_fn, strerror(errno));
73 usock_fn, strerror(errno));
103 LOG(log_info, logtype_default, "tsockfd_create: socket: %s", strerror(errno));
127 LOG(log_info, logtype_default, "tsockfd_create: bind: %s\n", strerror(errno));
133 LOG(log_info, logtype_default, "tsockfd_create: listen: %s\n", strerror(errno));
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/drivers/
H A Dmcast_user.c14 #include <errno.h>
75 err = -errno;
76 printk("mcast_open : data socket failed, errno = %d\n",
77 errno);
82 err = -errno;
83 printk("mcast_open: SO_REUSEADDR failed, errno = %d\n",
84 errno);
91 err = -errno;
93 errno);
99 err = -errno;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/cnid_dbd/
H A Dusockfd.c13 #include <errno.h>
45 strerror(errno));
49 if (unlink(usock_fn) < 0 && errno != ENOENT) {
51 usock_fn, strerror(errno));
59 usock_fn, strerror(errno));
65 usock_fn, strerror(errno));
74 usock_fn, strerror(errno));
104 LOG(log_info, logtype_default, "tsockfd_create: socket: %s", strerror(errno));
128 LOG(log_info, logtype_default, "tsockfd_create: bind: %s\n", strerror(errno));
134 LOG(log_info, logtype_default, "tsockfd_create: listen: %s\n", strerror(errno));
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/etc/afpd/
H A Duid.c19 #include <errno.h>
54 strerror(errno));
59 pair->gid, strerror(errno) );
63 pair->uid, strerror(errno) );
82 strerror(errno));
90 (this_volume)->v_forcegid, strerror(errno) );
96 (this_volume)->v_forceuid, strerror(errno) );
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/afpd/
H A Duid.c19 #include <errno.h>
54 strerror(errno));
59 pair->gid, strerror(errno) );
63 pair->uid, strerror(errno) );
82 strerror(errno));
90 (this_volume)->v_forcegid, strerror(errno) );
96 (this_volume)->v_forceuid, strerror(errno) );
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dcopy-file.c24 #include <errno.h>
66 error (EXIT_FAILURE, errno, _("error while opening \"%s\" for reading"),
73 error (EXIT_FAILURE, errno, _("cannot open backup file \"%s\" for writing"),
81 error (EXIT_FAILURE, errno, _("error reading \"%s\""), src_filename);
86 error (EXIT_FAILURE, errno, _("error writing \"%s\""), dest_filename);
91 error (EXIT_FAILURE, errno, _("error writing \"%s\""), dest_filename);
93 error (EXIT_FAILURE, errno, _("error after reading \"%s\""), src_filename);
130 error (EXIT_FAILURE, errno, _("error writing \"%s\""), dest_filename);
132 error (EXIT_FAILURE, errno, _("error after reading \"%s\""), src_filename);
H A Dareadlink.c28 #include <errno.h>
43 If readlink fails, return NULL and set errno.
45 return NULL and set errno to ENOMEM. */
68 with errno == ERANGE if the buffer is too small. */
69 if (link_length < 0 && errno != ERANGE)
73 int saved_errno = errno;
75 errno = saved_errno;
89 /* errno is ENOMEM. */
112 errno = ENOMEM;
117 /* errno i
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/udev/
H A Dudev_utils_file.c25 #include <errno.h>
58 if (errno == EEXIST)
85 if (errno == ENOENT)
88 if (errno == ENOTEMPTY)
90 err("rmdir(%s) failed: %s", p, strerror(errno));
107 err("chown(%s, 0, 0) failed: %s", filename, strerror(errno));
111 err("chmod(%s, 0000) failed: %s", filename, strerror(errno));
114 if (errno == ENOENT)
118 err("unlink(%s) failed: %s", filename, strerror(errno));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/gnulib-lib/
H A Dareadlink.c28 #include <errno.h>
43 If readlink fails, return NULL and set errno.
45 return NULL and set errno to ENOMEM. */
68 with errno == ERANGE if the buffer is too small. */
69 if (link_length < 0 && errno != ERANGE)
73 int saved_errno = errno;
75 errno = saved_errno;
89 /* errno is ENOMEM. */
112 errno = ENOMEM;
117 /* errno i
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dopen-catalog.c25 #include <errno.h>
68 if (ret_val != NULL || errno != ENOENT)
89 if (ret_val != NULL || errno != ENOENT)
101 errno = ENOENT;
118 const char *errno_description = strerror (errno);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/os-Linux/sys-x86_64/
H A Dregisters.c6 #include <errno.h>
30 return -errno;
33 return -errno;
44 panic("save_registers - saving registers failed, errno = %d\n",
55 "errno = %d\n", -err);
64 panic("check_ptrace : PTRACE_GETREGS failed, errno = %d",
65 errno);
69 panic("check_ptrace : PTRACE_GETFPREGS failed, errno = %d",
70 errno);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/9p/
H A Derror.c72 int errno = 0; local
79 errno = c->val;
84 if (errno == 0) {
89 errno = 1;
92 return -errno;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/libatalk/compat/
H A Dmktemp.c35 #include <errno.h>
59 extern int errno;
83 errno = ENOTDIR;
96 if (errno != EEXIST)
100 return(errno == ENOENT ? 1 : 0);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/libatalk/unicode/charsets/
H A Dgeneric_mb.c33 #include <errno.h>
64 errno = EILSEQ;
70 errno = E2BIG;
100 errno = EILSEQ;
106 errno = E2BIG;

Completed in 302 milliseconds

1234567891011>>