Searched defs:nextbuflen (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libipp/
H A Dlibipp.c701 size_t nextbuflen = 0; local
765 if ((nextbuflen = (size_t)rc) == 0) {
779 while (nextbuflen != 0) {
780 dbuflen = nextbuflen;
788 if (nextbuflen > thisbuflen) {
789 if ((dbuf = realloc(dbuf, nextbuflen)) == NULL) {
794 thisbuflen = nextbuflen;
819 nextbuflen = (size_t)rc;
820 DBG1(DBG_IO, "nextbuflen = %d\n", nextbuflen);
[all...]
/illumos-gate/usr/src/uts/common/ipp/
H A Dippctl.c505 size_t nextbuflen; local
538 rc = ippctl_cmd(cbuf, cbuflen, &nextbuflen);
544 DBG1(DBG_CBOPS, "nextbuflen = %lu\n", nextbuflen);
545 *rvalp = nextbuflen;
562 if ((rc = ippctl_data(&dbuf, &dbuflen, &nextbuflen)) != 0)
575 DBG1(DBG_CBOPS, "nextbuflen = %lu\n", nextbuflen);
576 *rvalp = nextbuflen;

Completed in 47 milliseconds