/illumos-gate/usr/src/lib/libc/port/sys/ |
H A D | _autofssys.c | 36 _autofssys(enum autofssys_op op, void *arg) argument 38 return (syscall(SYS_autofssys, op, arg, NULL, NULL, NULL, NULL));
|
/illumos-gate/usr/src/cmd/ipf/lib/common/ |
H A D | remove_hash.c | 22 iplookupop_t op; local 30 op.iplo_type = IPLT_HASH; 31 op.iplo_unit = iphp->iph_unit; 32 strncpy(op.iplo_name, iphp->iph_name, sizeof(op.iplo_name)); 33 if (*op.iplo_name == '\0') 34 op.iplo_arg = IPHASH_ANON; 35 op.iplo_size = sizeof(iph); 36 op.iplo_struct = &iph; 44 if ((*iocfunc)(hashfd, SIOCLOOKUPDELTABLE, &op)) [all...] |
H A D | remove_hashnode.c | 24 iplookupop_t op; local 32 op.iplo_type = IPLT_HASH; 33 op.iplo_unit = unit; 34 op.iplo_size = sizeof(ipe); 35 op.iplo_struct = &ipe; 36 op.iplo_arg = 0; 37 strncpy(op.iplo_name, name, sizeof(op.iplo_name)); 50 if ((*iocfunc)(hashfd, SIOCLOOKUPDELNODE, &op))
|
H A D | remove_pool.c | 22 iplookupop_t op; local 30 op.iplo_type = IPLT_POOL; 31 op.iplo_unit = poolp->ipo_unit; 32 strncpy(op.iplo_name, poolp->ipo_name, sizeof(op.iplo_name)); 33 op.iplo_size = sizeof(pool); 34 op.iplo_struct = &pool; 41 if ((*iocfunc)(poolfd, SIOCLOOKUPDELTABLE, &op))
|
H A D | remove_poolnode.c | 25 iplookupop_t op; local 32 op.iplo_unit = unit; 33 op.iplo_type = IPLT_POOL; 34 op.iplo_arg = 0; 35 strncpy(op.iplo_name, name, sizeof(op.iplo_name)); 36 op.iplo_struct = &pn; 37 op.iplo_size = sizeof(pn); 47 if ((*iocfunc)(poolfd, SIOCLOOKUPDELNODE, &op)) {
|
H A D | load_hashnode.c | 30 iplookupop_t op; local 43 op.iplo_type = IPLT_HASH; 44 op.iplo_unit = unit; 45 op.iplo_arg = 0; 46 op.iplo_size = sizeof(ipe); 47 op.iplo_struct = &ipe; 48 strncpy(op.iplo_name, name, sizeof(op.iplo_name)); 60 err = (*iocfunc)(hashfd, SIOCLOOKUPADDNODE, &op); 62 err = (*iocfunc)(hashfd, SIOCLOOKUPDELNODE, &op); [all...] |
H A D | load_pool.c | 28 iplookupop_t op; local 41 op.iplo_unit = plp->ipo_unit; 42 op.iplo_type = IPLT_POOL; 43 op.iplo_arg = 0; 44 strncpy(op.iplo_name, plp->ipo_name, sizeof(op.iplo_name)); 45 op.iplo_size = sizeof(pool); 46 op.iplo_struct = &pool; 50 op.iplo_arg |= IPOOL_ANON; 53 if ((*iocfunc)(poolfd, SIOCLOOKUPADDTABLE, &op)) [all...] |
H A D | load_poolnode.c | 28 iplookupop_t op; local 40 op.iplo_unit = role; 41 op.iplo_type = IPLT_POOL; 42 op.iplo_arg = 0; 43 op.iplo_struct = &pn; 44 op.iplo_size = sizeof(pn); 45 strncpy(op.iplo_name, name, sizeof(op.iplo_name)); 56 err = (*iocfunc)(poolfd, SIOCLOOKUPADDNODE, &op); 58 err = (*iocfunc)(poolfd, SIOCLOOKUPDELNODE, &op); [all...] |
H A D | load_hash.c | 29 iplookupop_t op; local 47 op.iplo_arg = 0; 48 op.iplo_type = IPLT_HASH; 49 op.iplo_unit = iphp->iph_unit; 50 strncpy(op.iplo_name, iphp->iph_name, sizeof(op.iplo_name)); 51 if (*op.iplo_name == '\0') 52 op.iplo_arg = IPHASH_ANON; 53 op.iplo_size = sizeof(iph); 54 op [all...] |
/illumos-gate/usr/src/lib/libpp/common/ |
H A D | ppcontext.c | 27 * args op return 40 struct ppcontext* op; local 44 if (!(op = pp.context)) op = pp.context = newof(0, struct ppcontext, 1, 0); 45 memcpy(op, _PP_CONTEXT_BASE_, sizeof(struct ppcontext)); 49 if (!(op = np)) op = (struct ppcontext*)_PP_CONTEXT_BASE_; 50 if (op->filtab) hashfree(op->filtab); 51 if (op [all...] |
/illumos-gate/usr/src/lib/libc/port/gen/ |
H A D | plock.c | 58 plock(int op) /* desired operation */ argument 77 * upon "op" being bit encoded. 79 switch (op) {
|
H A D | flock.c | 29 int op; local 51 op = (operation & LOCK_NB) ? F_FLOCK : F_FLOCKW; 52 rv = fcntl(fildes, op, &l);
|
H A D | lmath.c | 59 lshiftl(dl_t op, int cnt) argument 64 r.xword = (long)(*(ulong_t *)&op >> (-cnt)); 67 r.xword = *(long *)&op << cnt; 72 lsign(dl_t op) argument 75 return ((*(long *)&op) >> 63);
|
/illumos-gate/usr/src/uts/common/io/cardbus/ |
H A D | cardbus_hp.h | 40 int op; /* operation - PCICFG_OP_ONLINE/PCICFG_OP_OFFLINE */ member in struct:cardbus_config_ctrl
|
/illumos-gate/usr/src/lib/libast/common/stdio/ |
H A D | fseek.c | 31 fseek(Sfio_t* f, long off, int op) argument 33 STDIO_INT(f, "fseek", int, (Sfio_t*, long, int), (f, off, op)) 35 return sfseek(f, (Sfoff_t)off, op|SF_SHARE) >= 0 ? 0 : -1; 41 fseek64(Sfio_t* f, int64_t off, int op) argument 43 STDIO_INT(f, "fseek64", int, (Sfio_t*, int64_t, int), (f, off, op)) 45 return sfseek(f, (Sfoff_t)off, op|SF_SHARE) >= 0 ? 0 : -1;
|
H A D | fseeko.c | 31 fseeko(Sfio_t* f, off_t off, int op) argument 33 STDIO_INT(f, "fseeko", int, (Sfio_t*, off_t, int), (f, off, op)) 35 return sfseek(f, (Sfoff_t)off, op|SF_SHARE) >= 0 ? 0 : -1; 41 fseeko64(Sfio_t* f, int64_t off, int op) argument 43 STDIO_INT(f, "fseeko64", int, (Sfio_t*, int64_t, int), (f, off, op)) 45 return sfseek(f, (Sfoff_t)off, op|SF_SHARE) >= 0 ? 0 : -1;
|
/illumos-gate/usr/src/lib/libast/common/string/ |
H A D | swapop.c | 35 * if size<0 then (-size) used and (-size==4)&&(op==3) => op=7 42 register int op; local 51 for (op = 0; op < z; op++) 52 if (!memcmp(internal, swapmem(op, external, tmp, z), z)) 54 if (size < 0 && z == 4 && op == 3) 55 op = 7; 56 return op; [all...] |
H A D | swapput.c | 34 * put v of n chars into b according to op 38 swapput(int op, void* b, int n, intmax_t v) argument 47 if (op) 48 swapmem(op, p, p, n);
|
H A D | swapget.c | 34 * get int_n from b according to op 38 swapget(int op, const void* b, int n) argument 47 if (op) swapmem(op, b, d = tmp, n);
|
H A D | swapmem.c | 34 * swap n bytes according to op 39 swapmem(int op, const void* from, void* to, register size_t n) argument 45 switch (op & (n - 1))
|
/illumos-gate/usr/src/lib/libtsol/common/ |
H A D | privlib.c | 34 * set_effective_priv(op, num_priv, priv_id1, priv_id2, ... ) 43 set_effective_priv(priv_op_t op, int num_priv, ...) argument 73 * Depend on system call to do sanity checking on "op" 75 status = setppriv(op, PRIV_EFFECTIVE, priv_set); 85 * set_inheritable_priv(op, num_priv, priv_id1, priv_id2, ... ) 94 set_inheritable_priv(priv_op_t op, int num_priv, ...) argument 123 * Depend on system call to do sanity checking on "op" 125 status = setppriv(op, PRIV_INHERITABLE, priv_set); 135 * set_permitted_priv(op, num_priv, priv_id1, priv_id2, ... ) 144 set_permitted_priv(priv_op_t op, in argument [all...] |
/illumos-gate/usr/src/uts/common/zmod/ |
H A D | inftrees.h | 16 table that indexes more bits of the code. op indicates whether 19 pointer, the low four bits of op is the number of index bits of 20 that table. For a length or distance, the low four bits of op 27 unsigned char op; /* operation, extra bits, table bits */ member in struct:__anon9343 32 /* op values as set by inflate_table():
|
/illumos-gate/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/ |
H A D | ldap_err.c | 54 * op : 67 int translate_ldap_error(int err, int op) { argument 103 if (op == OP_ADD || op == OP_MOD) 141 if (op == OP_BIND) /* the LDAP server accepts only strong authentication. */ 162 if (op == OP_MOD)
|
/illumos-gate/usr/src/lib/libast/common/port/ |
H A D | astquery.c | 49 Sfio_t* op; local 74 op = wfp; 79 op = sfstderr; 82 sfvprintf(op, format, ap); 83 sfsync(op);
|
/illumos-gate/usr/src/lib/libbc/libc/gen/common/ |
H A D | plock.c | 69 * op: desired operation 73 apply_lock(int op, int (*f)(caddr_t, u_int)) argument 84 switch (op) { 130 switch (op) { 153 * op: desired operation 156 plock(int op) argument 181 * upon "op" being bit encoded. 183 switch (op) { 219 if (e = apply_lock(op, mlock)) 220 (void) apply_lock(op, munloc [all...] |