Searched refs:bufsize (Results 1 – 11 of 11) sorted by relevance
/system/core/libzipfile/ |
D | centraldir.c | 186 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()
|
D | zipfile.c | 18 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()
|
D | private.h | 24 ssize_t bufsize; member
|
/system/core/sh/ |
D | output.c | 157 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()
|
D | output.h | 45 int bufsize; member
|
D | eval.c | 983 memout.bufsize = 64; in evalcommand()
|
/system/core/include/zipfile/ |
D | zipfile.h | 48 int decompress_zipentry(zipentry_t entry, void* buf, int bufsize);
|
/system/core/adb/ |
D | sysdeps.h | 218 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()
|
D | adb.h | 256 int list_transports(char *buf, size_t bufsize);
|
D | transport.c | 840 int list_transports(char *buf, size_t bufsize) in list_transports() argument 843 char* end = buf + bufsize; in list_transports()
|
/system/core/libcutils/ |
D | tzstrftime.c | 741 size_t bufsize; member 788 bufsize = namesize + st.st_size; 790 lbuf = (lbuf == NULL) ? malloc(bufsize) : realloc(lbuf, bufsize);
|