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

1 2 3 4 5 6 7 8 91011>>

  /netvirt/usr/src/cmd/sgs/size/common/
fcns.c 36 * error(file, string)
37 * simply prints the error message string
42 error(char *file, char *string) function
  /netvirt/usr/src/cmd/projadd/
projadd.pl 60 # Print a list of error messages and exit.
62 sub error subroutine
141 error([10, gettext('Cannot open %s: %s'), $projfile, $!]);
148 error(@$pf);
273 error(@$err);
279 error([10, gettext('Cannot create %s: %s'), $tmpprojf, $!]);
284 error([10, gettext('Cannot set ownership of %s: %s'),
289 error([10, gettext('cannot rename %s to %s: %s'),
projdel.pl 54 # Print a list of error messages and exit.
56 sub error subroutine
100 error([10, gettext('Cannot open %s: %s'), $projfile, $!]);
111 error(@$pf);
118 error([6, gettext('Project "%s" does not exist'), $pname])
120 error([6, gettext('Duplicate project name "%s"'), $pname])
126 error([10, gettext('Cannot create %s: %s'), $tmpprojf, $!]);
131 error([10, gettext('Cannot set ownership of %s: %s'),
136 error([10, gettext('cannot rename %s to %s: %s'),
projmod.pl 62 # Print a list of error messages and exit.
64 sub error subroutine
448 open($pfh, "<&=STDIN") or error( [10,
451 error([10, gettext('Cannot open %s: %s'), $projfile, $!]);
467 error(@$pf);
486 error([6, gettext('Project "%s" does not exist'), $pname])
636 error(@$err);
649 error([10, gettext('Cannot create %s: %s'), $tmpprojf, $!]);
656 error([10, gettext('Cannot set ownership of %s: %s'),
661 error([10, gettext('cannot rename %s to %s: %s')
    [all...]
  /netvirt/usr/src/lib/libc/port/gen/
raise.c 45 int error; local
47 if ((error = _thr_kill(_thr_self(), sig)) != 0) {
48 errno = error;
  /netvirt/usr/src/ucblib/libucb/port/gen/
times.c 65 int error; local
73 error = _times(tmsp);
74 return (error == -1 ? error : 0);
  /netvirt/usr/src/uts/common/syscall/
close.c 53 int error; local
55 if ((error = closeandsetf(fdes, NULL)) != 0)
56 return (set_errno(error));
link.c 53 int error; local
55 if (error = vn_link(from, to, UIO_USERSPACE))
56 return (set_errno(error));
rmdir.c 55 int error; local
57 if (error = vn_remove(dname, UIO_USERSPACE, RMDIRECTORY))
58 return (set_errno(error));
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...]
fdsync.c 55 register int error; local
67 if (error = VOP_FSYNC(fp->f_vnode, syncflag, fp->f_cred, NULL))
68 (void) set_errno(error);
71 error = set_errno(EBADF);
72 return (error);
mkdir.c 57 int error; local
62 error = vn_create(dname, UIO_USERSPACE, &vattr, EXCL, 0, &vp, CRMKDIR,
64 if (error)
65 return (set_errno(error));
resolvepath.c 40 int error; local
44 if (error = pn_get(path, UIO_USERSPACE, &lookpn))
45 return (set_errno(error));
47 error = lookuppn(&lookpn, &resolvepn, FOLLOW, NULL, NULL);
48 if (error == 0) {
52 error = EFAULT;
57 if (error)
58 return (set_errno(error));
sigsendset.c 49 int error; local
64 if (error = sigsendset(&set, &v))
65 return (set_errno(error));
  /netvirt/usr/src/cmd/hal/addons/acpi/
addon-acpi.c 36 DBusError error; local
43 dbus_error_init(&error);
44 if ((ctx = libhal_ctx_init_direct(&error)) == NULL) {
48 dbus_error_init(&error);
49 if (!libhal_device_addon_is_ready(ctx, getenv("UDI"), &error)) {
  /netvirt/usr/src/cmd/kstat/
kstat.pl 62 # Print a fatal error message and exit
65 sub error(@) subroutine
78 # perl RE. If the RE is syntactically incorrect, an error will be
  /netvirt/usr/src/cmd/modload/
modsubr.c 36 error(char *fmt, ...) function
40 int error; local
42 error = errno;
53 exit(error);
  /netvirt/usr/src/lib/libbc/libc/sys/common/
getdtablesize.c 42 int error; local
45 error = getrlimit(RLIMIT_NOFILE, &rip);
46 if ( error < 0 )
  /netvirt/usr/src/tools/scripts/
hdrchk.pl 133 # Prints out an error message with the current file and line number
135 sub error { subroutine
165 error("Missing copyright in opening comment");
185 error("Invalid or missing header guard");
200 error("Header guard does not match filename");
207 error("Invalid header guard");
223 error("Invalid or missing #pragma ident");
249 error("Bad include");
264 error("Bad _cplusplus clause");
285 error("Bad __cplusplus clause")
    [all...]
  /netvirt/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);
  /netvirt/usr/src/cmd/ipf/lib/common/
gethost.c 21 int error; local
37 error = getaddrinfo(name, NULL, &hints, &ai);
39 if ((error == 0) && (ai != NULL) && (ai->ai_addr != NULL)) {
  /netvirt/usr/src/cmd/rpld/
dlhdr.h 33 int error; member in struct:dl_descriptor
  /netvirt/usr/src/lib/libc/port/sys/
exacctsys.c 42 int error; local
44 error = __systemcall(&rval, SYS_exacctsys,
46 if (error)
47 (void) __set_errno(error);
lwp_cond.c 48 int error; local
50 error = ___lwp_cond_wait(cv, mp, NULL, 0);
55 return (error);
61 int error; local
66 error = ___lwp_cond_wait(cv, mp, relts, 0);
71 return (error);
  /netvirt/usr/src/lib/libproc/common/
pr_door.c 45 int error; local
91 error = Psyscall(Pr, &rval, SYS_door, 6, &argd[0]);
93 if (error) {
94 errno = (error < 0)? ENOSYS : error;

Completed in 1380 milliseconds

1 2 3 4 5 6 7 8 91011>>