Searched defs:recbuf (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/cmd/lp/lib/msgs/
H A Dmdestroy.c44 struct strrecvfd recbuf; local
57 if (ioctl(md->readfd, I_RECVFD, &recbuf) == 0)
58 close(recbuf.fd);
H A Dmlisten.c177 struct strrecvfd recbuf; local
295 if (ioctl(mdp->readfd, I_RECVFD, &recbuf) != 0)
315 TURN_ON(recbuf.fd, O_NDELAY);
327 md->gid = recbuf.gid;
328 md->readfd = md->writefd = recbuf.fd;
331 md->uid = recbuf.uid;
/illumos-gate/usr/src/lib/libadm/common/
H A Ddgrpent.c84 * recbuf Addr of malloc() buffer for reading records
91 static char *recbuf = NULL; variable
194 * in "recbuf"). If the buffer is not allocated or is too small to
204 * recbuf Address of the buffer containing records read from the
227 if (!recbuf) {
228 if (recbuf = malloc(DGRP_BUFSIZ)) {
236 recp = fgets(recbuf, recbufsz, oam_dgroup);
261 if (p = realloc(recbuf,
266 recbuf = p;
289 if (fgets(recbuf
[all...]
H A Ddevtab.c87 * recbuf Addr of malloc() buffer for reading records
92 static char *recbuf = NULL; variable
387 * "recbuf"). If the buffer is not allocated or is too small to
397 * recbuf Address of the buffer containing records read from the
420 if (!recbuf) {
421 if (recbuf = malloc(DTAB_BUFSIZ)) {
429 recp = fgets(recbuf, recbufsz, oam_devtab);
456 if (p = realloc(recbuf,
461 recbuf = p;
484 if (fgets(recbuf
[all...]

Completed in 58 milliseconds