/prebuilts/ndk/9/platforms/android-18/arch-arm/usr/include/linux/ |
android_pmem.h | 46 ssize_t (*read) (struct file *, char __user *, size_t, long long *); member in struct:pmem_file_operations
|
/prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/linux/ |
android_pmem.h | 46 ssize_t (*read) (struct file *, char __user *, size_t, long long *); member in struct:pmem_file_operations
|
/prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/linux/ |
android_pmem.h | 46 ssize_t (*read) (struct file *, char __user *, size_t, long long *); member in struct:pmem_file_operations
|
/prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/linux/ |
android_pmem.h | 46 ssize_t (*read) (struct file *, char __user *, size_t, long long *); member in struct:pmem_file_operations
|
/prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/ |
android_pmem.h | 46 ssize_t (*read) (struct file *, char __user *, size_t, long long *); member in struct:pmem_file_operations
|
/prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/ |
android_pmem.h | 46 ssize_t (*read) (struct file *, char __user *, size_t, long long *); member in struct:pmem_file_operations
|
/prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/ |
android_pmem.h | 46 ssize_t (*read) (struct file *, char __user *, size_t, long long *); member in struct:pmem_file_operations
|
/prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/ |
android_pmem.h | 46 ssize_t (*read) (struct file *, char __user *, size_t, long long *); member in struct:pmem_file_operations
|
/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/ |
android_pmem.h | 46 ssize_t (*read) (struct file *, char __user *, size_t, long long *); member in struct:pmem_file_operations
|
/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/ |
android_pmem.h | 46 ssize_t (*read) (struct file *, char __user *, size_t, long long *); member in struct:pmem_file_operations
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
StringIO.py | 1 r"""File-like objects that read from or write to a string buffer. 12 buf = f.read() # read until EOF 13 buf = f.read(n) # read up to n bytes 14 buf = f.readline() # read until end of line ('\n') or EOF 119 def read(self, n = -1): member in class:StringIO 120 """Read at most size bytes from the file 121 (less if the read hits EOF before obtaining size bytes). 123 If the size argument is negative or omitted, read all data until EO [all...] |
mimetypes.py | 76 self.read(name, strict) 194 def read(self, filename, strict=True): member in class:MimeTypes 196 Read a single mime.types-format file, specified by pathname. 207 Read a single mime.types-format file. 359 db.read(file)
|
robotparser.py | 19 """ This class provides a set of methods to read, parse and answer 54 def read(self): member in class:RobotFileParser
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
StringIO.py | 1 r"""File-like objects that read from or write to a string buffer. 12 buf = f.read() # read until EOF 13 buf = f.read(n) # read up to n bytes 14 buf = f.readline() # read until end of line ('\n') or EOF 119 def read(self, n = -1): member in class:StringIO 120 """Read at most size bytes from the file 121 (less if the read hits EOF before obtaining size bytes). 123 If the size argument is negative or omitted, read all data until EO [all...] |
mimetypes.py | 76 self.read(name, strict) 194 def read(self, filename, strict=True): member in class:MimeTypes 196 Read a single mime.types-format file, specified by pathname. 207 Read a single mime.types-format file. 359 db.read(file)
|
robotparser.py | 19 """ This class provides a set of methods to read, parse and answer 54 def read(self): member in class:RobotFileParser
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/templates/ |
TemplatedInputStream.java | 40 public int read() throws IOException { method in class:TemplatedInputStream 56 int c = mIn.read(); 59 c = mIn.read(); 63 for (c = mIn.read(); c != '}' && c >= 0; c = mIn.read()) 70 return read(); // recurse to get the real char
|
/sdk/emulator/opengl/host/libs/Translator/EGL/ |
EglContext.h | 45 SurfacePtr read(){ return m_read;}; function in class:EglContext 51 void setSurfaces(SurfacePtr read,SurfacePtr draw);
|
/sdk/emulator/opengl/shared/OpenglCodecCommon/ |
Win32PipeStream.cpp | 93 PIPE_ACCESS_DUPLEX, // read-write access 134 GENERIC_READ | GENERIC_WRITE, // read & write 217 const unsigned char *Win32PipeStream::read( void *buf, size_t *inout_len) function in class:Win32PipeStream
|
/sdk/emulator/opengl/tests/ut_renderer/ |
Renderer.cpp | 164 EGLSurface read = EGL_NO_SURFACE; local 167 i = m_surfaces.find(readSurface); if (i != m_surfaces.end()) read = i->second->eglSurface(); 169 return eglMakeCurrent(m_dpy, draw, read, eglContext);
|
/system/core/libctest/ |
ctest.c | 79 size_t read; local 80 while ((read = fread(buffer, sizeof(char), 512, suite->out)) > 0) { 81 // TODO: Make sure we actually wrote 'read' bytes. 82 fwrite(buffer, sizeof(char), read, stderr);
|
/cts/tests/tests/net/src/android/net/cts/ |
LocalSocketTest.java | 51 assertEquals(12, serverInStream.read()); 57 assertEquals(3, clientInStream.read()); 62 assertEquals(32, serverInStream.read()); 71 assertEquals(-1, clientInStream.read()); 84 assertEquals(-1, serverInStream.read()); 98 clientInStream.read(); 107 serverInStream.read();
|
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/ |
GZIPInputStreamTest.java | 121 * @tests java.util.zip.GZIPInputStream#read(byte[], int, int) 139 result += inGZIP.read(outBuf, result, outBuf.length - result); 152 inGZIP.read(outBuf, 100, 1); 178 while ((result = gin2.read(test)) != -1) { 181 assertEquals("Should return -1", -1, gin2.read()); 187 while ((result = gin2.read(new byte[200])) != -1) { 190 assertEquals("Should return -1", -1, gin2.read()); 196 while ((result = gin2.read(new byte[200])) != -1) { 199 assertEquals("Should return -1", -1, gin2.read()); 207 while (gin2.read(test) != -1) [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
PipedOutputStreamTest.java | 62 public String read(int nbytes) { method in class:PipedOutputStreamTest.PReader 65 reader.read(buf, 0, nbytes); 145 assertEquals("Wrote incorrect bytes", "HelloWorld", reader.read(10)); 157 assertEquals("Wrote incorrect bytes", "HelloWorld", reader.read(10)); 218 assertEquals("Wrote incorrect byte", "c", reader.read(1));
|
PushbackInputStreamTest.java | 58 str.read(); 99 str.read(); 128 * @tests java.io.PushbackInputStream#read() 131 // Test for method int java.io.PushbackInputStream.read() 133 assertTrue("Incorrect byte read", pis.read() == fileString 136 fail("Exception during read test : " + e.getMessage()); 141 * @tests java.io.PushbackInputStream#read(byte[], int, int) 144 // Test for method int java.io.PushbackInputStream.read(byte [], int, 148 pis.read(buf, 0, buf.length) [all...] |