Searched defs:error (Results 301 - 325 of 1783) sorted by relevance

<<11121314151617181920>>

/illumos-gate/usr/src/uts/common/pcmcia/pcs/
H A Dpcs.c106 int error = DDI_SUCCESS; local
119 error = DDI_FAILURE;
128 error = DDI_FAILURE;
133 error = DDI_FAILURE;
135 return (error);
/illumos-gate/usr/src/uts/common/rpc/
H A Drpc_prot.c341 accepted(enum accept_stat acpt_stat, struct rpc_err *error) argument
345 error->re_status = RPC_PROGUNAVAIL;
349 error->re_status = RPC_PROGVERSMISMATCH;
353 error->re_status = RPC_PROCUNAVAIL;
357 error->re_status = RPC_CANTDECODEARGS;
361 error->re_status = RPC_SYSTEMERROR;
365 error->re_status = RPC_SUCCESS;
369 error->re_status = RPC_FAILED;
370 error->re_lb.s1 = (int32_t)MSG_ACCEPTED;
371 error
375 rejected(enum reject_stat rjct_stat, struct rpc_err *error) argument
396 _seterr_reply(struct rpc_msg *msg, struct rpc_err *error) argument
[all...]
/illumos-gate/usr/src/uts/common/rpc/sec/
H A Dauthdesubr.c81 int error; local
100 if ((error = t_kopen(NULL, synconfig->knc_rdev,
102 RPCLOG(1, "rtime: t_kopen %d\n", error);
106 if ((error = t_kbind(tiptr, NULL, NULL)) != 0) {
108 RPCLOG(1, "rtime: t_kbind %d\n", error);
113 if ((error = t_kalloc(tiptr, T_UNITDATA,
115 RPCLOG(1, "rtime: t_kalloc %d\n", error);
128 if ((error = t_ksndudata(tiptr, unitdata, NULL)) !=
130 RPCLOG(1, "rtime: t_ksndudata %d\n", error);
140 if ((error
[all...]
/illumos-gate/usr/src/uts/common/syscall/
H A Dacl.c70 int error; local
78 error = lookupname((char *)fname, UIO_USERSPACE, FOLLOW, NULLVPP, &vp);
79 if (error) {
80 if ((error == ESTALE) && fs_need_estale_retry(estale_retry++))
82 return (set_errno(error));
85 error = cacl(cmd, nentries, aclbufp, vp, &rv);
87 if (error) {
88 if ((error == ESTALE) && fs_need_estale_retry(estale_retry++))
90 return (set_errno(error));
102 int error; local
127 int error; local
[all...]
H A Dchdir.c71 int error; local
75 if (error = lookupname(fname, UIO_USERSPACE, FOLLOW, NULLVPP, &vp)) {
76 if ((error == ESTALE) && fs_need_estale_retry(estale_retry++))
78 return (set_errno(error));
81 error = chdirec(vp, 0, 1);
82 if (error) {
83 if ((error == ESTALE) && fs_need_estale_retry(estale_retry++))
85 return (set_errno(error));
98 int error; local
105 error
118 int error; local
148 int error; local
164 int error; local
[all...]
H A Dlseek.c82 int error; local
96 error = EINVAL;
103 error = EOVERFLOW;
108 error = EINVAL;
115 if (error = VOP_GETATTR(vp, &vattr, 0, fp->f_cred, NULL)) {
119 error = EOVERFLOW;
124 error = EINVAL;
135 error = VOP_IOCTL(vp, _FIO_SEEK_DATA, (intptr_t)(&noff),
137 if (error) {
138 if (error !
209 int error; local
247 int error; local
279 int error; local
[all...]
H A Dmmapobjsys.c67 int error; local
95 error = EACCES;
99 error = copyin(elements, &num_mapped, sizeof (uint_t));
100 if (error) {
101 error = EFAULT;
115 error = copyin(arg, &padding32, sizeof (padding32));
118 error = copyin(arg, &padding, sizeof (padding));
120 if (error) {
121 error = EFAULT;
134 error
[all...]
H A Dpipe.c112 int error = 0; local
132 if (error = falloc(vp1, FWRITE|FREAD, &fp1, &fd1)) {
135 return (set_errno(error));
138 if (error = falloc(vp2, FWRITE|FREAD, &fp2, &fd2))
144 if (error = fifo_stropen(&vp1, FWRITE|FREAD, fp1->f_cred, 0, 0))
147 if (error = fifo_stropen(&vp2, FWRITE|FREAD, fp2->f_cred, 0, 0)) {
165 if (error = VOP_SETFL(vp1, flag1, iflags, fp1->f_cred, NULL)) {
170 if (error = VOP_SETFL(vp2, flag2, iflags, fp2->f_cred, NULL)) {
183 error = EFAULT;
215 return (set_errno(error));
[all...]
H A Dprocessor_bind.c50 int *error)
62 *error = ENOTSUP;
71 i = cpu_bind_thread(tp, bind, obind, error);
86 int *error)
99 i = cpu_bind_process(p, bind, obind, error);
113 int *error)
125 i = cpu_bind_process(p, bind, obind, error);
138 int *error)
150 i = cpu_bind_process(p, bind, obind, error);
163 int *error)
49 cpu_bind_process(proc_t *pp, processorid_t bind, processorid_t *obind, int *error) argument
85 cpu_bind_task(task_t *tk, processorid_t bind, processorid_t *obind, int *error) argument
112 cpu_bind_project(kproject_t *kpj, processorid_t bind, processorid_t *obind, int *error) argument
137 cpu_bind_zone(zone_t *zptr, processorid_t bind, processorid_t *obind, int *error) argument
162 cpu_bind_contract(cont_process_t *ctp, processorid_t bind, processorid_t *obind, int *error) argument
[all...]
H A Dsigtimedwait.c104 int error = 0; local
156 error = EAGAIN;
164 if (error) {
167 return (set_errno(error)); /* timer expired */
H A Dstatvfs.c84 int error; local
92 if ((error = VFS_STATVFS(vfsp, &ds64)) != 0)
93 return (error);
146 int error; local
152 if ((error = VFS_STATVFS(vfsp, &ds64)) != 0)
153 return (error);
166 int error; local
170 if (error = lookupname(fname, UIO_USERSPACE, FOLLOW, NULLVPP, &vp)) {
171 if ((error == ESTALE) && fs_need_estale_retry(estale_retry++))
173 return (set_errno(error));
193 int error; local
221 int error; local
244 int error; local
264 int error; local
295 int error; local
318 int error; local
336 int error; local
359 int error; local
[all...]
H A Duadmin.c131 int error = 0; local
165 * an error. We need a cv rather than just a mutex because proper
202 if ((error = exitlwps(0)) != 0) {
211 return (error);
351 error = cpr(fcn, mdep);
365 error = EINVAL;
404 error = EINVAL;
407 return (error);
413 int error = 0, rv = 0; local
434 error
[all...]
H A Dutime.c56 int error; local
89 if ((error = lookupnameat(fname, UIO_USERSPACE,
93 return (set_errno(error));
105 error = EROFS;
107 error = VOP_SETATTR(vp, vap, flags, CRED(), NULL);
111 if (error != 0)
112 return (set_errno(error));
176 int error; local
178 if ((error = get_timespec_vattr(tsptr, &vattr, &flags)) != 0)
179 return (set_errno(error));
189 int error; local
[all...]
/illumos-gate/usr/src/uts/i86pc/io/amd_iommu/
H A Damd_iommu_cmd.c199 int error; local
223 error = DDI_FAILURE;
226 error = create_compl_wait_cmd(iommu, cmdargs, flags, cmdptr);
229 error = create_inval_devtab_entry_cmd(iommu, cmdargs,
233 error = create_inval_iommu_pages_cmd(iommu, cmdargs,
237 error = create_inval_iotlb_pages_cmd(iommu, cmdargs,
241 error = create_inval_intr_table_cmd(iommu, cmdargs,
247 error = DDI_FAILURE;
251 if (error != DDI_SUCCESS) {
252 error
[all...]
/illumos-gate/usr/src/uts/common/io/softmac/
H A Dsoftmac_pkt.c94 dlpi_get_errno(t_uscalar_t error, t_uscalar_t unix_errno) argument
96 return (error == DL_SYSERR ? unix_errno : EINVAL);
193 t_uscalar_t error, t_uscalar_t unix_errno)
203 dlp->error_ack.dl_errno = error;
192 softmac_mexchange_error_ack(mblk_t **mpp, t_uscalar_t error_primitive, t_uscalar_t error, t_uscalar_t unix_errno) argument
/illumos-gate/usr/src/uts/common/io/usb/clients/usbser/usbftdi/
H A Dusbser_uftdi.c162 int error; local
164 if ((error = mod_install(&modlinkage)) != 0)
165 return (error);
166 if ((error = ddi_soft_state_init(&usbser_uftdi_statep,
169 return (error);
176 int error; local
178 if ((error = mod_remove(&modlinkage)) == 0)
180 return (error);
/illumos-gate/usr/src/uts/common/io/usb/clients/usbser/usbsprl/
H A Dusbser_pl2303.c166 int error; local
168 if ((error = mod_install(&modlinkage)) == 0) {
169 error = ddi_soft_state_init(&usbser_pl2303_statep,
173 return (error);
180 int error; local
182 if ((error = mod_remove(&modlinkage)) == 0) {
186 return (error);
/illumos-gate/usr/src/uts/common/sys/fs/
H A Dufs_filio.h80 int error; member in struct:fiolog
/illumos-gate/usr/src/lib/libadm/common/
H A Dckgid.c126 ckgid_err(int disp, char *error) argument
131 puterror(stdout, msg, error);
148 ckgid(char *gid, short disp, char *defstr, char *error, char *help, argument
175 puterror(stderr, defmesg, error);
189 puterror(stderr, defmesg, error);
H A Dckrange.c57 ckrange_err(long lower, long upper, int base, char *error) argument
62 puterror(stdout, defmesg, error);
88 char *error, char *help, char *prompt)
130 puterror(stderr, defmesg, error);
146 puterror(stderr, defmesg, error);
87 ckrange(long *rngval, long lower, long upper, short base, char *defstr, char *error, char *help, char *prompt) argument
H A Dckuid.c126 ckuid_err(short disp, char *error) argument
131 puterror(stdout, msg, error);
148 ckuid(char *uid, short disp, char *defstr, char *error, char *help, argument
175 puterror(stderr, defmesg, error);
189 puterror(stderr, defmesg, error);
H A Dckyorn.c70 ckyorn_err(char *error) argument
72 puterror(stdout, ERRMSG, error);
82 ckyorn(char *yorn, char *defstr, char *error, char *help, char *prompt) argument
100 puterror(stderr, REQMSG, error);
111 puterror(stderr, ERRMSG, error);
/illumos-gate/usr/src/lib/libast/amd64/include/ast/
H A Dstack.h61 __V_* error; /* error return value */ member in struct:stacktable
/illumos-gate/usr/src/lib/libast/common/include/
H A Dstack.h52 void* error; /* error return value */ member in struct:stacktable
/illumos-gate/usr/src/lib/libast/common/string/
H A Dstrexpr.c47 #define error(ex,msg) return(seterror(ex,msg)) macro
52 char* errchr; /* next char after error */
53 char* errmsg; /* error message text */
59 * set error message string
90 error(ex, "more tokens expected");
116 if (!precedence) error(ex, "too many )'s");
123 error(ex, "closing ) expected");
126 if (operand) error(ex, "operator expected");
143 error(ex, ": expected for ? operator");
192 if (peekchr(ex) != '=') error(e
[all...]

Completed in 108 milliseconds

<<11121314151617181920>>