/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_socket.py | 972 bufsize = -1 # Use default buffer size variable in class:FileObjectClassTestCase 1154 bufsize = 0 # Use unbuffered mode variable in class:UnbufferedFileObjectClassTestCase 1171 bufsize = 1 # Default-buffered for reading; line-buffered for writing variable in class:LineBufferedFileObjectClassTestCase 1234 bufsize = 2 # Exercise the buffering code variable in class:SmallBufferedFileObjectClassTestCase [all...] |
test_ossaudiodev.py | 54 dsp.bufsize()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_socket.py | 972 bufsize = -1 # Use default buffer size variable in class:FileObjectClassTestCase 1154 bufsize = 0 # Use unbuffered mode variable in class:UnbufferedFileObjectClassTestCase 1171 bufsize = 1 # Default-buffered for reading; line-buffered for writing variable in class:LineBufferedFileObjectClassTestCase 1234 bufsize = 2 # Exercise the buffering code variable in class:SmallBufferedFileObjectClassTestCase [all...] |
test_ossaudiodev.py | 54 dsp.bufsize()
|
/bionic/tests/ |
malloc_test.cpp | 331 size_t bufsize; local 332 FILE* memstream = open_memstream(&buf, &bufsize);
|
/external/e2fsprogs/e2fsck/ |
e2fsck.h | 541 const int bufsize, const char *proc); 545 struct ext2_inode * inode, int bufsize,
|
/external/libxml2/ |
xmlschemastypes.c | 5733 int bufsize; local 5813 int bufsize = dec.total + 1; local [all...] |
/external/tcpdump/ |
util.c | 285 register int v, char *buf, size_t bufsize) 297 (void)snprintf(buf, bufsize, fmt, v);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
ssl.py | 363 def makefile(self, mode='r', bufsize=-1): 372 return _fileobject(self, mode, bufsize, close=True)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/ |
expatreader.py | 87 def __init__(self, namespaceHandling=0, bufsize=2**16-20): 88 xmlreader.IncrementalParser.__init__(self, bufsize)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
ssl.py | 363 def makefile(self, mode='r', bufsize=-1): 372 return _fileobject(self, mode, bufsize, close=True)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/ |
expatreader.py | 87 def __init__(self, namespaceHandling=0, bufsize=2**16-20): 88 xmlreader.IncrementalParser.__init__(self, bufsize)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
turtle.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
turtle.py | [all...] |
/external/iputils/ |
rdisc.c | 1110 unsigned bufsize; local 1124 bufsize = numifs * sizeof(struct ifreq); 1125 buf = (char *)malloc(bufsize); 1143 ifc.ifc_len = bufsize; [all...] |
/external/libpcap/ |
pcap-dbus.c | 203 handle->bufsize = 0;
|
pcap-int.h | 143 int bufsize; member in struct:pcap
|
/external/libvncserver/test/ |
tjbench.c | 87 int bufsize; local 103 bufsize=pitch*scaledh; 106 if((dstbuf=(unsigned char *)malloc(bufsize)) == NULL) 112 memset(dstbuf, 127, bufsize);
|
/external/pdfium/core/src/fxcrt/ |
fx_basic_gcc.cpp | 105 FX_DWORD FXSYS_GetModuleFileName(FX_LPVOID hModule, char* buf, FX_DWORD bufsize)
|
/hardware/qcom/msm8960/kernel-headers/linux/ |
msm_q6vdec.h | 116 u32 bufsize; member in struct:vdec_buf_desc
|
/hardware/qcom/msm8960/original-kernel-headers/linux/ |
msm_q6vdec.h | 96 u32 bufsize; member in struct:vdec_buf_desc
|
/ndk/sources/host-tools/nawk-20071023/ |
proto.h | 126 extern int readrec(char **buf, int *bufsize, FILE *inf);
|
/system/core/adb/ |
adb.cpp | 291 static size_t fill_connect_data(char *buf, size_t bufsize) 294 return snprintf(buf, bufsize, "host::") + 1; 303 size_t remaining = bufsize; 317 return bufsize - remaining + 1;
|
/system/vold/bench/ |
benchgen.py | 107 bufsize = 1048576 variable 170 print >>bench, "char* buf = (char*) malloc(%d);" % (bufsize) 208 count = min(int(e.args[2]), bufsize) 217 count = min(int(e.args[2]), bufsize) 226 count = min(int(e.args[2]), bufsize) 234 count = min(int(e.args[2]), bufsize) 253 count = min(int(e.args[1]), bufsize)
|
/system/core/sdcard/ |
sdcard.c | 320 static ssize_t get_node_path_locked(struct node* node, char* buf, size_t bufsize) { 334 if (bufsize < namelen + 1) { 340 pathlen = get_node_path_locked(node->parent, buf, bufsize - namelen - 2); 360 char* buf, size_t bufsize, int search) 367 if (bufsize <= childlen) { 636 char* buf, size_t bufsize) 639 if (node && get_node_path_locked(node, buf, bufsize) < 0) { [all...] |