Home
last modified time | relevance | path

Searched refs:values (Results 1 – 25 of 330) sorted by relevance

12345678910>>...14

/titanic_41/usr/src/lib/krb5/plugins/preauth/pkinit/
H A Dpkinit_profile.c99 char **values = NULL; in pkinit_kdcdefault_strings() local
121 retval = profile_get_values(profile, names, &values); in pkinit_kdcdefault_strings()
122 if (retval == 0 && values != NULL) in pkinit_kdcdefault_strings()
136 retval = profile_get_values(profile, names, &values); in pkinit_kdcdefault_strings()
137 if (retval == 0 && values != NULL) in pkinit_kdcdefault_strings()
141 if (values == NULL) in pkinit_kdcdefault_strings()
144 *ret_value = values; in pkinit_kdcdefault_strings()
155 char **values = NULL; in pkinit_kdcdefault_string() local
157 retval = pkinit_kdcdefault_strings(context, realmname, option, &values); in pkinit_kdcdefault_string()
161 if (values[0] == NULL) { in pkinit_kdcdefault_string()
[all …]
/titanic_41/usr/src/lib/libsqlite/test/
H A Dlaststmtchanges.test35 insert into t0 values (1);
36 insert into t0 values (1);
37 insert into t0 values (2);
38 insert into t0 values (2);
39 insert into t0 values (1);
40 insert into t0 values (1);
41 insert into t0 values (1);
42 insert into t0 values (2);
88 insert into t2 values (NULL, last_statement_change_count(), NULL);
92 insert into t1 values (77);
[all …]
H A Dnull.test29 insert into t1 values(1,0,0);
30 insert into t1 values(2,0,1);
31 insert into t1 values(3,1,0);
32 insert into t1 values(4,1,1);
33 insert into t1 values(5,null,0);
34 insert into t1 values(6,null,1);
35 insert into t1 values(7,null,null);
54 # Check to see how the CASE expression handles NULL values. The
99 # Check to see that NULL values are ignored in aggregate functions.
109 # Check to see how WHERE clauses handle NULL values. A NULL value
[all …]
H A Dlastinsert.test35 insert into t1 values (1);
36 insert into t1 values (NULL);
37 insert into t1 values (NULL);
75 insert into t2 values (NEW.k*2, last_insert_rowid(), NULL, NULL);
79 insert into t1 values (13);
114 insert into t2 values (NEW.k*2, last_insert_rowid(), NULL, NULL);
153 insert into t2 values (NEW.k*2, last_insert_rowid(), NULL, NULL);
157 insert into v values (15);
192 insert into t2 values (77, last_insert_rowid(), NULL, NULL);
231 insert into t2 values (NEW.k*2, last_insert_rowid(), NULL, NULL);
[all …]
/titanic_41/usr/src/lib/print/libpapi-common/common/
H A Dattribute.c81 papi_attribute_value_t **values) in papiAttributeValuesFree() argument
83 if (values != NULL) { in papiAttributeValuesFree()
86 for (i = 0; values[i] != NULL; i++) in papiAttributeValuesFree()
87 papiAttributeValueFree(type, values[i]); in papiAttributeValuesFree()
89 free(values); in papiAttributeValuesFree()
99 if (attribute->values != NULL) in papiAttributeFree()
101 attribute->values); in papiAttributeFree()
136 if ((status == PAPI_OK) && (a->values != NULL)) { in collection_dup()
139 for (j = 0; ((a->values[j] != NULL) && in collection_dup()
145 a->values[j]); in collection_dup()
[all …]
/titanic_41/usr/src/lib/libsasl/lib/
H A Dauxprop.c69 struct propval *values; member
141 ctx->values = (struct propval *)ctx->mem_base->data; in prop_init()
215 retval->values[i].name = src_ctx->values[i].name; in prop_dup()
216 result = prop_setvals(retval, retval->values[i].name, in prop_dup()
217 src_ctx->values[i].values); in prop_dup()
313 ctx->values = NULL; in prop_request()
319 ctx->values = (struct propval *)ctx->mem_base->data; in prop_request()
326 memset(&(ctx->values[ctx->used_values]), 0, in prop_request()
332 ctx->list_end = (char **)(ctx->values + total_values); in prop_request()
343 if(!strcmp(ctx->values[j].name, names[i])) { in prop_request()
[all …]
/titanic_41/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/
H A Dldap_realm.c169 char **values = NULL; local
214 if ((values = ldap_get_values (ld, ent, "cn")) != NULL) {
216 (*realms)[count] = strdup(values[0]);
220 ldap_value_free(values);
261 char **values=NULL, **subtrees=NULL, **policy=NULL; local
325 if ((values = ldap_get_values(ld, ent, "krbPrincipalName")) != NULL) {
326 for (i = 0; values[i] != NULL; ++i) {
327 krb5_parse_name(context, values[i], &principal);
336 ldap_value_free(values);
399 char **values=NULL; local
[all …]
H A Dldap_services.c188 char **values=NULL, *attr[] = { "krbRealmReferences", NULL}; local
268 if ((values=ldap_get_values(ld, ent, "krbRealmReferences")) != NULL) {
269 count = ldap_count_values(values);
270 if ((st=copy_arrays(values, &oldrealmrefs, count)) != 0)
272 ldap_value_free(values);
420 char **values=NULL; local
472 if ((values=ldap_get_values(ld, ent, "krbServiceFlags")) != NULL) {
473 lservice->krbserviceflags = atoi(values[0]);
475 ldap_value_free(values);
478 if ((values=ldap_get_values(ld, ent, "krbHostServer")) != NULL) {
[all …]
H A Dldap_misc.c962 char **values=NULL, *attributes[2] = {NULL}; local
1000 if ((values=ldap_get_values(ld, entry, attribute)) != NULL) {
1008 for (i=0; values[i]; ++i) {
1009 if (strcasecmp(values[i], attrvalues[j]) == 0) {
1015 ldap_value_free(values);
1042 char *values[2]={NULL}; local
1044 values[0] = value;
1050 modAttr.mod_values = values;
1087 char *values[2]={NULL}; local
1089 values[0] = value;
[all …]
/titanic_41/usr/src/lib/libslp/javalib/com/sun/slp/
H A DServiceLocationAttribute.java78 Vector values = null; field in ServiceLocationAttribute
107 values = (Vector)values_in.clone(); in ServiceLocationAttribute()
109 verifyValueTypes(values, false); in ServiceLocationAttribute()
170 values = SrvLocHeader.parseCommaSeparatedListIn(rest, true); in ServiceLocationAttribute()
174 int i, n = values.size(); in ServiceLocationAttribute()
178 String value = (String)values.elementAt(i); in ServiceLocationAttribute()
184 values.setElementAt(o, i); in ServiceLocationAttribute()
196 verifyValueTypes(values, allowMultiValuedBooleans); in ServiceLocationAttribute()
272 if (values == null) { in getValues()
276 Vector ret = (Vector)values.clone(); in getValues()
[all …]
H A DServerAttribute.java69 if (values != null) { in ServerAttribute()
70 Object o = values.elementAt(0); in ServerAttribute()
74 int i, n = values.size(); in ServerAttribute()
77 String s = (String)values.elementAt(i); in ServerAttribute()
80 values.setElementAt(as, i); in ServerAttribute()
/titanic_41/usr/src/lib/gss_mechs/mech_krb5/profile/
H A Dprof_get.c133 struct profile_string_list values; in profile_get_values() local
140 if ((retval = init_list(&values))) in profile_get_values()
147 add_to_list(&values, value); in profile_get_values()
150 if (values.num == 0) { in profile_get_values()
155 end_list(&values, ret_values); in profile_get_values()
159 end_list(&values, 0); in profile_get_values()
343 struct profile_string_list values; in profile_get_subsection_names() local
350 if ((retval = init_list(&values))) in profile_get_subsection_names()
357 add_to_list(&values, name); in profile_get_subsection_names()
360 end_list(&values, ret_names); in profile_get_subsection_names()
[all …]
/titanic_41/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Dget_krbhst.c64 char **values, **cpp, *cp; in krb5_get_krbhst() local
80 retval = profile_get_values(context->profile, realm_kdc_names, &values); in krb5_get_krbhst()
92 for (cpp = values; *cpp; cpp++) { in krb5_get_krbhst()
103 count = cpp - values; in krb5_get_krbhst()
110 unsigned int len = strlen (values[i]) + 1; in krb5_get_krbhst()
116 memcpy (rethosts[i], values[i], len); in krb5_get_krbhst()
126 profile_free_list(values); in krb5_get_krbhst()
/titanic_41/usr/src/lib/common/
H A DMakefile.com32 VALUES = values-Xa.o values-Xc.o values-Xs.o values-Xt.o \
33 values-xpg4.o values-xpg6.o
50 values-xpg6.o := CPPFLAGS += -I$(SRC)/lib/libc/inc
/titanic_41/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/awt/
H A DColumnList.java509 public int addItem(Object[] values, boolean updateView) { in addItem() argument
513 if (isEqualTo(values, r)) { in addItem()
524 canvas.addItem(values, r); in addItem()
534 int comp = values[colIndex].toString().compareTo( in addItem()
539 canvas.insertItem(values, r); in addItem()
550 canvas.addItem(values); in addItem()
563 public void addItem(Object[] values) { in addItem() argument
564 addItem(values, true); in addItem()
572 private boolean isEqualTo(Object[] values, int r) { in isEqualTo() argument
575 if (!((String) getItem(r, c)).equals((String) values[c])) in isEqualTo()
[all …]
/titanic_41/usr/src/cmd/lp/lib/papi/
H A Dlpsched-misc.c51 char **values) in papiAttributeListAddLPStrings() argument
56 if ((list == NULL) || (name == NULL) || (values == NULL)) in papiAttributeListAddLPStrings()
59 for (i = 0; ((result == PAPI_OK) && (values[i] != NULL)); in papiAttributeListAddLPStrings()
62 values[i]); in papiAttributeListAddLPStrings()
86 char **values = NULL; in papiAttributeListGetLPStrings() local
95 addlist(&values, value); in papiAttributeListGetLPStrings()
97 if (values != NULL) { in papiAttributeListGetLPStrings()
100 *strings = values; in papiAttributeListGetLPStrings()
/titanic_41/usr/src/cmd/idmap/idmapd/
H A Ddbutils.c1016 int reqcol, const char ***values) in sql_compile_n_step_once() argument
1028 r = sqlite_step(*vm, ncol, values, NULL); in sql_compile_n_step_once()
1505 const char **values; in lookup_cache_sid2pid() local
1578 14, &values); in lookup_cache_sid2pid()
1585 if (values[0] == NULL || values[1] == NULL) { in lookup_cache_sid2pid()
1590 pid = strtoul(values[0], &end, 10); in lookup_cache_sid2pid()
1591 is_user = strncmp(values[1], "0", 2) ? 1 : 0; in lookup_cache_sid2pid()
1612 IDMAP_ID_IS_EPHEMERAL(pid) && values[2] != NULL) { in lookup_cache_sid2pid()
1613 exp = strtoll(values[2], &end, 10); in lookup_cache_sid2pid()
1627 if (values[4] != NULL) in lookup_cache_sid2pid()
[all …]
/titanic_41/usr/src/test/zfs-tests/tests/functional/cli_root/zpool_get/
H A Dzpool_get_002_pos.ksh60 $ZPOOL get all $TESTPOOL > /tmp/values.$$
63 $GREP ^"NAME " /tmp/values.$$ > /dev/null 2>&1
73 $GREP "$TESTPOOL *${properties[$i]}" /tmp/values.$$ > /dev/null 2>&1
85 COUNT=$($WC /tmp/values.$$ | $AWK '{print $1}')
93 $RM /tmp/values.$$
/titanic_41/usr/src/cmd/perl/contrib/Sun/Solaris/Project/
H A DProject.pm577 my ($values) = @_;
590 ($ret, $ref) = projent_tokenize_attribute_values($values);
669 $values]);
698 my ($name, $stock, $values);
721 ($name, $stock, $values) = $string =~
726 if (!defined($values)) {
727 $values = '';
730 ($ret, $ref) = projent_parse_attribute_values($values);
934 my ($values) = @_;
939 if (!defined($values)) {
[all …]
/titanic_41/usr/src/lib/gss_mechs/mech_krb5/support/
H A Dthreads.c43 struct tsd_block { void *values[K5_KEY_MAX]; }; member
57 void *values[K5_KEY_MAX]; member
77 if (destructors_set[i] && destructors[i] && t->values[i]) { in krb5int_thread_detach_hook()
78 void *v = t->values[i]; in krb5int_thread_detach_hook()
79 t->values[i] = 0; in krb5int_thread_detach_hook()
112 void *values[K5_KEY_MAX]; member
199 if (destructors_set[i] && destructors[i] && t->values[i]) { in thread_termination()
200 void *v = t->values[i]; in thread_termination()
201 t->values[i] = 0; in thread_termination()
247 return t->values[keynum]; in k5_getspecific()
[all …]
/titanic_41/usr/src/cmd/ed/
H A DMakefile31 XPG4EDOBJ= edobjs.xpg4/ed.o edobjs.xpg4/compile.o values-xpg4.o
32 XPG6EDOBJ= edobjs.xpg6/ed.o edobjs.xpg6/compile.o values-xpg6.o
106 values-xpg4.o: ../../lib/common/common/values-xpg4.c
107 $(COMPILE.c) -o $@ ../../lib/common/common/values-xpg4.c
109 values-xpg6.o: ../../lib/common/common/values-xpg6.c
110 $(COMPILE.c) -o $@ ../../lib/common/common/values-xpg6.c
/titanic_41/usr/src/lib/libshell/common/bltins/
H A Denum.c94 const char *values[1]; member
107 sfprintf(out,"\b%s\b%c",ep->values[0],0); in enuminfo()
109 sfprintf(out,"\b%s\b",ep->values[0]); in enuminfo()
116 else while(v=ep->values[n++]) in enuminfo()
149 while(v=ep->values[i]) in put_enum()
171 return((char*)ep->values[n]); in get_enum()
246 cp = (char*)&ep->values[n+1]; in enum_create()
248 ep->values[n] = 0; in enum_create()
252 ep->values[i++] = cp; in enum_create()
/titanic_41/usr/src/cmd/env/
H A DMakefile35 clean $(XPG4) := OBJS += values-xpg4.o
47 values-xpg4.o: ../../lib/common/common/values-xpg4.c
48 $(COMPILE.c) -o $@ ../../lib/common/common/values-xpg4.c
/titanic_41/usr/src/cmd/nice/
H A DMakefile36 clean $(XPG4) := OBJS += values-xpg4.o
48 values-xpg4.o: ../../lib/common/common/values-xpg4.c
49 $(COMPILE.c) -o $@ ../../lib/common/common/values-xpg4.c
/titanic_41/usr/src/cmd/date/
H A DMakefile37 clean $(XPG4) := OBJS += values-xpg4.o
51 values-xpg4.o: ../../lib/common/common/values-xpg4.c
52 $(COMPILE.c) -o $@ ../../lib/common/common/values-xpg4.c

12345678910>>...14