/prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/linux/nfsd/ |
xdr.h | 130 struct nfsd_readargs read; member in union:nfsd_xdrstore
|
/prebuilts/ndk/9/platforms/android-14/arch-x86/usr/include/linux/nfsd/ |
xdr.h | 130 struct nfsd_readargs read; member in union:nfsd_xdrstore
|
/prebuilts/ndk/9/platforms/android-18/arch-arm/usr/include/linux/nfsd/ |
xdr.h | 130 struct nfsd_readargs read; member in union:nfsd_xdrstore
|
/prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/linux/nfsd/ |
xdr.h | 130 struct nfsd_readargs read; member in union:nfsd_xdrstore
|
/prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/linux/nfsd/ |
xdr.h | 130 struct nfsd_readargs read; member in union:nfsd_xdrstore
|
/prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/linux/nfsd/ |
xdr.h | 130 struct nfsd_readargs read; member in union:nfsd_xdrstore
|
/prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/nfsd/ |
xdr.h | 130 struct nfsd_readargs read; member in union:nfsd_xdrstore
|
/prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/nfsd/ |
xdr.h | 130 struct nfsd_readargs read; member in union:nfsd_xdrstore
|
/prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/nfsd/ |
xdr.h | 130 struct nfsd_readargs read; member in union:nfsd_xdrstore
|
/prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/nfsd/ |
xdr.h | 130 struct nfsd_readargs read; member in union:nfsd_xdrstore
|
/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/nfsd/ |
xdr.h | 130 struct nfsd_readargs read; member in union:nfsd_xdrstore
|
/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/nfsd/ |
xdr.h | 130 struct nfsd_readargs read; member in union:nfsd_xdrstore
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
ConfigParser.py | 45 read(filenames) 46 read and parse the list of named configuration files, given by 48 are ignored. Return list of successfully read files. 51 read and parse one configuration file, given as a file object. 285 def read(self, filenames): member in class:RawConfigParser 286 """Read and parse a filename or a list of filenames. 292 configuration files in the list will be read. A single 295 Return list of successfully read files. 311 """Like read() but the argument must be a file-like object.
|
codecs.py | 417 # For str->unicode decoding the first read will promote it to unicode 424 def read(self, size=-1, chars=-1, firstline=False): member in class:StreamReader 429 chars indicates the number of characters to read from the 430 stream. read() will never return more than chars 435 read from the stream for decoding purposes. The decoder 437 -1 indicates to read and decode as much as possible. size 444 next call to read(). 446 The method should use a greedy read strategy meaning that 447 it should read as much data as is allowed within the 450 on the stream, these should be read too 669 def read(self, size=-1): member in class:StreamReaderWriter 779 def read(self, size=-1): member in class:StreamRecoder [all...] |
gzip.py | 1 """Functions that read and write gzipped files. 17 READ, WRITE = 1, 2 25 return struct.unpack("<I", input.read(4))[0] 64 depending on whether the file will be read or written. The default 86 # underlying file object - in read mode, this causes data corruption. 107 self.mode = READ 110 # Buffer data read from gzip file. extrastart is offset in 188 magic = self.fileobj.read(2) 191 method = ord( self.fileobj.read(1) ) 194 flag = ord( self.fileobj.read(1) 241 def read(self, size=-1): member in class:GzipFile [all...] |
socket.py | 255 # default_bufsize it will be used for recv calls within read(). 263 # We use StringIO for the read buffer to avoid holding a list 336 def read(self, size=-1): member in class:_fileobject 338 # We never leave read() with any leftover data from a new recv() call 347 # Read until EOF 361 # Read until size bytes or EOF seen, whichever comes first 366 rv = buf.read(size) 368 self._rbuf.write(buf.read()) 393 # number of bytes we were asked to read. 415 self._rbuf.write(buf.read()) [all...] |
tempfile.py | 54 # flags read successfully, modify 580 def read(self, *args): member in class:SpooledTemporaryFile 581 return self._file.read(*args)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_httplib.py | 47 This is used below to test that httplib doesn't try to read 50 def read(self, n=-1): member in class:NoEOFStringIO 51 data = StringIO.StringIO.read(self, n) 53 raise AssertionError('caller tried to read past EOF') 59 raise AssertionError('caller tried to read past EOF') 156 self.assertEqual(resp.read(), 'Text') 170 # same behaviour than when we read the whole thing with read() 175 self.assertEqual(resp.read(2), 'Te') 177 self.assertEqual(resp.read(2), 'xt' [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
ConfigParser.py | 45 read(filenames) 46 read and parse the list of named configuration files, given by 48 are ignored. Return list of successfully read files. 51 read and parse one configuration file, given as a file object. 285 def read(self, filenames): member in class:RawConfigParser 286 """Read and parse a filename or a list of filenames. 292 configuration files in the list will be read. A single 295 Return list of successfully read files. 311 """Like read() but the argument must be a file-like object.
|
codecs.py | 417 # For str->unicode decoding the first read will promote it to unicode 424 def read(self, size=-1, chars=-1, firstline=False): member in class:StreamReader 429 chars indicates the number of characters to read from the 430 stream. read() will never return more than chars 435 read from the stream for decoding purposes. The decoder 437 -1 indicates to read and decode as much as possible. size 444 next call to read(). 446 The method should use a greedy read strategy meaning that 447 it should read as much data as is allowed within the 450 on the stream, these should be read too 669 def read(self, size=-1): member in class:StreamReaderWriter 779 def read(self, size=-1): member in class:StreamRecoder [all...] |
gzip.py | 1 """Functions that read and write gzipped files. 17 READ, WRITE = 1, 2 25 return struct.unpack("<I", input.read(4))[0] 64 depending on whether the file will be read or written. The default 86 # underlying file object - in read mode, this causes data corruption. 107 self.mode = READ 110 # Buffer data read from gzip file. extrastart is offset in 188 magic = self.fileobj.read(2) 191 method = ord( self.fileobj.read(1) ) 194 flag = ord( self.fileobj.read(1) 241 def read(self, size=-1): member in class:GzipFile [all...] |
socket.py | 255 # default_bufsize it will be used for recv calls within read(). 263 # We use StringIO for the read buffer to avoid holding a list 336 def read(self, size=-1): member in class:_fileobject 338 # We never leave read() with any leftover data from a new recv() call 347 # Read until EOF 361 # Read until size bytes or EOF seen, whichever comes first 366 rv = buf.read(size) 368 self._rbuf.write(buf.read()) 393 # number of bytes we were asked to read. 415 self._rbuf.write(buf.read()) [all...] |
tempfile.py | 54 # flags read successfully, modify 580 def read(self, *args): member in class:SpooledTemporaryFile 581 return self._file.read(*args)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_httplib.py | 47 This is used below to test that httplib doesn't try to read 50 def read(self, n=-1): member in class:NoEOFStringIO 51 data = StringIO.StringIO.read(self, n) 53 raise AssertionError('caller tried to read past EOF') 59 raise AssertionError('caller tried to read past EOF') 156 self.assertEqual(resp.read(), 'Text') 170 # same behaviour than when we read the whole thing with read() 175 self.assertEqual(resp.read(2), 'Te') 177 self.assertEqual(resp.read(2), 'xt' [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/ |
ProjectClassLoader.java | 138 int read = 0; local 140 read = fis.read(data); 147 Class<?> clazz = defineClass(null, data, 0, read);
|