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

1 2 3 4 5

  /netvirt/usr/src/cmd/perl/5.6.1/distrib/ext/attrs/
attrs.pm 1 package attrs; package
8 attrs - set/get attributes of a subroutine (deprecated)
13 use attrs qw(locked method);
17 @a = attrs::get(\&foo);
30 C<attrs::get> on a subroutine reference or name returns its list
31 of attribute names. Notice that C<attrs::get> is not exported.
56 XSLoader::load 'attrs', $VERSION;
  /netvirt/usr/src/cmd/perl/5.8.4/distrib/ext/attrs/
attrs.pm 1 package attrs; package
8 attrs - set/get attributes of a subroutine (deprecated)
13 use attrs qw(locked method);
17 @a = attrs::get(\&foo);
30 C<attrs::get> on a subroutine reference or name returns its list
31 of attribute names. Notice that C<attrs::get> is not exported.
56 XSLoader::load 'attrs', $VERSION;
  /netvirt/usr/src/cmd/fmli/vt/
winputs.c 35 #include "attrs.h"
59 chtype attrs = Attr_normal; local
68 p = attr_off(p, &attrs, win );
74 p = attr_on(p, &attrs, win);
86 wputchar(*p, attrs, win);
97 SIDE EFFECTS: set bits in `attrs' corresponding to the attribute to
105 attr_on(p, attrs, win)
107 chtype *attrs;
116 *attrs |= A_ALTCHARSET;
123 *attrs |= A_BOLD
    [all...]
  /netvirt/usr/src/lib/libxcurses2/src/libc/xcurses/
bkgrndst.c 64 attr_t attrs; local
66 attrs = w->_fg._at;
67 w->_fg._at = (attrs & ~w->_bg._at) | bg->_at;
  /netvirt/usr/src/cmd/fmli/qued/
fput.c 38 #include "attrs.h"
57 chtype attrs; local
61 attrs = Lastattr;
72 sptr = attr_off(sptr, &attrs, NULL) + 1;
79 sptr = attr_on(sptr, &attrs, NULL) + 1;
107 wputchar(' ', attrs, NULL);
115 wputchar(*sptr++, attrs, NULL);
151 Lastattr = attrs;
  /netvirt/usr/src/lib/gss_mechs/mech_krb5/crypto/
pbkdf2.c 64 int attrs = 0; local
71 tmpl[attrs].type = CKA_CLASS;
72 tmpl[attrs].pValue = &class;
73 tmpl[attrs].ulValueLen = sizeof (class);
74 attrs++;
80 tmpl[attrs].type = CKA_KEY_TYPE;
81 tmpl[attrs].pValue = &keytype;
82 tmpl[attrs].ulValueLen = sizeof (keytype);
83 attrs++;
95 tmpl[attrs].type = CKA_VALUE_LEN
    [all...]
  /netvirt/usr/src/lib/libcpc/common/
subr.c 91 nvlist_t *attrs; local
93 if (nvlist_alloc(&attrs, NV_UNIQUE_NAME, 0) == ENOMEM)
97 if (nvlist_add_uint64(attrs,
100 nvlist_free(attrs);
106 attrs) != 0) {
107 nvlist_free(attrs);
111 nvlist_free(attrs);
  /netvirt/usr/src/lib/print/libprint/common/
ns_cmn_kvp.c 122 ns_kvp_t *kvp, **attrs; local
147 for (attrs = printer->attributes; attrs != NULL && *attrs != NULL;
148 attrs++) {
151 if ((strcmp((*attrs)->key, NS_KEY_ALL) == 0) ||
152 (strcmp((*attrs)->key, NS_KEY_GROUP) == 0)) {
155 for (printers = string_to_value((*attrs)->key,
156 (*attrs)->value);
166 } else if (strcmp((*attrs)->key, NS_KEY_LIST) == 0)
    [all...]
  /netvirt/usr/src/uts/common/fs/cachefs/
cachefs_cod.c 81 /* if not connected then cannot get attrs */
114 struct vattr attrs; local
171 attrs.va_mask = AT_ALL;
172 error = VOP_GETATTR(cp->c_backvp, &attrs, 0, cr, NULL);
178 if ((!C_CACHE_VALID(mdp->md_vattr.va_mtime, attrs.va_mtime) ||
179 (cp->c_size != attrs.va_size)) &&
211 attrs.va_mask = AT_ALL;
212 error = VOP_GETATTR(cp->c_backvp, &attrs, 0, cr, NULL);
217 cp->c_size = attrs.va_size;
227 if (!C_CACHE_VALID(mdp->md_vattr.va_ctime, attrs.va_ctime))
259 struct vattr attrs; local
    [all...]
cachefs_noopc.c 68 /* if not connected then cannot get attrs */
102 struct vattr attrs; local
128 attrs.va_mask = AT_ALL;
129 error = VOP_GETATTR(cp->c_backvp, &attrs, 0, cr, NULL);
134 cp->c_attr = attrs;
135 if (attrs.va_size > cp->c_size)
136 cp->c_size = attrs.va_size;
155 struct vattr attrs; local
182 attrs.va_mask = AT_ALL;
183 error = VOP_GETATTR(cp->c_backvp, &attrs, 0, cr, NULL)
    [all...]
cachefs_strict.c 81 /* if not connected then cannot get attrs */
122 struct vattr attrs; local
147 attrs.va_mask = AT_ALL;
148 error = VOP_GETATTR(cp->c_backvp, &attrs, 0, cr, NULL);
151 cp->c_attr = attrs;
195 attrs.va_mask = AT_ALL;
196 error = VOP_GETATTR(cp->c_backvp, &attrs, 0, cr, NULL);
202 if ((!C_CACHE_VALID(mdp->md_vattr.va_mtime, attrs.va_mtime) ||
203 (cp->c_size != attrs.va_size)) &&
240 attrs.va_mask = AT_ALL
290 struct vattr attrs; local
    [all...]
  /netvirt/usr/src/lib/libdiskmgt/common/
alias.c 41 static int get_status(disk_t *diskp, int fd, nvlist_t *attrs);
60 nvlist_t *attrs = NULL; local
69 if (nvlist_alloc(&attrs, NVATTRS, 0) != 0) {
75 if (nvlist_add_uint32(attrs, DM_LUN, ap->lun) != 0) {
76 nvlist_free(attrs);
81 if (nvlist_add_uint32(attrs, DM_TARGET, ap->target) != 0) {
82 nvlist_free(attrs);
89 if (nvlist_add_string(attrs, DM_WWN, ap->wwn) != 0) {
90 nvlist_free(attrs);
102 if ((*errp = get_status(dp->p.disk, fd, attrs)) != 0)
    [all...]
bus.c 60 nvlist_t *attrs; local
62 if (nvlist_alloc(&attrs, NVATTRS, 0) != 0) {
69 if (nvlist_add_string(attrs, DM_BTYPE, bp->btype) != 0) {
70 nvlist_free(attrs);
76 if (nvlist_add_uint32(attrs, DM_CLOCK, bp->freq) != 0) {
77 nvlist_free(attrs);
84 if (nvlist_add_string(attrs, DM_PNAME, bp->pname) != 0) {
85 nvlist_free(attrs);
92 return (attrs);
controller.c 64 nvlist_t *attrs; local
66 if (nvlist_alloc(&attrs, NVATTRS, 0) != 0) {
73 if (nvlist_add_string(attrs, DM_CTYPE, cp->ctype) != 0) {
74 nvlist_free(attrs);
80 if (nvlist_add_boolean(attrs, DM_MULTIPLEX) != 0) {
81 nvlist_free(attrs);
89 if (nvlist_add_boolean(attrs, DM_FAST) != 0) {
90 nvlist_free(attrs);
96 if (nvlist_add_boolean(attrs, DM_WIDE) != 0) {
97 nvlist_free(attrs);
    [all...]
path.c 37 static int add_path_state(descriptor_t *dp, nvlist_t *attrs);
38 static int add_wwn(descriptor_t *dp, nvlist_t *attrs);
61 nvlist_t *attrs = NULL; local
65 if (nvlist_alloc(&attrs, NVATTRS, 0) != 0) {
70 if (nvlist_add_string(attrs, DM_CTYPE, pp->ctype) != 0) {
71 nvlist_free(attrs);
82 if (add_path_state(dp, attrs) != 0) {
83 nvlist_free(attrs);
87 if (add_wwn(dp, attrs) != 0) {
88 nvlist_free(attrs);
    [all...]
  /netvirt/usr/src/lib/libslp/javalib/com/sun/slp/
CSAAdvert.java 57 Vector attrs = new Vector(); // The attributes. field in class:CSAAdvert
115 byte attrBytes[] = hdr.parseAttributeVectorIn(attrs, dis, false);
  /netvirt/usr/src/lib/libtsnet/common/
tsol_sgettpent.c 231 char *attrs = tpstrp->attrs; local
249 if (attrs && *attrs != '\0' && *attrs != '#' && *attrs != '\n')
250 *errstrp = attrs;
257 if (attrs && *attrs != '\0' && *attrs != '#' && *attrs != '\n'
    [all...]
  /netvirt/usr/src/lib/nsswitch/ldap/common/
tsol_gettpent.c 64 char **attrs, **template; local
76 attrs = __ns_ldap_getAttr(result->entry, _TNRHTP_ATTRS);
77 if (attrs == NULL || attrs[0] == NULL || (strlen(attrs[0]) < 1)) {
82 /* "template:attrs" */
83 len = strlen(template[0]) + strlen(attrs[0]) + 2;
95 (void) snprintf(buffer, len, "%s:%s", template[0], attrs[0]);
  /netvirt/usr/src/cmd/tnf/prex/
prbk.c 82 tnfctl_trace_attrs_t attrs; local
84 if (check_kernelmode(&attrs))
86 if (attrs.trace_buf_state == TNFCTL_BUF_NONE) {
90 attrs.trace_buf_size);
91 if (attrs.trace_buf_state == TNFCTL_BUF_BROKEN) {
107 tnfctl_trace_attrs_t attrs; local
109 if (check_kernelmode(&attrs))
112 if (attrs.trace_buf_state != TNFCTL_BUF_NONE) {
117 if (size < attrs.trace_min_size) {
121 size, attrs.trace_min_size, attrs.trace_min_size)
298 tnfctl_trace_attrs_t attrs; local
336 tnfctl_trace_attrs_t attrs; local
381 tnfctl_trace_attrs_t attrs; local
    [all...]
  /netvirt/usr/src/lib/libnisdb/
ldap_ldap.c 67 char *attrs[2]; local
75 /* Evaluate t->element to get the t->attrs value */
103 filter = t->attrs;
134 attrs[0] = attrName;
135 attrs[1] = 0;
137 ls = buildLdapSearch(base, scope, 0, 0, filter, attrs, 0, 0);
225 * Derived via an LDAP search on the search triple 'attrs' or
255 ls.attrs = 0;
292 if (slen(item->searchSpec.triple.attrs) > 0 ||
316 ls.filter = item->searchSpec.triple.attrs;
    [all...]
  /netvirt/usr/src/cmd/fmli/oh/
fm_mn_par.h 86 struct attribute **attrs; member in struct:fld
  /netvirt/usr/src/cmd/format/
checkdev.c 284 nvlist_t *attrs = NULL; local
411 attrs = dm_get_attributes(slices[i], &error);
417 if (attrs == NULL) {
421 (void) nvlist_lookup_uint64(attrs, DM_START,
423 (void) nvlist_lookup_uint64(attrs, DM_SIZE,
427 nvlist_free(attrs);
428 attrs = NULL;
436 nvlist_free(attrs);
437 attrs = NULL;
448 nvlist_free(attrs);
    [all...]
  /netvirt/usr/src/cmd/ldapcachemgr/
cachemgr_discovery.c 138 * If more attrs are available, returns SLP_TRUE, otherwise returns
244 char *attrs; local
252 attrs = strdup(attrs_in);
253 state = attrs;
292 if (attrs) free(attrs);
335 /* retrieve all attrs for this server */
345 /* add this server and its attrs to the config object */
379 /* Open a handle which all attrs calls can use */
440 char *attrs, *tag, *val, *state local
    [all...]
  /netvirt/usr/src/cmd/wbem/provider/c/wbem_disk/common/
drive_descriptors.c 713 nvlist_t *attrs; local
720 attrs = dm_get_attributes(desc, &error);
721 if (error != 0 || attrs == NULL) {
726 (void) nvlist_lookup_uint32(attrs, DM_DRVTYPE, &drvtype);
727 nvlist_free(attrs);
  /netvirt/usr/src/common/openssl/crypto/store/
str_mem.c 222 STORE_ATTR_INFO *attrs = NULL; local
238 while((attrs = STORE_parse_attrs_next(attribute_context)))
251 sk_push(context->search_attributes,(char *)attrs);

Completed in 780 milliseconds

1 2 3 4 5