Searched defs:attribute (Results 1 - 25 of 27) sorted by relevance

12

/osnet-11/usr/src/lib/libadm/common/
H A Ddevattr.c54 * attr The device's attribute to be looked for
58 * attribute <attr> for the device <device>, or (char *) NULL if none
67 * EINVAL The device does not have that attribute defined
72 devattr(char *device, char *attribute) argument
82 if (strcmp(attribute, DTAB_ALIAS) == 0)
90 if ((strcmp(attribute, DTAB_CDEVICE) == 0) ||
91 (strcmp(attribute, DTAB_BDEVICE) == 0)) {
95 if (strcmp(attribute, DTAB_PATHNAME) == 0)
98 if (strcmp(attribute, "desc") == 0)
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/
H A DServiceLocationAttributeVerifier.java41 * parse SLP template definitions, provide information on attribute
95 * attribute having the named id. IF no such attribute exists in the
97 * display attribute information. Programmatic verification of attributes
100 * @param attrId Id of attribute to return.
111 * is primarily for GUI tools to display attribute information.
117 * @return A <b>Dictionary</b> with attribute id's as the keys and
125 * Verify that the attribute parameter is a valid SLP attribute.
127 * @param <i>attribute</
135 verifyAttribute(ServiceLocationAttribute attribute) argument
[all...]
H A DAttributeVerifier.java25 // AttributeVerifier.java: An attribute verifier for SLP attributes.
44 * constructs the attribute descriptor objects describing the attribute. These
45 * are used during verification of the attribute. The AttributeVerifier
46 * and implementations of the attribute descriptors are free to optimize
47 * space utilization by lazily evaluating portions of the attribute
74 // When all template attribute assignments are found.
132 // attribute assignment.
169 // The attribute descriptors.
180 // Initialize the attribute verifie
324 verifyAttribute(ServiceLocationAttribute attribute) argument
[all...]
/osnet-11/usr/src/lib/libsldap/common/
H A Dns_getalias.c107 char *attribute[2]; local
147 attribute[0] = MAIL_MEMBER;
148 attribute[1] = NULL;
153 (const char **)attribute, NULL, 0, &result,
H A Dns_internal.h276 ATTRMAP = 7, /* attribute mapping */
427 * and hashTbl contain the current attribute/objectclass mappings.
461 ns_version_t version; /* Version # for attribute */
462 const char *profile_name; /* profile schema attribute name */
565 * hence single sort attribute was odopted. We dont
635 * It's created when handling an attribute name
644 * the attribute value in the attribute array for
647 * 'received_ranges' holds the first range of attribute
650 * 'current_range' holds the attribute value
769 char **attribute; member in struct:ns_ldap_cookie
[all...]
/osnet-11/usr/src/lib/libldap4/common/
H A Dsortctrl.c108 unsigned long *result, char **attribute)
118 (attribute == NULL)) {
158 * if the server returned one, decode the attribute from the Ber element
166 *attribute = attr;
168 *attribute = NULL;
214 /* Is this character a valid attribute description character ? */
314 * end of the attribute
107 ldap_parse_sort_control(LDAP *ld, LDAPControl **ctrlp, unsigned long *result, char **attribute) argument
/osnet-11/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/
H A Dkdb_ldap.c174 * Interrogate the root DSE (zero length DN) for an attribute
178 has_rootdse_ava(krb5_context context, char *ldap_server, char *attribute, argument
187 attrs[0] = attribute;
230 values = ldap_get_values(ld, msg, attribute);
H A Dldap_misc.c90 krb5_set_error_message (ctx, err, gettext("Error reading '%s' attribute: %s"),
102 krb5_set_error_message (ctx, err, gettext("Error reading '%s' attribute: %s"),
122 krb5_set_error_message (ctx, err, gettext("Error reading '%s' attribute: %s"),
132 krb5_set_error_message (ctx, err, gettext("Error reading '%s' attribute: %s"),
293 krb5_set_error_message (context, st, gettext("Error reading 'ldap_servers' attribute"));
911 * This function reads the attribute values (if the attribute is
912 * non-null) from the dn. The read attribute values is compared
915 * The bit to be set is selected such that the index of the attribute
920 * In case if either the attribute o
926 checkattributevalue(LDAP *ld, char *dn, char *attribute, char **attrvalues, int *mask) argument
1002 updateAttribute(LDAP *ld, char *dn, char *attribute, char *value) argument
1043 deleteAttribute(LDAP *ld, char *dn, char *attribute, char *value) argument
1233 krb5_ldap_get_value(LDAP *ld, LDAPMessage *ent, char *attribute, int *retval) argument
1255 krb5_ldap_get_string(LDAP *ld, LDAPMessage *ent, char *attribute, char **retstr, krb5_boolean *attr_present) argument
1284 krb5_ldap_get_strings(LDAP *ld, LDAPMessage *ent, char *attribute, char ***retarr, krb5_boolean *attr_present) argument
1329 krb5_ldap_get_time(LDAP *ld, LDAPMessage *ent, char *attribute, krb5_timestamp *rettime, krb5_boolean *attr_present) argument
1378 krb5_add_str_mem_ldap_mod(LDAPMod ***mods, char *attribute, int op, char **values) argument
1412 krb5_add_ber_mem_ldap_mod(LDAPMod ***mods, char *attribute, int op, struct berval **ber_values) argument
1458 krb5_add_int_arr_mem_ldap_mod(LDAPMod ***mods, char *attribute, int op, int *value) argument
1486 krb5_add_int_mem_ldap_mod(LDAPMod ***mods, char *attribute, int op, int value) argument
[all...]
/osnet-11/usr/src/cmd/ldap/ns_ldap/
H A Dldaplist.c269 char *attribute = "dn"; local
311 attribute = "NULL";
486 /* build the attribute array */
487 if (strncasecmp(attribute, "NULL", 4) == 0)
490 buffer[0] = strdup(attribute);
491 while ((p = strchr(attribute, ',')) != NULL) {
492 buffer[index++] = attribute = p + 1;
562 * to list the directory attribute instead of the entries
/osnet-11/usr/src/cmd/ntfsprogs/
H A Dntfscp.c65 char *attr_name; /* Write to attribute with this name. */
70 ATTR_TYPES attribute; /* Write to this attribute. */ member in struct:options
105 " -a, --attribute NUM Write to this attribute\n"
109 " -N, --attr-name NAME Write to attribute with this name\n"
131 { "attribute", required_argument, NULL, 'a' },
156 opts.attribute = AT_DATA;
176 if (opts.attribute != AT_DATA) {
178 "attribute
[all...]
/osnet-11/usr/src/lib/libast/amd64/include/ast/
H A Dlc.h110 const Lc_attribute_t* attribute; member in struct:Lc_map_s
116 const Lc_attribute_t* attribute; member in struct:Lc_attribute_list_s
/osnet-11/usr/src/lib/libast/amd64/src/lib/libast/
H A Dlc.h110 const Lc_attribute_t* attribute; member in struct:Lc_map_s
116 const Lc_attribute_t* attribute; member in struct:Lc_attribute_list_s
/osnet-11/usr/src/lib/libast/i386/include/ast/
H A Dlc.h110 const Lc_attribute_t* attribute; member in struct:Lc_map_s
116 const Lc_attribute_t* attribute; member in struct:Lc_attribute_list_s
/osnet-11/usr/src/lib/libast/i386/src/lib/libast/
H A Dlc.h110 const Lc_attribute_t* attribute; member in struct:Lc_map_s
116 const Lc_attribute_t* attribute; member in struct:Lc_attribute_list_s
/osnet-11/usr/src/lib/libast/sparc/include/ast/
H A Dlc.h110 const Lc_attribute_t* attribute; member in struct:Lc_map_s
116 const Lc_attribute_t* attribute; member in struct:Lc_attribute_list_s
/osnet-11/usr/src/lib/libast/sparc/src/lib/libast/
H A Dlc.h110 const Lc_attribute_t* attribute; member in struct:Lc_map_s
116 const Lc_attribute_t* attribute; member in struct:Lc_attribute_list_s
/osnet-11/usr/src/lib/libast/sparcv9/include/ast/
H A Dlc.h110 const Lc_attribute_t* attribute; member in struct:Lc_map_s
116 const Lc_attribute_t* attribute; member in struct:Lc_attribute_list_s
/osnet-11/usr/src/lib/libast/sparcv9/src/lib/libast/
H A Dlc.h110 const Lc_attribute_t* attribute; member in struct:Lc_map_s
116 const Lc_attribute_t* attribute; member in struct:Lc_attribute_list_s
/osnet-11/usr/src/lib/libast/common/port/
H A Dlc.c368 if (!(flags & (LC_abbreviated|LC_default|LC_verbose)) || !(ap->attribute->flags & LC_default))
372 for (t = ap->attribute->name; s < e && (*s = *t++); s++);
460 if (!mp->attribute)
463 al->attribute = mp->attribute;
716 ai->attribute = ap;
726 ai->attribute = ap;
828 int attribute; member in struct:Lc_scan_s
844 ls->attribute = elementsof(ls->lc.language->attributes);
846 if (++ls->attribute >
[all...]
H A Dlcgen.c71 Attribute_t* attribute; member in struct:Attribute_list_s
111 Attribute_t* attribute; member in struct:Map_s
116 Table_t attribute; member in struct:State_s
544 al->attribute = ap;
589 mp->attribute = 0;
593 if (!strcmp(al->attribute->link.code, arg[4]))
595 mp->attribute = al->attribute;
598 if (!mp->attribute)
600 fprintf(stderr, "%s: %d: %s: unknown attribute\
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
H A Dauthdata.c767 const krb5_data *attribute,
788 * an attribute; not sure how to federate "more" across module
801 attribute,
821 const krb5_data *attribute,
839 attribute,
858 const krb5_data *attribute)
874 attribute);
765 krb5_authdata_get_attribute(krb5_context kcontext, krb5_authdata_context context, const krb5_data *attribute, krb5_boolean *authenticated, krb5_boolean *complete, krb5_data *value, krb5_data *display_value, int *more) argument
818 krb5_authdata_set_attribute(krb5_context kcontext, krb5_authdata_context context, krb5_boolean complete, const krb5_data *attribute, const krb5_data *value) argument
856 krb5_authdata_delete_attribute(krb5_context kcontext, krb5_authdata_context context, const krb5_data *attribute) argument
H A Dpac.c1057 * PAC auth data attribute backend
1235 krb5_data attribute; member in struct:__anon1027
1256 *attr = mspac_attribute_types[i].attribute;
1270 if (attr->length == mspac_attribute_types[i].attribute.length &&
1271 strncasecmp(attr->data, mspac_attribute_types[i].attribute.data, attr->length) == 0) {
1314 &mspac_attribute_types[0].attribute,
1357 const krb5_data *attribute,
1376 code = mspac_attr2type(attribute, &type);
1410 const krb5_data *attribute,
1420 code = mspac_attr2type(attribute,
1353 mspac_get_attribute(krb5_context kcontext, krb5_authdata_context context, void *plugin_context, void *request_context, const krb5_data *attribute, krb5_boolean *authenticated, krb5_boolean *complete, krb5_data *value, krb5_data *display_value, int *more) argument
1405 mspac_set_attribute(krb5_context kcontext, krb5_authdata_context context, void *plugin_context, void *request_context, krb5_boolean complete, const krb5_data *attribute, const krb5_data *value) argument
[all...]
/osnet-11/usr/src/lib/libshell/common/sh/
H A Dparse.c105 char *attribute = atbuff; local
118 *attribute++ = 'x';
121 *attribute++ = 'r';
139 *attribute++ = n;
145 *attribute = 0;
/osnet-11/usr/src/cmd/ldap/common/
H A Dldapsearch.c81 fprintf( stderr, gettext("\t\t(if no attribute list is given, all are retrieved)\n") );
97 fprintf( stderr, gettext(" -A\t\tretrieve attribute names only (no values)\n") );
103 fprintf( stderr, gettext(" -F sep\tprint `sep' instead of `%s' between attribute names\n"), LDAPTOOL_DEFSEP );
105 fprintf( stderr, gettext(" -S attr\tsort the results by attribute `attr'\n") );
123 fprintf( stderr, gettext("\t\t (The aclRights operational attribute must be requested)\n"));
124 fprintf( stderr, gettext(" -X attrlist\tspecifies the getEffectiveRights control specific attribute list.\n"));
257 * attribute in the search list only for the purpose of
368 case 't': /* write attribute values to /tmp files */
377 case 'A': /* retrieve attribute names only -- no values */
471 case 'S': /* sort attribute */
853 char *attribute; local
870 printf(gettext("Server reported sorting error %ld: %s, attribute in error\\"%s\\"\\n"),result,sortresult2string(result),attribute); local
[all...]
/osnet-11/usr/src/lib/pkcs11/libpkcs11/common/
H A DmetaGlobal.h204 /* Generic attribute type, for storing and managing PKCS#11 attributes. */
206 CK_ATTRIBUTE attribute; member in struct:_attr

Completed in 70 milliseconds

12