Searched defs:values (Results 1 - 25 of 38) sorted by relevance

12

/osnet-11/usr/src/lib/libsasl/include/
H A Dprop.h12 * and _then_ request values for all properties. Any change to the request
13 * list will discard any existing values. This assumption allows a very
35 * the resulting structure for property values
43 const char **values; member in struct:propval
45 * list of strings, values == NULL if property not
46 * found, *values == NULL if property found with
47 * no values
70 * possible other return values include: SASL_NOMEM, SASL_BADPARAM
81 * NOTE: may clear values from context as side-effect
83 * possible other return values includ
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Dget_krbhst.c64 char **values, **cpp, *cp; local
80 retval = profile_get_values(context->profile, realm_kdc_names, &values);
92 for (cpp = values; *cpp; cpp++) {
103 count = cpp - values;
110 unsigned int len = strlen (values[i]) + 1;
116 memcpy (rethosts[i], values[i], len);
126 profile_free_list(values);
H A Dan_to_ln.c616 char **values, **cpp; local
629 &values);
633 for (cpp = values; *cpp; cpp++) {
639 profile_free_list(values);
644 profile_free_list(values);
796 * values:
810 * Loop through all the mapping values.
H A Dlocaladdr.c1255 char **values; local
1263 err = profile_get_values (context->profile, profile_name, &values);
1268 for (iter = values; *iter; iter++) {
/osnet-11/usr/src/lib/libxprop/common/
H A Dlibxprop.c34 boolean_t inheritable, const char *values, char *const *values_list,
58 if (values != NULL) {
60 values)) != 0)
88 const char *string_default, boolean_t inheritable, const char *values,
92 string_default, inheritable, values, values_list, nvalues, colname,
32 xprop_encode(nvlist_t *xprops, const char *name, const char *type, boolean_t boolean_default, const char *string_default, boolean_t inheritable, const char *values, char *const *values_list, uint_t nvalues, const char *colname, boolean_t rightalign, boolean_t visible) argument
87 xprop_encode_string(nvlist_t *props, const char *name, const char *string_default, boolean_t inheritable, const char *values, char *const *values_list, uint_t nvalues, const char *colname) argument
/osnet-11/usr/src/lib/krb5/plugins/preauth/pkinit/
H A Dpkinit_profile.c100 char **values = NULL; local
122 retval = profile_get_values(profile, names, &values);
123 if (retval == 0 && values != NULL)
137 retval = profile_get_values(profile, names, &values);
138 if (retval == 0 && values != NULL)
142 if (values == NULL)
145 *ret_value = values;
156 char **values = NULL; local
158 retval = pkinit_kdcdefault_strings(context, realmname, option, &values);
162 if (values[
232 char **values = NULL; local
314 char **values = NULL; local
[all...]
/osnet-11/usr/src/lib/libshell/common/bltins/
H A Denum.c28 "type \atypename\a that can only store any one of the values in the indexed "
32 "[i:ignorecase?The values are case insensitive.]"
51 "[+?The variable can have one of the following values\fvalues\f. "
52 "The the values are \fcase\fcase sensitive.]"
54 "[+?If no \aname\as are specified then the names and values of all "
94 const char *values[1]; member in struct:Enum
107 sfprintf(out,"\b%s\b%c",ep->values[0],0);
109 sfprintf(out,"\b%s\b",ep->values[0]);
116 else while(v=ep->values[n++])
149 while(v=ep->values[
[all...]
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/
H A DServiceLocationAttribute.java78 Vector values = null; field in class:ServiceLocationAttribute
89 * @param values_in Vector of one or more attribute values. Vector
107 values = (Vector)values_in.clone();
109 verifyValueTypes(values, false);
170 values = SrvLocHeader.parseCommaSeparatedListIn(rest, true);
174 int i, n = values.size();
178 String value = (String)values.elementAt(i);
184 values.setElementAt(o, i);
196 verifyValueTypes(values, allowMultiValuedBooleans);
264 * @return A vector of attribute values, o
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/profile/
H A Dprof_get.c133 struct profile_string_list values; local
140 if ((retval = init_list(&values)))
147 add_to_list(&values, value);
150 if (values.num == 0) {
155 end_list(&values, ret_values);
159 end_list(&values, 0);
342 struct profile_string_list values; local
349 if ((retval = init_list(&values)))
356 add_to_list(&values, name);
359 end_list(&values, ret_name
378 struct profile_string_list values; local
[all...]
H A Dprof_solaris.c53 struct profile_string_list values; local
59 if (code = init_list(&values))
76 code2 = add_to_list(&values, name);
78 end_list(&values, &ret_values);
82 end_list(&values, &ret_values);
87 code2 = add_to_list(&values, name);
89 end_list(&values, &ret_values);
109 end_list(&values, &ret_values);
397 * where ret_value is a string array of any matching values assigned to name.
434 * where value is a string array values t
441 k5_profile_add_realm_entry(profile_t profile, char *realm, char *name, char **values) argument
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/support/
H A Dthreads.c45 struct tsd_block { void *values[K5_KEY_MAX]; }; member in struct:tsd_block
59 void *values[K5_KEY_MAX]; member in struct:tsd_block
79 if (destructors_set[i] && destructors[i] && t->values[i]) {
80 void *v = t->values[i];
81 t->values[i] = 0;
114 void *values[K5_KEY_MAX]; member in struct:tsd_block
205 if (destructors_set[i] && destructors[i] && t->values[i]) {
206 void *v = t->values[i];
207 t->values[i] = 0;
253 return t->values[keynu
[all...]
/osnet-11/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/
H A Dkdb_ldap.c182 char *attrs[2], **values=NULL; local
230 values = ldap_get_values(ld, msg, attribute);
231 if (values == NULL) {
236 for (i = 0; values[i] != NULL; i++) {
237 if (strcmp(values[i], value) == 0) {
250 if (values != NULL)
251 ldap_value_free(values);
266 *Return values:
H A Dldap_principal.c149 char **subtree=NULL, *princ_name=NULL, *realm=NULL, **values=NULL, *filter=NULL; local
203 values=ldap_get_values(ld, ent, "krbcanonicalname");
204 if (values == NULL)
205 values=ldap_get_values(ld, ent, "krbprincipalname");
206 if (values != NULL) {
207 for (i=0; values[i] != NULL; ++i) {
208 if (krb5_ldap_parse_principal_name(values[i], &princ_name) != 0)
225 ldap_value_free(values);
318 * other principals' keys are exisiting/left-over. So delete all the values.
H A Dldap_services.c121 /* check for the validity of the values */
184 char **values=NULL, *attr[] = { "krbRealmReferences", NULL}; local
225 /* check for the validity of the values */
264 if ((values=ldap_get_values(ld, ent, "krbRealmReferences")) != NULL) {
265 count = ldap_count_values(values);
266 if ((st=copy_arrays(values, &oldrealmrefs, count)) != 0)
268 ldap_value_free(values);
409 char **values=NULL; local
461 if ((values=ldap_get_values(ld, ent, "krbServiceFlags")) != NULL) {
462 lservice->krbserviceflags = atoi(values[
[all...]
H A Dldap_realm.c168 char **values = NULL; local
213 if ((values = ldap_get_values (ld, ent, "cn")) != NULL) {
215 (*realms)[count] = strdup(values[0]);
219 ldap_value_free(values);
258 char **values=NULL, **subtrees=NULL, **policy=NULL; local
321 if ((values = ldap_get_values(ld, ent, "krbPrincipalName")) != NULL) {
322 for (i = 0; values[i] != NULL; ++i) {
323 krb5_parse_name(context, values[i], &principal);
332 ldap_value_free(values);
397 char **values local
1194 char **values=NULL, *krbcontDN=NULL /*, *curr=NULL */; local
[all...]
H A Dldap_principal2.c110 char **values=NULL, *cname=NULL, **subtree=NULL; local
121 /* set initial values */
170 if ((values=ldap_get_values(ld, ent, "krbprincipalname")) != NULL) {
177 for (i=0; values[i] != NULL; ++i) {
178 if (strcmp(values[i], user) == 0) {
183 ldap_value_free(values);
189 if ((values=ldap_get_values(ld, ent, "krbcanonicalname")) != NULL) {
190 if (values[0] && strcmp(values[0], user) != 0) {
193 st = krb5_ldap_parse_principal_name(values[
515 char **values=NULL, *strval[10]={NULL}, errbuf[1024]; local
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/script/
H A Dexecute.c308 char **values = 0; local
346 values = grub_script_env_get (arg->str, arg->type);
347 for (i = 0; values && values[i]; i++)
354 if (grub_script_argv_append (&result, values[i],
355 grub_strlen (values[i])))
360 if (append (values[i], 1))
364 grub_free (values[i]);
366 grub_free (values);
/osnet-11/usr/src/lib/libsasl/lib/
H A Dauxprop.c69 struct propval *values; member in struct:propctx
141 ctx->values = (struct propval *)ctx->mem_base->data;
213 /* Now dup the values */
215 retval->values[i].name = src_ctx->values[i].name;
216 result = prop_setvals(retval, retval->values[i].name,
217 src_ctx->values[i].values);
267 * NOTE: may clear values from context as side-effect
313 ctx->values
758 prop_setvals(struct propctx *ctx, const char *name, const char **values) argument
[all...]
/osnet-11/usr/src/lib/libldap5/sources/ldap/common/
H A Dsasl.c447 /* Get old values */
466 /* Set new values */
839 char **values, **v, *mech, *m; local
867 values = ldap_get_values( ld, e, "supportedSASLMechanisms" );
868 if ( values == NULL ) {
875 for(v = values; *v != NULL; v++ ) {
879 ldap_value_free( values );
885 for(v = values; *v; v++) {
886 if (v != values) {
895 ldap_value_free( values );
[all...]
/osnet-11/usr/src/lib/libnwam/common/
H A Dlibnwam_values.c39 * Internal implementation of libnwam in-memory objects and values. Objects
71 nwam_value_create(nwam_value_type_t value_type, void *values, uint_t numvalues, argument
92 values_boolean = values;
102 values_int64 = values;
112 values_uint64 = values;
122 values_string = values;
157 void *values; local
163 values = old->nwv_values.nwv_boolean;
166 values = old->nwv_values.nwv_int64;
169 values
181 nwam_value_create_boolean_array(boolean_t *values, uint_t numvalues, nwam_value_t *valuep) argument
195 nwam_value_create_int64_array(int64_t *values, uint_t numvalues, nwam_value_t *valuep) argument
209 nwam_value_create_uint64_array(uint64_t *values, uint_t numvalues, nwam_value_t *valuep) argument
223 nwam_value_create_string_array(char **values, uint_t numvalues, nwam_value_t *valuep) argument
[all...]
/osnet-11/usr/src/lib/libhotplug/common/
H A Dlibhotplug.c872 char *values = NULL; local
911 rv = i_hp_parse_results(results, NULL, &values);
913 *resultsp = values;
932 char *values = NULL; local
971 rv = i_hp_parse_results(results, NULL, &values);
973 *resultsp = values;
/osnet-11/usr/src/lib/krb5/kadm5/
H A Dalt_prof.c132 * krb5_aprof_getvals() - Get values from alternate profile.
137 * retdata - Returned data values.
189 char **values; local
194 kret = krb5_aprof_getvals (acontext, hierarchy, &values);
199 while (values[idx])
203 valp = values[idx];
205 profile_free_list(values);
235 char **values; local
239 if (!(kret = krb5_aprof_getvals(acontext, hierarchy, &values))) {
242 for (idx=0; values[id
276 char **values; local
320 char **values; local
376 char **values; local
[all...]
/osnet-11/usr/src/cmd/powertop/common/
H A Dutil.c700 * Convert a ':'-separated null terminated string into an array of values
707 pt_delta_str_helper(char *s, uint64_t *values, int entries) argument
719 values[i] = strtoull(sp, 0, NULL);
723 values[i] = strtoull(sp, 0, NULL);
732 * the difference between the values of the numbers in each position.
/osnet-11/usr/src/lib/libshare_plugins/smb/
H A Dlibshare_smb.c203 const char *values; local
207 values = dgettext(TEXT_DOMAIN, "<string>");
210 values = dgettext(TEXT_DOMAIN, "<string>");
213 values = NULL;
216 values = dgettext(TEXT_DOMAIN, "<number>");
219 values = dgettext(TEXT_DOMAIN, "<path>");
222 values = dgettext(TEXT_DOMAIN, "<protocol>");
225 values = dgettext(TEXT_DOMAIN, "<access list>");
228 values = dgettext(TEXT_DOMAIN,
232 values
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt/cipher/
H A Decc.c446 * As of now the fix NIST recommended values are used.
1218 gcry_mpi_t values[6];
1221 /* Clear the values for easier error cleanup. */
1223 values[idx] = NULL;
1225 /* Fill values with all available parameters. */
1231 values[idx] = gcry_sexp_nth_mpi (l1, 1, GCRYMPI_FMT_USG);
1233 if (!values[idx])
1242 in missing values. */
1265 if (!values[idx])
1266 values[id
1214 gcry_mpi_t values[6]; local
[all...]

Completed in 122 milliseconds

12