Home
last modified time | relevance | path

Searched refs:addlen (Results 1 – 6 of 6) sorted by relevance

/titanic_41/usr/src/cmd/praudit/
H A Dprio.c202 int addlen; in pr_printf() local
222 addlen = vsnprintf(context->outbuf_p, context->outbuf_remain_len - 1, in pr_printf()
225 if (addlen < 0) { in pr_printf()
230 if (addlen >= context->outbuf_remain_len - 1) { in pr_printf()
241 if (addlen >= 1) { in pr_printf()
242 context->outbuf_remain_len -= addlen; in pr_printf()
243 context->outbuf_p += addlen; in pr_printf()
/titanic_41/usr/src/lib/libresolv2/common/nameser/
H A Dns_print.c56 static void addlen(size_t len, char **buf, size_t *buflen);
145 addlen(x, &buf, &buflen); in ns_sprintrrf()
158 addlen(strlen(buf), &buf, &buflen); in ns_sprintrrf()
219 addlen(len, &buf, &buflen); in ns_sprintrrf()
228 addlen(len, &buf, &buflen); in ns_sprintrrf()
237 addlen(len, &buf, &buflen); in ns_sprintrrf()
246 addlen(len, &buf, &buflen); in ns_sprintrrf()
328 addlen(strlen(buf), &buf, &buflen); in ns_sprintrrf()
419 addlen(strlen(buf), &buf, &buflen); in ns_sprintrrf()
658 addlen(strlen(buf), &buf, &buflen); in ns_sprintrrf()
[all …]
/titanic_41/usr/src/cmd/fm/modules/common/eversholt/
H A Dplatform.c371 cfgadjust(struct cfgdata *rawdata, int addlen) in cfgadjust() argument
375 if (rawdata->nextfree + addlen >= rawdata->end) { in cfgadjust()
376 newlen = (((rawdata->nextfree - rawdata->begin + 1 + addlen) in cfgadjust()
436 int addlen, err; in add_prop_val() local
544 addlen = strlen(propn) + strlen(propv) + 2; in add_prop_val()
545 cfgadjust(rawdata, addlen); in add_prop_val()
555 rawdata->nextfree += addlen; in add_prop_val()
569 int err, addlen; in cfgcollect() local
581 addlen = strlen(path) + 1; in cfgcollect()
583 cfgadjust(rawdata, addlen); in cfgcollect()
[all …]
/titanic_41/usr/src/uts/common/io/comstar/port/srpt/
H A Dsrpt_ch.c813 uint8_t addlen; in srpt_ch_srp_cmd() local
833 addlen = cmd->cr_add_cdb_len & 0x3f; /* mask off 6 bits */ in srpt_ch_srp_cmd()
836 cur_desc_off += addlen; /* 32-bit arithmetic */ in srpt_ch_srp_cmd()
956 SRP_CDB_SIZE + (addlen * 4), 0); in srpt_ch_srp_cmd()
1021 if (addlen != 0) { in srpt_ch_srp_cmd()
1024 addlen * 4); in srpt_ch_srp_cmd()
/titanic_41/usr/src/uts/common/fs/nfs/
H A Dnfs4_vfsops.c1366 int i, addlen, error = 0; in resolve_sympath() local
1410 addlen = oldpn.pn_path - oldpn.pn_buf; in resolve_sympath()
1411 bcopy(oldpn.pn_buf, newpn.pn_path, addlen); in resolve_sympath()
1412 newpn.pn_pathlen += addlen; in resolve_sympath()
1413 newpn.pn_path += addlen; in resolve_sympath()
1420 addlen = strlen(symlink); in resolve_sympath()
1421 if (newpn.pn_pathlen + addlen >= newpn.pn_bufsize) { in resolve_sympath()
1425 bcopy(symlink, newpn.pn_path, addlen); in resolve_sympath()
1426 newpn.pn_pathlen += addlen; in resolve_sympath()
1427 newpn.pn_path += addlen; in resolve_sympath()
[all …]
/titanic_41/usr/src/lib/libsasl/lib/
H A Dcommon.c238 size_t addlen; in __sasl_add_string() local
242 addlen=strlen(add); /* only compute once */ in __sasl_add_string()
243 if (_buf_alloc(out, alloclen, (*outlen)+addlen)!=SASL_OK) in __sasl_add_string()
246 strncpy(*out + *outlen, add, addlen); in __sasl_add_string()
247 *outlen += addlen; in __sasl_add_string()