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

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/lib/libbc/libc/stdio/common/
ctermid.c 31 static char res[L_ctermid]; variable
37 return (strcpy(s != NULL ? s : res, "/dev/tty"));
cuserid.c 34 static char res[L_cuserid]; variable
44 s = res;
  /onnv/onnv-gate/usr/src/cmd/fs.d/cachefs/fsck/
res.h 28 * res.h
41 typedef struct res res; typedef in typeref:struct:res
43 res *res_create(char *namep, int entries, int verbose);
44 void res_destroy(res *resp);
45 int res_done(res *resp);
46 void res_addfile(res *resp, long nbytes);
47 int res_addident(res *resp, int index, rl_entry_t *dp, long nbytes, int file);
48 void res_clearident(res *resp, int index, int nbytes, int file);
  /onnv/onnv-gate/usr/src/cmd/ipf/lib/common/
kvatoname.c 11 ipfunc_resolve_t res; local
14 res.ipfu_addr = func;
15 res.ipfu_name[0] = '\0';
23 (void) (*iocfunc)(fd, SIOCFUNCL, &res);
26 strncpy(funcname, res.ipfu_name, sizeof(funcname));
nametokva.c 10 ipfunc_resolve_t res; local
13 strncpy(res.ipfu_name, name, sizeof(res.ipfu_name));
14 res.ipfu_addr = NULL;
22 (void) (*iocfunc)(fd, SIOCFUNCL, &res);
25 if (res.ipfu_addr == NULL)
26 res.ipfu_addr = (ipfunc_t)-1;
27 return res.ipfu_addr;
  /onnv/onnv-gate/usr/src/cmd/unlink/
unlink.c 42 int res = 0; local
58 if (res = unlink(argv[1]))
61 return (res);
  /onnv/onnv-gate/usr/src/lib/libc/port/gen/
cftime.c 76 struct tm res; local
79 p = localtime_r(t, &res);
ctime_r.c 96 struct tm res; local
98 if (localtime_r(t, &res) == NULL)
101 if (asctime_r(&res, buffer, buflen) == NULL)
114 struct tm res; local
116 if (localtime_r(t, &res) == NULL)
119 if (__posix_asctime_r(&res, buffer) == NULL)
  /onnv/onnv-gate/usr/src/lib/libc/port/stdio/
ctermid.c 41 static const char res[L_ctermid] = "/dev/tty"; variable
50 return ((char *)res);
51 return (strcpy(s, res));
  /onnv/onnv-gate/usr/src/lib/libldap5/sources/ldap/common/
secutil.c 16 char *res; local
19 if ((res = (char *)calloc (aLen*2 + 1, 1 )) == NULL){
25 res[i] = hexdig[ ( *aString & 0xf0 ) >> 4 ];
26 res[i + 1] = hexdig[ *aString & 0x0f ];
31 return (res);
  /onnv/onnv-gate/usr/src/lib/passwdutil/
__check_history.c 55 int res; local
66 res = PWU_NOT_FOUND;
69 while ((i <= REP_LAST) && (res == PWU_NOT_FOUND)) {
72 res = rops[i]->checkhistory(user, passwd, rep);
75 return (res);
__get_authtoken_attr.c 45 int res; local
58 res = PWU_NOT_FOUND;
61 while ((i <= REP_LAST) && (res == PWU_NOT_FOUND)) {
63 res = rops[i]->getattr(name, item, rep);
66 return (res);
  /onnv/onnv-gate/usr/src/lib/libresolv2/common/irs/
lcl_p.h 34 struct __res_state * res; member in struct:lcl_p
nis_p.h 32 struct __res_state * res; member in struct:nis_p
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.bin/nc/
atomicio.c 48 ssize_t res; local
54 res = (f) (fd, s + pos, n - pos);
55 switch (res) {
68 pos += (size_t)res;
  /onnv/onnv-gate/usr/src/cmd/link/
link.c 43 int res, c; local
64 if (res = link(argv[optind], argv[optind + 1]))
67 return (res);
  /onnv/onnv-gate/usr/src/lib/libnsl/yp/
yp_b_clnt.c 52 static char res; local
54 res = 0;
56 argp, xdr_void, &res, TIMEOUT) != RPC_SUCCESS)
58 return ((void *)&res);
64 static ypbind_resp res; local
66 (void) memset(&res, 0, sizeof (res));
69 (char *)&res, TIMEOUT) != RPC_SUCCESS)
71 return (&res);
77 static char res; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/krb5/kwarn/
kwarnd_clnt_stubs.c 53 kwarn_add_warning_res res; local
79 memset(&res, 0, sizeof (res));
80 ret = kwarn_add_warning_1(&args, &res, clnt);
97 return (res.status);
104 kwarn_del_warning_res res; local
129 memset(&res, 0, sizeof (res));
130 ret = kwarn_del_warning_1(&args, &res, clnt);
147 return (res.status)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/lastcomm/
lastcomm.c 40 int res; local
96 if ((res = ea_open(&ef, filename, EXACCT_CREATOR,
100 if (res < 0)
  /onnv/onnv-gate/usr/src/cmd/rpcsvc/
spray_subr.c 74 static char res; local
78 (void) memset((char *)&res, 0, sizeof(res));
79 return ((void *)&res);
  /onnv/onnv-gate/usr/src/cmd/ssh/libssh/common/
msg.c 55 ssize_t res; local
60 res = atomicio(read, fd, buf, sizeof(buf));
61 if (res != sizeof(buf)) {
62 if (res == 0)
64 fatal("ssh_msg_recv: read: header %ld", (long)res);
71 res = atomicio(read, fd, buffer_ptr(m), msg_len);
72 if (res != msg_len)
73 fatal("ssh_msg_recv: read: %ld != msg_len", (long)res);
  /onnv/onnv-gate/usr/src/common/crypto/ecc/
ecl_curve.c 55 #define CHECK(func) if ((func) == NULL) { res = 0; goto CLEANUP; }
61 int res = 1; local
130 if (res != 1) {
  /onnv/onnv-gate/usr/src/common/openssl/crypto/
o_str.c 68 int res = toupper(*str1) - toupper(*str2); local
69 if (res) return res < 0 ? -1 : 1;
  /onnv/onnv-gate/usr/src/common/util/
bsearch.c 64 int res = (*compar)(ky, (void *)p); local
66 if (res == 0)
68 if (res < 0)
  /onnv/onnv-gate/usr/src/lib/libbc/libc/gen/common/
bsearch.c 49 register int res = (*compar)(key, p); local
51 if (res == 0)
53 if (res < 0)

Completed in 3180 milliseconds

1 2 3 4 5 6 7 8 91011>>