Searched defs:bufsize (Results 1 - 7 of 7) sorted by relevance

/system/core/sh/
H A Doutput.h45 int bufsize; member in struct:output
/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 %zd -- 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/adb/
H A Dtransport.c925 static size_t format_transport(atransport *t, char *buf, size_t bufsize, argument
933 return snprintf(buf, bufsize, "%s\t%s\n", serial, statename(t));
935 size_t len, remaining = bufsize;
949 return bufsize - remaining;
953 int list_transports(char *buf, size_t bufsize, int long_listing) argument
956 char* end = buf + bufsize;
H A Dadb.c287 static size_t fill_connect_data(char *buf, size_t bufsize) argument
290 return snprintf(buf, bufsize, "host::") + 1;
299 size_t remaining = bufsize;
313 return bufsize - remaining + 1;
/system/core/sdcard/
H A Dsdcard.c211 static ssize_t get_node_path_locked(struct node* node, char* buf, size_t bufsize) argument
214 if (bufsize < namelen + 1) {
220 pathlen = get_node_path_locked(node->parent, buf, bufsize - namelen - 2);
241 char* buf, size_t bufsize, int search)
248 if (bufsize <= childlen) {
389 char* buf, size_t bufsize)
392 if (node && get_node_path_locked(node, buf, bufsize) < 0) {
240 find_file_within(const char* path, const char* name, char* buf, size_t bufsize, int search) argument
388 lookup_node_and_path_by_id_locked(struct fuse* fuse, __u64 nid, char* buf, size_t bufsize) argument

Completed in 114 milliseconds