Symbol: newbuf
crypto/krb5/src/lib/rpc/svc_udp.c
455
char *newbuf;
crypto/krb5/src/lib/rpc/svc_udp.c
473
newbuf = victim->cache_reply;
crypto/krb5/src/lib/rpc/svc_udp.c
480
newbuf = mem_alloc(su->su_iosz);
crypto/krb5/src/lib/rpc/svc_udp.c
481
if (newbuf == NULL) {
crypto/krb5/src/lib/rpc/svc_udp.c
493
rpc_buffer(xprt) = newbuf;
lib/libc/db/hash/hash_buf.c
131
bp = newbuf(hashp, addr, prev_bp);
lib/libc/db/hash/hash_buf.c
67
static BUFHEAD *newbuf(HTAB *, u_int32_t, BUFHEAD *);
lib/libc/rpc/svc_dg.c
577
char *newbuf;
lib/libc/rpc/svc_dg.c
601
newbuf = victim->cache_reply;
lib/libc/rpc/svc_dg.c
609
newbuf = mem_alloc(su->su_iosz);
lib/libc/rpc/svc_dg.c
610
if (newbuf == NULL) {
lib/libc/rpc/svc_dg.c
634
rpc_buffer(xprt) = newbuf;
lib/libipsec/ipsec_dump_policy.c
155
newbuf = (char *)realloc(buf, buflen);
lib/libipsec/ipsec_dump_policy.c
156
if (newbuf == NULL) {
lib/libipsec/ipsec_dump_policy.c
161
buf = newbuf;
lib/libipsec/ipsec_dump_policy.c
77
char *newbuf;
lib/libthr/thread/thr_clean.c
60
struct pthread_cleanup *newbuf;
lib/libthr/thread/thr_clean.c
62
newbuf = (void *)info;
lib/libthr/thread/thr_clean.c
63
newbuf->routine = routine;
lib/libthr/thread/thr_clean.c
64
newbuf->routine_arg = arg;
lib/libthr/thread/thr_clean.c
65
newbuf->onheap = 0;
lib/libthr/thread/thr_clean.c
66
newbuf->prev = curthread->cleanup;
lib/libthr/thread/thr_clean.c
67
curthread->cleanup = newbuf;
lib/libthr/thread/thr_clean.c
89
struct pthread_cleanup *newbuf;
lib/libthr/thread/thr_clean.c
93
if ((newbuf = (struct pthread_cleanup *)
lib/libthr/thread/thr_clean.c
95
newbuf->routine = routine;
lib/libthr/thread/thr_clean.c
96
newbuf->routine_arg = arg;
lib/libthr/thread/thr_clean.c
97
newbuf->onheap = 1;
lib/libthr/thread/thr_clean.c
98
newbuf->prev = curthread->cleanup;
lib/libthr/thread/thr_clean.c
99
curthread->cleanup = newbuf;
sbin/ggate/ggatec/ggatec.c
101
char *newbuf;
sbin/ggate/ggatec/ggatec.c
135
newbuf = malloc(ggio.gctl_length);
sbin/ggate/ggatec/ggatec.c
136
if (newbuf != NULL) {
sbin/ggate/ggatec/ggatec.c
138
ggio.gctl_data = newbuf;
sbin/ggate/ggatec/ggatec.c
218
char *newbuf;
sbin/ggate/ggatec/ggatec.c
254
newbuf = malloc(ggio.gctl_length);
sbin/ggate/ggatec/ggatec.c
255
if (newbuf != NULL) {
sbin/ggate/ggatec/ggatec.c
257
ggio.gctl_data = newbuf;
sbin/hastd/hast_compression.c
108
newbuf = malloc(size);
sbin/hastd/hast_compression.c
109
if (newbuf == NULL) {
sbin/hastd/hast_compression.c
114
bzero(newbuf, size);
sbin/hastd/hast_compression.c
117
return (newbuf);
sbin/hastd/hast_compression.c
126
unsigned char *newbuf;
sbin/hastd/hast_compression.c
136
newbuf = malloc(newsize);
sbin/hastd/hast_compression.c
137
if (newbuf == NULL) {
sbin/hastd/hast_compression.c
142
newsize = lzf_compress(data, *sizep, newbuf + sizeof(origsize),
sbin/hastd/hast_compression.c
145
free(newbuf);
sbin/hastd/hast_compression.c
149
bcopy(&origsize, newbuf, sizeof(origsize));
sbin/hastd/hast_compression.c
152
return (newbuf);
sbin/hastd/hast_compression.c
158
unsigned char *newbuf;
sbin/hastd/hast_compression.c
168
newbuf = malloc(origsize);
sbin/hastd/hast_compression.c
169
if (newbuf == NULL) {
sbin/hastd/hast_compression.c
175
*sizep - sizeof(origsize), newbuf, origsize);
sbin/hastd/hast_compression.c
177
free(newbuf);
sbin/hastd/hast_compression.c
184
return (newbuf);
sbin/hastd/hast_compression.c
206
unsigned char *newbuf;
sbin/hastd/hast_compression.c
217
newbuf = hast_hole_compress(*datap, &size);
sbin/hastd/hast_compression.c
221
newbuf = hast_hole_compress(*datap, &size);
sbin/hastd/hast_compression.c
222
if (newbuf != NULL)
sbin/hastd/hast_compression.c
225
newbuf = hast_lzf_compress(*datap, &size);
sbin/hastd/hast_compression.c
231
if (newbuf == NULL) {
sbin/hastd/hast_compression.c
237
free(newbuf);
sbin/hastd/hast_compression.c
244
*datap = newbuf;
sbin/hastd/hast_compression.c
254
unsigned char *newbuf;
sbin/hastd/hast_compression.c
262
newbuf = NULL;
sbin/hastd/hast_compression.c
266
newbuf = hast_hole_decompress(*datap, &size);
sbin/hastd/hast_compression.c
268
newbuf = hast_lzf_decompress(*datap, &size);
sbin/hastd/hast_compression.c
274
if (newbuf == NULL)
sbin/hastd/hast_compression.c
279
*datap = newbuf;
sbin/hastd/hast_compression.c
75
void *newbuf;
sbin/hastd/hast_compression.c
80
newbuf = malloc(sizeof(size));
sbin/hastd/hast_compression.c
81
if (newbuf == NULL) {
sbin/hastd/hast_compression.c
87
bcopy(&size, newbuf, sizeof(size));
sbin/hastd/hast_compression.c
90
return (newbuf);
sbin/hastd/hast_compression.c
97
void *newbuf;
sbin/sysctl/sysctl.c
294
void *newbuf;
sbin/sysctl/sysctl.c
386
newbuf = realloc(*newbufp, *newsizep + valsize);
sbin/sysctl/sysctl.c
387
if (newbuf == NULL)
sbin/sysctl/sysctl.c
389
memcpy((char *)newbuf + *newsizep, newval, valsize);
sbin/sysctl/sysctl.c
390
*newbufp = newbuf;
sbin/sysctl/sysctl.c
407
void *newbuf;
sbin/sysctl/sysctl.c
551
newbuf = NULL;
sbin/sysctl/sysctl.c
562
if (!parse_numeric(cp, fmt, kind, &newbuf, &newsize)) {
sbin/sysctl/sysctl.c
565
free(newbuf);
sbin/sysctl/sysctl.c
570
newval = newbuf;
sbin/sysctl/sysctl.c
580
free(newbuf);
sbin/sysctl/sysctl.c
602
free(newbuf);
sys/dev/iicbus/rtc/rtc8583.c
100
uint8_t newbuf[MAX_TRANSFER];
sys/dev/iicbus/rtc/rtc8583.c
104
newbuf[0] = regaddr;
sys/dev/iicbus/rtc/rtc8583.c
105
memcpy(newbuf + 1, buffer, buflen);
sys/dev/iicbus/rtc/rtc8583.c
109
msgs.buf = newbuf;
sys/kern/subr_sbuf.c
168
char *newbuf;
sys/kern/subr_sbuf.c
174
newbuf = SBMALLOC(newsize, SBUF_MALLOCFLAG(s));
sys/kern/subr_sbuf.c
175
if (newbuf == NULL)
sys/kern/subr_sbuf.c
177
memcpy(newbuf, s->s_buf, s->s_size);
sys/kern/subr_sbuf.c
182
s->s_buf = newbuf;
sys/netinet/libalias/alias_nbt.c
480
char newbuf[INET_ADDRSTRLEN];
sys/netinet/libalias/alias_nbt.c
495
inet_ntoa_r(nbtarg->newaddr, INET_NTOA_BUF(newbuf)),
sys/netinet/libalias/alias_nbt.c
504
printf("<%s>", inet_ntoa_r(nb->addr, INET_NTOA_BUF(newbuf)));
sys/netinet/libalias/alias_nbt.c
553
char newbuf[INET_ADDRSTRLEN];
sys/netinet/libalias/alias_nbt.c
569
inet_ntoa_r(nbtarg->newaddr, INET_NTOA_BUF(newbuf)));
sys/netinet/libalias/alias_nbt.c
575
printf("..%s", inet_ntoa_r(a->addr, INET_NTOA_BUF(newbuf)));
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
1657
char newbuf[IPF_FTPBUFSZ];
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
1763
(void) snprintf(newbuf, sizeof(newbuf), "%s %c1%c%u.%u.%u.%u%c%u%c\r\n",
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
1767
nlen = strlen(newbuf);
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
1785
COPYBACK(m, off, nlen, newbuf);
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
1803
char newbuf[IPF_FTPBUFSZ];
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
1859
(void) snprintf(newbuf, sizeof(newbuf), "%s (|||%u|)\r\n",
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
1863
newbuf, s));
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
1872
char newbuf[IPF_FTPBUFSZ];
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
1998
s = newbuf;
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
1999
left = sizeof(newbuf);
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
2019
nlen = strlen(newbuf);
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
2037
COPYBACK(m, off, nlen, newbuf);
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
278
char newbuf[IPF_FTPBUFSZ], *s;
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
387
(void) snprintf(newbuf, sizeof(newbuf), "%s %u,%u,%u,%u,%u,%u\r\n",
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
390
nlen = strlen(newbuf);
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
412
COPYBACK(m, off, nlen, newbuf);
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
670
char newbuf[IPF_FTPBUFSZ];
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
797
(void) snprintf(newbuf, sizeof(newbuf), "%s %s%u,%u,%u,%u,%u,%u%s\r\n",
sys/netpfil/ipfilter/netinet/ip_ftp_pxy.c
801
newbuf, s));
sys/netpfil/ipfilter/netinet/ip_irc_pxy.c
246
char ctcpbuf[IPF_IRCBUFSZ], newbuf[IPF_IRCBUFSZ];
sys/netpfil/ipfilter/netinet/ip_irc_pxy.c
278
*newbuf = '\0';
sys/netpfil/ipfilter/netinet/ip_irc_pxy.c
300
(void) strncpy(newbuf, ctcpbuf, i);
sys/netpfil/ipfilter/netinet/ip_irc_pxy.c
302
(void) snprintf(newbuf, sizeof(newbuf), "%u %u\001\r\n", a1, a5);
sys/netpfil/ipfilter/netinet/ip_irc_pxy.c
304
nlen = strlen(newbuf);
sys/netpfil/ipfilter/netinet/ip_irc_pxy.c
341
COPYBACK(m, off, nlen, newbuf);
usr.bin/m4/misc.c
198
unsigned char *newbuf;
usr.bin/m4/misc.c
202
newbuf = xrealloc(buf, bufsize, "too many characters pushed back");
usr.bin/m4/misc.c
204
bbase[i] = (bbase[i]-buf)+newbuf;
usr.bin/m4/misc.c
205
bp = (bp-buf)+newbuf;
usr.bin/m4/misc.c
206
bufbase = (bufbase-buf)+newbuf;
usr.bin/m4/misc.c
207
buf = newbuf;
usr.sbin/dconschat/dconschat.c
394
off_t newbuf;
usr.sbin/dconschat/dconschat.c
398
newbuf = dc->paddr + ntohl(dbuf.ooffset[j]);
usr.sbin/dconschat/dconschat.c
401
if (newbuf != o->buf) {
usr.sbin/dconschat/dconschat.c
406
o->buf = newbuf;
usr.sbin/makefs/ffs.c
1103
u_char *newbuf;
usr.sbin/makefs/ffs.c
1134
newbuf = erealloc(dbuf->buf, dbuf->size + DIRBLKSIZ);
usr.sbin/makefs/ffs.c
1135
dbuf->buf = newbuf;