HomeSort by relevance Sort by last modified time
    Searched refs:error (Results 1 - 25 of 3269) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/cmd/agents/snmp/snmplib/test/
error_test.c 30 #include "error.h"
42 error("first message");
43 error("tata\n");
44 error("\n");
45 error("titi\n");
46 error("\n\n");
47 error("toto\n\n\n");
48 error("\n\n\n");
52 error("second message");
53 error("tata\n")
    [all...]
  /onnv/onnv-gate/usr/src/lib/libc/port/sys/
set_errno.c 34 * __set_errno() takes an error number, maps ERESTART into EINTR, and sets
35 * the global (or per-thread) errno. It returns the mapped error number.
36 * __set_errno(error) is designed to be used after calling __systemcall()
37 * and getting a non-zero error return value. (__systemcall() does not
38 * set errno and does not deal with ERESTART; it just returns the error
42 __set_errno(int error)
44 if (error == ERESTART)
45 error = EINTR;
46 errno = error;
47 return (error);
    [all...]
lwp_rwlock.c 45 int error; local
47 error = __systemcall(&rval, SYS_lwp_rwlock_sys,
49 if (error == ERESTART)
50 error = EINTR;
52 return (error);
59 int error; local
61 error = __systemcall(&rval, SYS_lwp_rwlock_sys,
63 if (error == ERESTART)
64 error = EINTR;
66 return (error);
73 int error; local
87 int error; local
101 int error; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/pragma/
err.D_PRAGERR.d 37 #pragma D error "this is an error message"
  /onnv/onnv-gate/usr/src/uts/common/io/
neti_mod.c 51 int error; local
54 error = mod_install(&modlinkage);
55 if (error != 0)
58 return (error);
65 int error; local
67 error = mod_remove(&modlinkage);
68 if (error == 0)
71 return (error);
  /onnv/onnv-gate/usr/src/lib/libsip/common/
sip_xaction_ui.c 75 sip_get_trans(sip_msg_t sip_msg, int which, int *error)
77 if (error != NULL)
78 *error = 0;
80 if (error != NULL)
81 *error = EINVAL;
92 sip_get_trans_resp_msg(sip_transaction_t sip_trans, int *error)
96 if (error != NULL)
97 *error = 0;
99 if (error != NULL)
100 *error = EINVAL
    [all...]
sip_hdrs_ui.c 43 int *error)
45 if (error != NULL)
46 *error = 0;
49 if (error != NULL)
50 *error = EINVAL;
55 *error = EPROTO;
82 if (error != NULL && *error == 0)
83 *error = EINVAL;
93 boolean_t stype, boolean_t empty_val, int *error)
    [all...]
  /onnv/onnv-gate/usr/src/common/smbios/
smb_error.c 50 "Unknown SMBIOS error" /* ESMB_UNKNOWN */
56 smbios_errmsg(int error)
60 if (error >= ESMB_BASE && (error - ESMB_BASE) < _smb_nerr)
61 str = _smb_errlist[error - ESMB_BASE];
63 str = smb_strerror(error);
65 return (str ? str : "Unknown error");
75 smb_set_errno(smbios_hdl_t *shp, int error)
77 shp->sh_err = error;
  /onnv/onnv-gate/usr/src/common/ctf/
ctf_error.c 61 "Syntax error in type name", /* ECTF_SYNTAX */
81 ctf_errmsg(int error)
85 if (error >= ECTF_BASE && (error - ECTF_BASE) < _ctf_nerr)
86 str = _ctf_errlist[error - ECTF_BASE];
88 str = ctf_strerror(error);
90 return (str ? str : "Unknown error");
  /onnv/onnv-gate/usr/src/cmd/fs.d/smbclnt/smbutil/
view.c 71 int error, err2, opt; local
76 error = smb_ctx_alloc(&ctx);
77 if (error)
78 return (error);
80 error = smb_ctx_scan_argv(ctx, argc, argv,
82 if (error)
83 return (error);
85 error = smb_ctx_readrc(ctx);
86 if (error)
87 return (error);
167 int error, entries, total; local
    [all...]
print.c 75 int error, opt; local
82 error = smb_ctx_alloc(&ctx);
83 if (error)
86 error = smb_ctx_scan_argv(ctx, argc-1, argv,
88 if (error)
91 error = smb_ctx_readrc(ctx);
92 if (error)
98 error = smb_ctx_opt(ctx, opt, optarg);
99 if (error)
121 error = smb_ctx_resolve(ctx)
188 int error, rcnt, wcnt; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libbc/libc/sys/common/
getdtablesize.c 42 int error; local
45 error = getrlimit(RLIMIT_NOFILE, &rip);
46 if ( error < 0 )
  /onnv/onnv-gate/usr/src/lib/libc/port/gen/
raise.c 44 int error; local
46 if ((error = thr_kill(thr_self(), sig)) != 0) {
47 errno = error;
posix_fallocate.c 36 * Return the proper Posix error number for a failed (EINVAL) fcntl() operation.
42 int error; local
45 error = EBADF;
47 error = ESPIPE;
49 error = ENODEV;
51 error = EINVAL;
53 return (error);
60 int error; local
71 if ((error = errno) == EINVAL)
72 error = fallocate_errno(fd)
86 int error; local
    [all...]
posix_memalign.c 52 int error = 0; local
57 error = EINVAL;
60 error = ENOMEM;
63 return (error);
  /onnv/onnv-gate/usr/src/cmd/lvm/md_monitord/
svc-mdmonitor.sh 40 error=$?
41 case $error in
45 *) echo "Could not start $MDMONITORD. Error $error."
  /onnv/onnv-gate/usr/src/ucblib/libucb/port/sys/
gethostname.c 53 int error; local
55 error = sysinfo(SI_HOSTNAME, name, namelen);
57 * error > 0 ==> number of bytes to hold name
61 return (error == -1 ? -1 : 0);
67 int error; local
76 error = sysinfo(SI_SET_HOSTNAME, name, namelen);
77 return (error == -1 ? -1 : 0);
  /onnv/onnv-gate/usr/src/cmd/svr4pkg/pkgscripts/
i.preserve.sh 29 error=no
40 cp $src $dest || error=yes
44 [ "$error" = yes ] &&
  /onnv/onnv-gate/usr/src/cmd/print/scripts/
desktop-print-management-prefs 32 /bin/zenity --error --test "preferences are unavailable for the desktop print management tool"
  /onnv/onnv-gate/usr/src/uts/common/inet/ip/
ipddi.c 52 int error; local
60 error = mod_install(&modlinkage);
61 if (error != 0)
64 return (error);
70 int error; local
72 error = mod_remove(&modlinkage);
73 if (error == 0)
76 return (error);
spdsockddi.c 46 int error; local
50 error = mod_install(&modlinkage);
51 if (error != 0)
54 return (error);
60 int error; local
62 error = mod_remove(&modlinkage);
63 if (error != 0)
64 return (error);
  /onnv/onnv-gate/usr/src/uts/common/syscall/
cladm.c 39 int error = 0; local
45 error = EINVAL;
57 error = EFAULT;
70 /* return error if not configured as a cluster */
72 error = ENOSYS;
77 error = copyout(&nid, arg, sizeof (nid));
85 error = EINVAL;
88 error = cladmin(fac, cmd, arg);
90 * error will be -1 if the cladm module cannot be loaded;
94 if (error < 0
    [all...]
  /onnv/onnv-gate/usr/src/cmd/lvm/metassist/common/
volume_error.h 37 * Retrieve the error string for the given error code.
39 * @param error
40 * If error is less than zero, it is assumed to be a
41 * custom error code. If error is greater than zero, it
42 * is assumed to be an error defined in errno.h.
44 * @return the error string set by volume_set_error()
45 * if error < 0
47 * @return the error string returned by strerror(
    [all...]
  /onnv/onnv-gate/usr/src/lib/libproc/common/
pr_exit.c 44 int error; local
58 error = Psyscall(Pr, &rval, SYS_exit, 1, &argd[0]);
61 if (error < 0) {
63 error = ENOENT;
65 error = ENOSYS;
68 if (error == 0) /* can't happen? */
71 if (error == ENOENT) /* expected case */
74 errno = error;
85 int error; local
92 error = Psyscall(Pr, &rval, SYS_lwp_exit, 0, NULL)
    [all...]
  /onnv/onnv-gate/usr/src/ucblib/libucb/port/gen/
times.c 65 int error; local
73 error = _times(tmsp);
74 return (error == -1 ? error : 0);

Completed in 730 milliseconds

1 2 3 4 5 6 7 8 91011>>