HomeSort by relevance Sort by last modified time
    Searched refs:buffsize (Results 1 - 8 of 8) sorted by null

  /external/qemu/android/
async-utils.h 45 * 1/ setup the reader with asyncReader_init(ar, buffer, buffsize,io);
52 size_t buffsize; member in struct:__anon9341
64 size_t buffsize,
93 size_t buffsize; member in struct:__anon9342
105 size_t buffsize,
137 size_t buffsize; member in struct:__anon9343
142 /* Setup an AsyncLineReader to read at most 'buffsize' characters (bytes)
146 * NOTE: buffsize must be > 0. If not, asyncLineReader_getLine will return
149 * buffsize must also sufficiently big to hold the final '\n'.
155 size_t buffsize,
    [all...]
async-utils.c 22 size_t buffsize,
26 ar->buffsize = buffsize;
28 if (buffsize > 0)
37 if (ar->pos >= ar->buffsize) {
42 ret = socket_recv(ar->io->fd, ar->buffer + ar->pos, ar->buffsize - ar->pos);
59 } while (ar->pos < ar->buffsize);
68 size_t buffsize,
72 aw->buffsize = buffsize;
    [all...]
opengles.h 46 void android_gles_unix_path(char* buff, size_t buffsize, int port);
opengles.c 189 android_gles_unix_path(char* buff, size_t buffsize, int port)
192 char *p = buff, *end = buff + buffsize;
  /bionic/linker/
linker_format.c 136 vformat_buffer(char *buff, size_t buffsize, const char *format, va_list args)
141 out = buf_out_init(&bo, buff, buffsize);
151 format_buffer(char *buff, size_t buffsize, const char *format, ...)
157 ret = vformat_buffer(buff, buffsize, format, args);
387 /* Write an integer (octal or decimal) into a buffer, assumes buffsize > 2 */
389 format_integer(char *buffer, size_t buffsize, uint64_t value, int base, int isSigned)
394 buffsize -= 1;
398 format_number(buffer, buffsize, value, base, "0123456789");
401 /* Write an octal into a buffer, assumes buffsize > 2 */
403 format_octal(char *buffer, size_t buffsize, uint64_t value, int isSigned
    [all...]
  /system/core/run-as/
package.c 70 /* Read up to 'buffsize' bytes into 'buff' from the file
75 read_file(const char* filename, char* buff, size_t buffsize)
80 if (buffsize >= INT_MAX) {
95 len = read(fd, buff, buffsize);
  /ndk/sources/android/cpufeatures/
cpu-features.c 80 * than 'buffsize' bytes.
83 read_file(const char* pathname, char* buffer, size_t buffsize)
92 len = read(fd, buffer, buffsize);
  /system/core/init/
bootchart.c 66 proc_read(const char* filename, char* buff, size_t buffsize)
71 len = unix_read(fd, buff, buffsize-1);

Completed in 96 milliseconds