Home
last modified time | relevance | path

Searched refs:vl (Results 1 – 15 of 15) sorted by relevance

/titanic_50/usr/src/cmd/fs.d/autofs/
H A Dns_nis.c174 int kl, nkl, vl; local
182 val = NULL; vl = 0;
200 &nkey, &nkl, &val, &vl);
205 &nkey, &nkl, &val, &vl);
215 &nkey, &nkl, &val, &vl);
222 &nkey, &nkl, &val, &vl);
237 if (kl >= 256 || vl >= 256)
239 if (kl < 2 || vl < 1)
251 (void) strncpy(map, val, vl);
252 map[vl] = '\0';
[all …]
/titanic_50/usr/src/uts/sun4/os/
H A Dmemlist.c551 struct bootmem_props *il, *pl, *vl; in copy_boot_memlists() local
563 vl = &bootmem_props[VIRTAVAIL]; in copy_boot_memlists()
572 vl->ptr += move / sizeof (struct prom_memlist); in copy_boot_memlists()
573 vl->maxsize -= move; in copy_boot_memlists()
574 } else if (vlen > vl->maxsize) { in copy_boot_memlists()
576 move = vlen - vl->maxsize; in copy_boot_memlists()
577 vl->maxsize = vlen; in copy_boot_memlists()
578 vl->ptr -= move / sizeof (struct prom_memlist); in copy_boot_memlists()
583 vl->nelems = vlen / sizeof (struct prom_memlist); in copy_boot_memlists()
587 (void) prom_virt_avail((caddr_t)vl->ptr); in copy_boot_memlists()
[all …]
/titanic_50/usr/src/cmd/make/lib/vroot/
H A Dsetenv.cc37 int length= 0, vl; in setenv() local
52 vl= strlen(value); in setenv()
53 if (!p || (length+vl+1 > strlen(p))) in setenv()
54 *q= p= (char *) malloc((unsigned)(length+vl+2)); in setenv()
/titanic_50/usr/src/uts/common/io/fibre-channel/fca/qlc/
H A Dql_debug.c154 va_list vl; in ql_el_msg() local
182 va_start(vl, ce); in ql_el_msg()
184 s = va_arg(vl, char *); in ql_el_msg()
202 (size_t)(uint32_t)((int)EL_BUFFER_RESERVE - rval), s, vl); in ql_el_msg()
210 (size_t)(uint32_t)((int)EL_BUFFER_RESERVE - rval), s, vl); in ql_el_msg()
228 va_end(vl); in ql_el_msg()
250 va_list vl; in ql_dbg_msg() local
252 va_start(vl, ce); in ql_dbg_msg()
254 s = va_arg(vl, char *); in ql_dbg_msg()
273 vcmn_err(ce, fmt, vl); in ql_dbg_msg()
[all …]
/titanic_50/usr/src/cmd/rpcinfo/
H A Drpcinfo.c667 struct verslist *vl; local
669 for (vl = rs->vlist; vl; vl = vl->next)
670 if (vl->vers == vers)
672 if (vl)
674 vl = (struct verslist *)malloc(sizeof (struct verslist));
675 if (vl == NULL)
677 vl->vers = vers;
678 vl->next = rs->vlist;
679 rs->vlist = vl;
717 struct verslist *vl; local
[all …]
/titanic_50/usr/src/cmd/ypcmd/
H A Dypcat.c213 callback(status, key, kl, val, vl, fail) in callback() argument
218 int vl;
228 (void) printf("%.*s\n", vl, val);
H A Dypxfr.c1590 ypall_callback(status, key, kl, val, vl, pushstat) in ypall_callback() argument
1595 int vl;
1617 valdat.dsize = vl;
/titanic_50/usr/src/cmd/fs.d/
H A Dmount.c909 vfsent_t **vl, *vp; in parmount() local
980 for (vl = vfsarray; vp = *vl; ) in parmount()
981 vp->next = *++vl; in parmount()
1189 vfsent_t *vp, *vpprev, **vl; in do_mounts() local
1221 vl = vfsarray; in do_mounts()
1223 for (vpprev = *vl; vp = *vl; vpprev = vp, vl++, cnt--) { in do_mounts()
1245 for (vlp = vl; *vlp; vlp++) in do_mounts()
1253 qsort((void *)vl, cnt, sizeof (vfsent_t *), in do_mounts()
1255 vp = *vl; in do_mounts()
/titanic_50/usr/src/uts/common/os/
H A Dmodsysfile.c1643 struct val_list *vl, *tvl; in make_prop() local
1659 for (vl = val, val_type = vl->val_type; vl; vl = vl->val_next) { in make_prop()
1660 if (val_type != vl->val_type) { in make_prop()
1667 vl = val; in make_prop()
1673 while (vl) { in make_prop()
1674 tvl = vl; in make_prop()
1675 vl = vl->val_next; in make_prop()
1697 while (vl) { in make_prop()
1698 tvl = vl; in make_prop()
1699 vl = vl->val_next; in make_prop()
/titanic_50/usr/src/cmd/latencytop/common/
H A Ddisplay.c1047 va_list vl; in lt_display_error() local
1051 va_start(vl, fmt); in lt_display_error()
1052 (void) vsnprintf(tmp, sizeof (tmp), fmt, vl); in lt_display_error()
1053 va_end(vl); in lt_display_error()
/titanic_50/usr/src/cmd/awk/
H A Dparse.c252 defn(Cell *v, Node *vl, Node *st) /* turn on FCN bit in definition */ in defn() argument
265 for (p = vl; p; p = p->nnext) in defn()
/titanic_50/usr/src/cmd/cmd-inet/usr.bin/pppd/
H A Dmain.c2272 size_t vl = varl + strlen(value) + 2; local
2280 newstring = (char *) malloc(vl+1);
2286 (void) slprintf(newstring, vl, "%s=%s", var, value);
2350 int vl = strlen(var); local
2361 if (strncmp(p, var, vl) == 0 && p[vl] == '=') {
2385 int vl = strlen(var); local
2392 if (strncmp(p, var, vl) == 0 && p[vl] == '=')
2393 return ((const char *)p+vl+1);
/titanic_50/usr/src/lib/libast/common/misc/
H A Doptget.c1786 int vl; in textout() local
1811 vl = m - 1; in textout()
1845 t = v + vl; in textout()
2114 int vl; in opthelp() local
2340 vl = 0; in opthelp()
2393 vl++; in opthelp()
2395 vl--; in opthelp()
2415 if (vl > 0 && *p != '\a') in opthelp()
2687 vl = 0; in opthelp()
2927 vl = m - 1; in opthelp()
[all …]
/titanic_50/usr/src/lib/libsldap/common/
H A Dns_reads.c953 char *tf, *tl, *vf, *vl, *eqsign; in __s_api_remove_rdn_space() local
967 vl = rdn + strlen(rdn) - 1; in __s_api_remove_rdn_space()
981 while (vf < vl && *vf == SPACETOK) in __s_api_remove_rdn_space()
984 while (vf < vl && *vl == SPACETOK) in __s_api_remove_rdn_space()
985 *vl-- = '\0'; in __s_api_remove_rdn_space()
/titanic_50/usr/src/uts/common/io/comstar/port/qlt/
H A Dqlt.c5970 va_list vl; in qlt_el_msg() local
5998 va_start(vl, ce); in qlt_el_msg()
6000 s = va_arg(vl, char *); in qlt_el_msg()
6006 (size_t)(uint32_t)((int)EL_BUFFER_RESERVE - rval), s, vl); in qlt_el_msg()
6023 va_end(vl); in qlt_el_msg()