Home
last modified time | relevance | path

Searched refs:allocbuf (Results 1 – 8 of 8) sorted by relevance

/titanic_50/usr/src/cmd/devmgmt/cmds/
H A Dgetdev.c281 char **allocbuf; /* Pointer to the allocated data */ local
301 allocbuf = (char **) malloc((ncriteria+1)*sizeof(char **));
306 pp = allocbuf; /* Beginning of the list */
313 } else allocbuf = (char **) NULL; /* NO criteria */
316 return (allocbuf);
H A Dgetdgrp.c333 void *allocbuf; /* Pointer to the allocated data */ local
351 if (allocbuf = malloc(ncriteria*sizeof(char **))) {
354 pp = (char **) allocbuf;
359 return ((char **) allocbuf);
/titanic_50/usr/src/lib/nsswitch/nis/common/
H A Dnis_common.h135 extern int validate_passwd_ids(char **linepp, int *linelenp, int allocbuf);
136 extern int validate_group_ids(char **linepp, int *linelenp, int allocbuf);
H A Dgetpwnam.c60 validate_passwd_ids(char **linepp, int *linelenp, int allocbuf) in validate_passwd_ids() argument
105 if (!allocbuf || (newline = malloc(newlinelen + 1)) == NULL) in validate_passwd_ids()
H A Dgetgrent.c69 validate_group_ids(char **linepp, int *linelenp, int allocbuf) in validate_group_ids() argument
103 if (!allocbuf || (newline = malloc(newlinelen + 1)) == NULL) in validate_group_ids()
/titanic_50/usr/src/uts/common/os/
H A Dvm_subr.c141 int allocbuf = 0; in default_physio() local
165 allocbuf = 1; in default_physio()
289 if (allocbuf) { in default_physio()
/titanic_50/usr/src/cmd/ssh/scp/
H A Dscp.c269 BUF *allocbuf(BUF *, int, int);
659 if ((bp = allocbuf(&buffer, fd, 2048)) == NULL) {
933 if ((bp = allocbuf(&buffer, ofd, 4096)) == NULL) {
1154 allocbuf(bp, fd, blksize) in allocbuf() function
/titanic_50/usr/src/cmd/cmd-inet/usr.bin/
H A Drcp.c109 static BUF *allocbuf(BUF *, int, int);
1235 bp = allocbuf(&buffer, f, RCP_BUFSIZE); in source()
1630 if ((bp = allocbuf(&buffer, ofd, RCP_BUFSIZE)) == 0) { in sink()
1715 allocbuf(BUF *bp, int fd, int blksize) in allocbuf() function