Searched refs:values (Results 1 - 25 of 147) sorted by relevance

123456

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/t/
H A Dpopup_menu.t8 is ( $q->popup_menu(-name=>"foo", - values=>[0,1], -default=>0),
16 CGI::popup_menu(-values=>[CGI::optgroup(-values=>["b+"])],-default=>"b+"),
22 , "<optgroup> selections work when the default values contain regex characters (RT#49606)");
/osnet-11/usr/src/lib/common/
H A DMakefile.com29 VALUES = values-Xa.o values-Xc.o values-Xs.o values-Xt.o \
30 values-xpg4.o values-xpg6.o
47 values-xpg6.o := CPPFLAGS += -I$(SRC)/lib/libc/inc
/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/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);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/examples/
H A Dtryit.cgi14 -values=>['eenie','meenie','minie','moe'],
19 -values=>['red','green','blue','chartreuse']),
H A Dpopup.cgi15 -values=>['eenie','meenie','minie','moe'],
20 -values=>['red','green','blue','chartreuse']),
H A Dmonty.cgi66 my(@values,$key);
72 @values = $query->param($key);
73 print join(", ",@values),"<BR>\n";
H A Dcustomize.cgi66 -values=>\@colors,
74 -values=>\@colors,
82 -values=>\@sizes,
H A Dframeset.cgi61 -values=>['eenie','meenie','minie','moe']);
65 -values=>['red','green','blue','chartreuse']),
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/
H A DServerAttribute.java42 * The primary difference is that values substitute AttributeString
67 // Substitute for string values.
69 if (values != null) {
70 Object o = values.elementAt(0);
74 int i, n = values.size();
77 String s = (String)values.elementAt(i);
80 values.setElementAt(as, i);
95 // Get values by changing the attribute string objects into strings.
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/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/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...]
/osnet-11/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/
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...]
/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/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/cmd/perl/5.8.4/distrib/t/op/
H A Dgmagic.t61 values => [ 0 ],
68 $self->{values}[$#{ $self->{values} }];
74 push @{ $self->{values} }, $value;
81 $self->{values} = [ 0 ];
H A Davhv.t43 my @values = values %$a;
46 is ($#values, 2);
51 if ($key eq $keys[$i] && $value eq $values[$i] && $key eq lc($value)) {
144 ok (!grep defined, values %hv);
/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/rad/pysmf/common/
H A Drad.py44 def __init__(self, name, type, values):
47 self.values = values
/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/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/lib/libdtrace_jni/java/docs/examples/
H A DTestTarget.java52 for (Aggregation agg : a.asMap().values()) {
53 for (AggregationRecord rec : agg.asMap().values()) {
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/t/
H A Dasmdata.t19 my @data = values %insn_data;

Completed in 83 milliseconds

123456