Home
last modified time | relevance | path

Searched refs:svalue (Results 1 – 14 of 14) sorted by relevance

/titanic_41/usr/src/lib/krb5/kadm5/
H A Dalt_prof.c420 char *svalue; local
490 !krb5_aprof_get_string(aprofile, hierarchy, TRUE, &svalue)) {
491 params.admin_server = svalue;
533 !krb5_aprof_get_string(aprofile, hierarchy, TRUE, &svalue)) {
534 params.dbname = svalue;
569 !krb5_aprof_get_string(aprofile, hierarchy, TRUE, &svalue)) {
571 params.admin_keytab = svalue;
589 !krb5_aprof_get_string(aprofile, hierarchy, TRUE, &svalue)) {
591 params.acl_file = svalue;
605 !krb5_aprof_get_string(aprofile, hierarchy, TRUE, &svalue)) {
[all …]
/titanic_41/usr/src/cmd/sgs/librtld_db/demo/common/
H A Dsyms.c150 ulong_t svalue; in addr_map_sym() local
159 svalue = (ulong_t)sym.st_value; in addr_map_sym()
161 if (svalue <= addr) { in addr_map_sym()
169 (svalue >= (ulong_t)lsymr->st_value))) { in addr_map_sym()
170 if (lsymr && (lsymr->st_value == svalue)) in addr_map_sym()
177 (svalue >= (ulong_t)symr->st_value)) { in addr_map_sym()
178 if (symr && (symr->st_value == svalue)) in addr_map_sym()
/titanic_41/usr/src/cmd/vi/port/
H A Dprintf.c301 int svalue; local
340 svalue = value;
341 while (svalue > 0) {
342 *--bp = (svalue % 10) + '0';
343 svalue /= 10;
H A Dex_unix.c321 execlp((char *)svalue(vi_SHELL), (char *)svalue(vi_SHELL),
324 svalue(vi_SHELL));
468 execlp(EXRECOVER, "exrecover", "-x", svalue(vi_DIRECTORY), file, (char *) 0); in recover()
470 execlp(EXRECOVER, "exrecover", svalue(vi_DIRECTORY), file, (char *) 0); in recover()
H A Dex_vops3.c314 isa(svalue(vi_PARAGRAPHS)) || isa(svalue(vi_SECTIONS))); in endPS()
592 isa(svalue(vi_SECTIONS))) { in lbrack()
H A Dex_temp.c75 if (strlen(svalue(vi_DIRECTORY)) > (PATH_MAX -13)) in fileinit()
77 CP(tfname, svalue(vi_DIRECTORY)); in fileinit()
H A Dex_io.c301 execlp((char *)svalue(vi_SHELL), "sh", "-c", genbuf, (char *)0); in glob()
303 filioerr(svalue(vi_SHELL)); in glob()
H A Dex.h148 #define svalue(a) options[a].osvalue macro
H A Dex_cmdsub.c670 CP(tagfbuf, svalue(vi_TAGS));
/titanic_41/usr/src/lib/libnisdb/yptol/
H A Ddit_access_utils.c1217 char *dn = 0, *skey, *svalue, *str; in singleWriteToDIT() local
1244 if ((svalue = am(myself, value->dsize + 1)) == 0) { in singleWriteToDIT()
1248 (void) memcpy(svalue, value->dptr, value->dsize); in singleWriteToDIT()
1252 sfree(svalue); in singleWriteToDIT()
1294 myself, statP, skey, svalue, t->dbId, map); in singleWriteToDIT()
1296 sfree(svalue); in singleWriteToDIT()
1317 myself, skey, svalue, t->dbId, map); in singleWriteToDIT()
1320 sfree(svalue); in singleWriteToDIT()
1348 myself, skey, svalue, t->dbId, map); in singleWriteToDIT()
1355 myself, skey, svalue, t->dbId, map); in singleWriteToDIT()
[all …]
/titanic_41/usr/src/cmd/power/
H A Dhandlers.c680 longlong_t svalue = 0, factor = 1; in get_scaled_value() local
684 svalue = strtol(str, &sp, 0); in get_scaled_value()
698 svalue *= factor; in get_scaled_value()
699 if (svalue < INT_MIN || svalue > INT_MAX) in get_scaled_value()
704 mesg(MDEBUG, "got scaled value %d\n", (int)svalue); in get_scaled_value()
705 return ((int)svalue); in get_scaled_value()
/titanic_41/usr/src/cmd/sgs/gprof/common/
H A Dgprof.c102 nlp->svalue = nlp->value / sizeof (UNIT); in alignentries()
104 bucket_of_entry = (nlp->svalue - lowpc) / scale; in alignentries()
105 bucket_of_code = (nlp->svalue + UNITS_TO_CODE - lowpc) / scale; in alignentries()
110 "to 0x%llx\n", nlp->svalue, in alignentries()
111 nlp->svalue + UNITS_TO_CODE); in alignentries()
189 svalue0 = nl[j].svalue; in asgnsamples()
190 svalue1 = nl[j+1].svalue; in asgnsamples()
1905 (void) printf(" %lld ", timesortnlp[i]->svalue); in main()
H A Dgprof.h234 pctype svalue; /* entry point aligned to histograms */ member
/titanic_41/usr/src/cmd/cmd-inet/usr.sbin/ipqosconf/
H A Dipqosconf.c4319 char *svalue; in read_int_array() local
4376 svalue = strchr(entry, ':'); in read_int_array()
4377 if (svalue == NULL) { /* missing value string */ in read_int_array()
4381 *svalue++ = '\0'; in read_int_array()
4392 SKIPWS(svalue); in read_int_array()
4393 tmp = svalue; in read_int_array()
4406 res = read_enum_value(NULL, svalue, enum_nvs, in read_int_array()
4411 value = (int)strtol(svalue, &end, 10); in read_int_array()
4413 if ((svalue == end) || (*end != NULL)) { in read_int_array()