/ndk/sources/host-tools/nawk-20071023/ |
lex.c | 174 static int bufsize = 5; /* BUG: setting this small causes core dump! */ local 176 if (buf == 0 && (buf = (char *) malloc(bufsize)) == NULL) 187 c = gettok(&buf, &bufsize); 304 c = gettok(&buf, &bufsize);
|
/system/core/adb/ |
sysdeps.h | 229 static __inline__ int adb_socket_setbufsize( int fd, int bufsize ) 231 int opt = bufsize; 446 static __inline__ int adb_socket_setbufsize( int fd, int bufsize ) 448 int opt = bufsize;
|
/external/e2fsprogs/debugfs/ |
debugfs.h | 53 const char *cmd, int bufsize); 57 const char *cmd, int bufsize);
|
/external/libpcap/ |
dlpisubs.c | 332 p->bufsize = PKTBUFSIZE; 333 p->buffer = (u_char *)malloc(p->bufsize + p->offset);
|
pcap-can-linux.c | 151 handle->bufsize = 24; 186 handle->buffer = malloc(handle->bufsize);
|
sf-pcap-ng.c | 300 if (p->bufsize < bhdr.total_length) { 797 p->bufsize = 2048; 798 if (p->bufsize < total_length) 799 p->bufsize = total_length; 800 p->buffer = malloc(p->bufsize);
|
pcap-septel.c | 205 handle->bufsize = 0;
|
/external/strace/ |
pathtrace.c | 104 getfdpath(struct tcb *tcp, int fd, char *buf, unsigned bufsize) 113 n = readlink(linkpath, buf, bufsize - 1); 116 * it returns truncated result (IOW: n == bufsize - 1).
|
/frameworks/base/libs/hwui/ |
JankTracker.cpp | 233 void JankTracker::dumpBuffer(const void* buffer, size_t bufsize, int fd) { 234 if (bufsize < sizeof(ProfileData)) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
platform.py | 378 bufsize = None variable in class:_popen 381 def __init__(self,cmd,mode='r',bufsize=None): 389 self.bufsize = bufsize 398 if self.bufsize is not None: 419 def popen(cmd, mode='r', bufsize=None): 447 if bufsize is None: 450 return popen(cmd,mode,bufsize) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/ |
xmlreader.py | 111 def __init__(self, bufsize=2**16): 112 self._bufsize = bufsize
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
platform.py | 378 bufsize = None variable in class:_popen 381 def __init__(self,cmd,mode='r',bufsize=None): 389 self.bufsize = bufsize 398 if self.bufsize is not None: 419 def popen(cmd, mode='r', bufsize=None): 447 if bufsize is None: 450 return popen(cmd,mode,bufsize) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/ |
xmlreader.py | 111 def __init__(self, bufsize=2**16): 112 self._bufsize = bufsize
|
/frameworks/base/libs/androidfw/ |
BackupHelpers.cpp | 217 const int bufsize = 4*1024; local 224 char* buf = (char*)malloc(bufsize); 252 while ((amt = read(fd, buf, bufsize)) != 0 && bytesLeft > 0) { 267 memset(buf, 0, bufsize); 269 amt = bytesLeft < bufsize ? bytesLeft : bufsize; 314 const int bufsize = 4*1024; local 317 char* buf = (char*)malloc(bufsize); 322 while ((amt = read(fd, buf, bufsize)) != 0) { 551 const size_t BUFSIZE = 32 * 1024 [all...] |
/device/generic/goldfish/opengl/system/GLESv2_enc/ |
GL2Encoder.h | 158 static void s_glGetShaderSource(void *self, GLuint shader, GLsizei bufsize, 163 GLsizei bufsize, GLsizei* length, GLchar* infolog); 167 GLsizei bufsize, GLsizei* length, GLchar* infolog);
|
/external/boringssl/src/crypto/asn1/ |
bio_asn1.c | 93 int bufsize; member in struct:BIO_ASN1_BUF_CTX_t 170 ctx->bufsize = size; 238 assert(ctx->buflen <= ctx->bufsize);
|
/external/lldb/tools/debugserver/source/MacOSX/ |
MachThreadList.cpp | 260 size_t bufsize = sizeof(processInfo); local 262 if (sysctl(mib, (unsigned)(sizeof(mib)/sizeof(int)), &processInfo, &bufsize, NULL, 0) == 0 && bufsize > 0)
|
/external/e2fsprogs/e2fsck/ |
util.c | 452 struct ext2_inode *inode, int bufsize, 457 retval = ext2fs_read_inode_full(ctx->fs, ino, inode, bufsize); 466 struct ext2_inode * inode, int bufsize, 471 retval = ext2fs_write_inode_full(ctx->fs, ino, inode, bufsize);
|
/external/lldb/source/Host/macosx/ |
Symbols.cpp | 690 long bufsize; local 691 if ((bufsize = sysconf(_SC_GETPW_R_SIZE_MAX)) != -1) 693 char buffer[bufsize]; 697 if (getpwnam_r ("rc", &pwd, buffer, bufsize, &tilde_rc) == 0 [all...] |
/hardware/qcom/media/mm-video-legacy/vidc/venc/inc/ |
video_encoder_device_copper.h | 94 unsigned long bufsize; member in struct:msm_venc_seqheader
|
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/ |
msm_q6vdec.h | 72 u32 bufsize; member in struct:vdec_buf_desc
|
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/ |
msm_q6vdec.h | 72 u32 bufsize; member in struct:vdec_buf_desc
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_linuxaudiodev.py | 26 self.dev.bufsize()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_linuxaudiodev.py | 26 self.dev.bufsize()
|
/system/core/libsysutils/src/ |
NetlinkEvent.cpp | 471 const size_t bufsize = kTagLength + numaddrs * kMaxSingleAddressLength; local 472 char *buf = (char *) malloc(bufsize); 485 inet_ntop(AF_INET6, addrs + i, buf + pos, bufsize - pos); 489 pos += strlcpy(buf + pos, ifname, bufsize - pos);
|