| /osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Opcode/ |
| H A D | ops.pm | 1 package ops; package 26 ops - Perl pragma to restrict unsafe operations when compiling 32 perl -M-ops=system ... # disable the 'system' opcode 36 Since the ops pragma currently has an irreversible global effect, it is
|
| /osnet-11/usr/src/lib/nsswitch/dns/common/ |
| H A D | dns_common.h | 62 dns_backend_op_t *ops; member in struct:dns_backend
|
| /osnet-11/usr/src/lib/passwdutil/ |
| H A D | __failed_count.c | 36 repops_t *ops; local 44 ops = rops[repnum]; 45 if ((ops->lock != NULL) && 46 (ret = ops->lock()) != PWU_SUCCESS) { 52 if ((ret = ops->getpwnam(username, items, NULL, &buf)) != PWU_SUCCESS) { 57 if ((ret = ops->update(items, NULL, buf)) != PWU_SUCCESS) { 75 if ((ret = ops->update(items, NULL, buf)) != PWU_NO_CHANGE && 85 if (((ret = ops->putpwnam(username, NULL, NULL, buf)) == 91 if (ops->unlock != NULL) { 92 ops 109 repops_t *ops; local [all...] |
| /osnet-11/usr/src/lib/libparted/common/libparted/fs/reiserfs/ |
| H A D | geom_dal.h | 34 struct dal_ops *ops; member in struct:_dal
|
| H A D | geom_dal.c | 103 static struct dal_ops ops = { variable in typeref:struct:dal_ops 117 dal->ops = &ops;
|
| /osnet-11/usr/src/lib/libast/common/string/ |
| H A D | wc2utf8.c | 41 static const Utf8_t ops[] = variable 57 for (i = 0; i < elementsof(ops); i++) 58 if (w < ops[i].range) 61 *s++ = ops[i].prefix | (w >> ops[i].shift); 62 switch (ops[i].shift)
|
| /osnet-11/usr/src/lib/nsswitch/user/common/ |
| H A D | user_common.h | 50 user_backend_op_t *ops; member in struct:user_backend 70 extern nss_backend_t *_nss_user_constr(user_backend_op_t *ops,
|
| /osnet-11/usr/src/lib/libnsl/rpc/ |
| H A D | auth_none.c | 148 static struct auth_ops ops; local 151 /* VARIABLES PROTECTED BY ops_lock: ops */ 154 if (ops.ah_nextverf == NULL) { 155 ops.ah_nextverf = authnone_verf; 156 ops.ah_marshal = authnone_marshal; 157 ops.ah_validate = authnone_validate; 158 ops.ah_refresh = authnone_refresh; 159 ops.ah_destroy = authnone_destroy; 162 return (&ops);
|
| H A D | svc_raw.c | 225 static struct xp_ops ops; local 228 /* VARIABLES PROTECTED BY ops_lock: ops */ 231 if (ops.xp_recv == NULL) { 232 ops.xp_recv = svc_raw_recv; 233 ops.xp_stat = svc_raw_stat; 234 ops.xp_getargs = svc_raw_getargs; 235 ops.xp_reply = svc_raw_reply; 236 ops.xp_freeargs = svc_raw_freeargs; 237 ops.xp_destroy = svc_raw_destroy; 238 ops [all...] |
| H A D | xdr_sizeof.c | 128 struct xdr_ops ops; local 135 ops.x_putlong = x_putlong; 136 ops.x_getlong = (dummyfunc1) harmless; 137 ops.x_putbytes = x_putbytes; 138 ops.x_inline = x_inline; 139 ops.x_getpostn = x_getpostn; 140 ops.x_setpostn = x_setpostn; 141 ops.x_destroy = x_destroy; 143 ops.x_getint32 = (dummyfunc3) harmless; 144 ops [all...] |
| H A D | xdr_stdio.c | 194 static struct xdr_ops ops; local 197 /* VARIABLES PROTECTED BY ops_lock: ops */ 200 if (ops.x_getlong == NULL) { 201 ops.x_getlong = xdrstdio_getlong; 202 ops.x_putlong = xdrstdio_putlong; 203 ops.x_getbytes = xdrstdio_getbytes; 204 ops.x_putbytes = xdrstdio_putbytes; 205 ops.x_getpostn = xdrstdio_getpos; 206 ops.x_setpostn = xdrstdio_setpos; 207 ops [all...] |
| H A D | clnt_raw.c | 309 static struct clnt_ops ops; local 312 /* VARIABLES PROTECTED BY ops_lock: ops */ 315 if (ops.cl_call == NULL) { 316 ops.cl_call = clnt_raw_call; 317 ops.cl_send = clnt_raw_send; 318 ops.cl_abort = clnt_raw_abort; 319 ops.cl_geterr = clnt_raw_geterr; 320 ops.cl_freeres = clnt_raw_freeres; 321 ops.cl_destroy = clnt_raw_destroy; 322 ops [all...] |
| H A D | xdr_mem.c | 241 static struct xdr_ops ops; local 244 /* VARIABLES PROTECTED BY ops_lock: ops */ 246 if (ops.x_getlong == NULL) { 247 ops.x_getlong = xdrmem_getlong; 248 ops.x_putlong = xdrmem_putlong; 249 ops.x_getbytes = xdrmem_getbytes; 250 ops.x_putbytes = xdrmem_putbytes; 251 ops.x_getpostn = xdrmem_getpos; 252 ops.x_setpostn = xdrmem_setpos; 253 ops [all...] |
| /osnet-11/usr/src/lib/libparted/common/libparted/fs/ext2/ |
| H A D | parted_io.c | 48 struct ext2_dev_ops ops = variable in typeref:struct:ext2_dev_ops 119 dh->ops = &ops;
|
| /osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/rcache/ |
| H A D | rc-int.h | 41 const struct _krb5_rc_ops *ops; member in struct:krb5_rc_st
|
| H A D | rc_base.c | 28 const krb5_rc_ops *ops; member in struct:krb5_rc_typelist 85 krb5_rc_register_type(krb5_context context, const krb5_rc_ops *ops) argument 92 for (t = typehead;t && strcmp(t->ops->type,ops->type);t = t->next) 104 t->ops = ops; 123 for (t = typehead; t && strcmp(t->ops->type, type); t = t->next) 140 id->ops = t->ops; 147 return id->ops [all...] |
| /osnet-11/usr/src/lib/nsswitch/nis/common/ |
| H A D | nis_common.h | 58 nis_backend_op_t *ops; member in struct:nis_backend 77 extern nss_backend_t *_nss_nis_constr(nis_backend_op_t *ops,
|
| /osnet-11/usr/src/lib/libshare/common/ |
| H A D | libshare_cache.c | 38 sa_cache_ops_t *ops; local 40 ops = (sa_cache_ops_t *)saplugin_find_ops(SA_PLUGIN_CACHE, 0); 41 if ((ops == NULL) || (ops->sac_init == NULL)) 44 return (ops->sac_init(hdl)); 50 sa_cache_ops_t *ops; local 52 ops = (sa_cache_ops_t *)saplugin_find_ops(SA_PLUGIN_CACHE, 0); 53 if (ops != NULL && ops->sac_fini != NULL) 54 ops 72 sa_cache_ops_t *ops; local 96 sa_cache_ops_t *ops; local 119 sa_cache_ops_t *ops; local 138 sa_cache_ops_t *ops; local 174 sa_cache_ops_t *ops; local 209 sa_cache_ops_t *ops; local 242 sa_cache_ops_t *ops; local 267 sa_cache_ops_t *ops; local 300 sa_cache_ops_t *ops; local 332 sa_cache_ops_t *ops; local 357 sa_cache_ops_t *ops; local 369 sa_cache_ops_t *ops; local [all...] |
| H A D | libshare_plugin.c | 300 * return ops table for specified plugin 385 * If ops == NULL return first plugin in the list. 388 saplugin_next_ops(sa_plugin_type_t type, sa_plugin_ops_t *ops) argument 417 if (ops == NULL) { 422 if (plugin->pi_ops == ops) {
|
| /osnet-11/usr/src/lib/libcmd/common/ |
| H A D | pathchk.c | 92 static const char* const ops[] = { "NAME_MAX", "PATH_MAX" }; local 95 if ((r = strtol(astconf(ops[op], path, NiL), NiL, 0)) < 0 && !errno)
|
| /osnet-11/usr/src/lib/nsswitch/mdns/common/ |
| H A D | mdns_common.h | 69 mdns_backend_op_t *ops; member in struct:mdns_backend
|
| /osnet-11/usr/src/lib/libparted/common/include/parted/ |
| H A D | filesys.h | 64 PedFileSystemOps* const ops; member in struct:_PedFileSystemType
|
| /osnet-11/usr/src/lib/fm/topo/libtopo/common/ |
| H A D | topo_module.c | 217 const topo_imodops_t *ops, topo_version_t version) 238 mod->tm_mops = (topo_imodops_t *)ops; 307 const topo_imodops_t *ops, topo_version_t version) 315 if ((mod = topo_mod_create(thp, name, path, ops, version)) == NULL) { 216 topo_mod_create(topo_hdl_t *thp, const char *name, const char *path, const topo_imodops_t *ops, topo_version_t version) argument 306 topo_modhash_load(topo_hdl_t *thp, const char *name, const char *path, const topo_imodops_t *ops, topo_version_t version) argument
|
| /osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/ccache/ |
| H A D | cccursor.c | 50 const krb5_cc_ops *ops; member in struct:_krb5_cccol_cursor 83 n->ops = NULL; 95 ret = krb5int_cc_typecursor_next(context, n->typecursor, &n->ops); 96 if (ret || n->ops == NULL) 98 } while (n->ops->ptcursor_new == NULL); 100 ret = n->ops->ptcursor_new(context, &n->ptcursor); 191 c->ops->ptcursor_free(context, &c->ptcursor); 327 if (cursor->ops == NULL) 334 ret = cursor->ops->ptcursor_next(context, cursor->ptcursor, ccache); 340 ret = cursor->ops [all...] |
| /osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/keytab/ |
| H A D | ktbase.c | 65 const krb5_kt_ops *ops; member in struct:krb5_kt_typelist 125 krb5_kt_register(krb5_context context, const krb5_kt_ops *ops) argument 134 for (t = kt_typehead; t && strcmp(t->ops->prefix,ops->prefix);t = t->next) 145 newt->ops = ops; 214 if (strcmp (tlist->ops->prefix, pfx) == 0) { 215 err = (*tlist->ops->resolve)(context, resid, &id); 260 keytab->ops && 261 (shandle = (krb5_ser_handle) keytab->ops [all...] |