Home
last modified time | relevance | path

Searched refs:totsize (Results 1 – 4 of 4) sorted by relevance

/freebsd-src/usr.sbin/lpr/common_source/
H A Ddisplayq.c79 static long totsize; /* total print job size in bytes */ variable
103 totsize = 0; in displayq()
469 printf("%ld bytes\n", totsize); in inform()
470 totsize = 0; in inform()
576 totsize += copies * lbuf.st_size; in dump()
/freebsd-src/contrib/libpcap/
H A Dsockutils.h153 int sock_bufferize(const void *data, int size, char *outbuf, int *offset, int totsize, int checkonly, char *errbuf, int errbuflen);
H A Dsockutils.c1304 * resulting buffer will not be larger than 'totsize'. Finally, it updates
1323 * \param outbuf: user-allocated buffer (of size 'totsize') into which data
1329 * \param totsize: total size of the buffer into which data is being copied.
1352 int sock_bufferize(const void *data, int size, char *outbuf, int *offset, int totsize, int checkonly, char *errbuf, int errbuflen) in sock_bufferize()
1354 if ((*offset + size) > totsize) in sock_bufferize()
1350 sock_bufferize(const void * data,int size,char * outbuf,int * offset,int totsize,int checkonly,char * errbuf,int errbuflen) sock_bufferize() argument
/freebsd-src/sbin/savecore/
H A Dsavecore.c706 off_t dmpcnt, totsize; in DoTextdumpFile()
708 totsize = dumpsize; in DoTextdumpFile()
718 nr = pread(fd, buf, wl, lasthd - (totsize - dumpsize) - wl); in DoTextdumpFile()
703 off_t dmpcnt, totsize; DoTextdumpFile() local