Home
last modified time | relevance | path

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

/system/core/libzipfile/
Dcentraldir.c186 ssize_t bufsize = file->bufsize; in read_central_dir() local
194 if (bufsize < EOCD_LEN) { in read_central_dir()
195 fprintf(stderr, "Length is %d -- too small\n", bufsize); in read_central_dir()
200 if (bufsize > MAX_EOCD_SEARCH) { in read_central_dir()
201 start = buf + bufsize - MAX_EOCD_SEARCH; in read_central_dir()
205 p = buf + bufsize - 4; in read_central_dir()
219 err = read_central_dir_values(file, eocd, (buf+bufsize)-eocd); in read_central_dir()
233 len = (buf+bufsize)-p; in read_central_dir()
Dzipfile.c18 file->bufsize = size; in init_zipfile()
116 decompress_zipentry(zipentry_t e, void* buf, int bufsize) in decompress_zipentry() argument
125 return uninflate(buf, bufsize, entry->data, entry->compressedSize); in decompress_zipentry()
Dprivate.h24 ssize_t bufsize; member
/system/core/sh/
Doutput.c157 dest->buf = ckmalloc(dest->bufsize); in emptyoutbuf()
159 dest->nleft = dest->bufsize; in emptyoutbuf()
162 offset = dest->bufsize; in emptyoutbuf()
164 dest->bufsize <<= 1; in emptyoutbuf()
165 dest->buf = ckrealloc(dest->buf, dest->bufsize); in emptyoutbuf()
166 dest->nleft = dest->bufsize - offset; in emptyoutbuf()
193 dest->nleft = dest->bufsize; in flushout()
Doutput.h45 int bufsize; member
Deval.c983 memout.bufsize = 64; in evalcommand()
/system/core/include/zipfile/
Dzipfile.h48 int decompress_zipentry(zipentry_t entry, void* buf, int bufsize);
/system/core/adb/
Dsysdeps.h218 static __inline__ int adb_socket_setbufsize( int fd, int bufsize ) in adb_socket_setbufsize() argument
220 int opt = bufsize; in adb_socket_setbufsize()
428 static __inline__ int adb_socket_setbufsize( int fd, int bufsize ) in adb_socket_setbufsize() argument
430 int opt = bufsize; in adb_socket_setbufsize()
Dadb.h256 int list_transports(char *buf, size_t bufsize);
Dtransport.c840 int list_transports(char *buf, size_t bufsize) in list_transports() argument
843 char* end = buf + bufsize; in list_transports()
/system/core/libcutils/
Dtzstrftime.c741 size_t bufsize; member
788 bufsize = namesize + st.st_size;
790 lbuf = (lbuf == NULL) ? malloc(bufsize) : realloc(lbuf, bufsize);