Searched refs:bufsize (Results 1 - 11 of 11) sorted by relevance

/system/core/include/zipfile/
H A Dzipfile.h48 int decompress_zipentry(zipentry_t entry, void* buf, int bufsize);
/system/core/libzipfile/
H A Dprivate.h24 ssize_t bufsize; member in struct:Zipfile
H A Dcentraldir.c186 ssize_t bufsize = file->bufsize; local
194 if (bufsize < EOCD_LEN) {
195 fprintf(stderr, "Length is %d -- too small\n", bufsize);
200 if (bufsize > MAX_EOCD_SEARCH) {
201 start = buf + bufsize - MAX_EOCD_SEARCH;
205 p = buf + bufsize - 4;
219 err = read_central_dir_values(file, eocd, (buf+bufsize)-eocd);
233 len = (buf+bufsize)-p;
H A Dzipfile.c18 file->bufsize = size;
116 decompress_zipentry(zipentry_t e, void* buf, int bufsize) argument
125 return uninflate(buf, bufsize, entry->data, entry->compressedSize);
/system/core/sh/
H A Doutput.h45 int bufsize; member in struct:output
H A Doutput.c157 dest->buf = ckmalloc(dest->bufsize);
159 dest->nleft = dest->bufsize;
162 offset = dest->bufsize;
164 dest->bufsize <<= 1;
165 dest->buf = ckrealloc(dest->buf, dest->bufsize);
166 dest->nleft = dest->bufsize - offset;
193 dest->nleft = dest->bufsize;
H A Deval.c983 memout.bufsize = 64;
/system/core/adb/
H A Dsysdeps.h215 static __inline__ int adb_socket_setbufsize( int fd, int bufsize )
217 int opt = bufsize;
414 static __inline__ int adb_socket_setbufsize( int fd, int bufsize )
416 int opt = bufsize;
H A Dadb.h249 int list_transports(char *buf, size_t bufsize);
H A Dtransport.c814 int list_transports(char *buf, size_t bufsize) argument
817 char* end = buf + bufsize;
/system/core/libcutils/
H A Dtzstrftime.c740 size_t bufsize; local
787 bufsize = namesize + st.st_size;
789 lbuf = (lbuf == NULL) ? malloc(bufsize) : realloc(lbuf, bufsize);

Completed in 76 milliseconds