/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:__anon24626 64 size_t buffsize, 93 size_t buffsize; member in struct:__anon24627 105 size_t buffsize, 137 size_t buffsize; member in struct:__anon24628 143 /* Setup an AsyncLineReader to read at most 'buffsize' characters (bytes) 147 * NOTE: buffsize must be > 0. If not, asyncLineReader_getLine will return 150 * buffsize must also sufficiently big to hold the final '\n'. 156 size_t buffsize, [all...] |
async-utils.c | 22 size_t buffsize, 26 ar->buffsize = buffsize; 29 if (buffsize > 0) 38 if (ar->pos >= ar->buffsize) { 43 ret = socket_recv(ar->io->fd, ar->buffer + ar->pos, ar->buffsize - ar->pos); 60 } while (ar->pos < ar->buffsize); 69 size_t buffsize, 73 aw->buffsize = buffsize; [all...] |
opengles.h | 64 void android_gles_server_path(char* buff, size_t buffsize);
|
opengles.c | 277 android_gles_server_path(char* buff, size_t buffsize) 279 strncpy_safe(buff, rendererAddress, buffsize); 324 void android_gles_server_path(char* buff, size_t buffsize)
|
/external/webp/src/dsp/ |
cpu-features.c | 68 * than 'buffsize' bytes. 71 read_file(const char* pathname, char* buffer, size_t buffsize) 80 len = read(fd, buffer, buffsize);
|
/external/webrtc/src/system_wrappers/source/android/ |
cpu-features.c | 68 * than 'buffsize' bytes. 71 read_file(const char* pathname, char* buffer, size_t buffsize) 80 len = read(fd, buffer, buffsize);
|
/ndk/sources/android/cpufeatures/ |
cpu-features.c | 154 * than 'buffsize' bytes. 157 read_file(const char* pathname, char* buffer, size_t buffsize) 167 while (count < (int)buffsize) { 168 int ret = read(fd, buffer + count, buffsize - count); [all...] |
/system/core/init/ |
bootchart.c | 66 proc_read(const char* filename, char* buff, size_t buffsize) 71 len = unix_read(fd, buff, buffsize-1);
|
/frameworks/rs/cpu_ref/ |
rsCpuCore.cpp | 205 read_file(const char* pathname, char* buffer, size_t buffsize) 214 len = read(fd, buffer, buffsize);
|