HomeSort by relevance Sort by last modified time
    Searched defs:read (Results 676 - 700 of 1637) sorted by null

<<21222324252627282930>>

  /prebuilts/ndk/9/platforms/android-14/arch-arm/usr/include/linux/
sysfs.h 45 ssize_t (*read)(struct kobject *, char *, loff_t, size_t); member in struct:bin_attribute
  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/linux/
sysfs.h 45 ssize_t (*read)(struct kobject *, char *, loff_t, size_t); member in struct:bin_attribute
  /prebuilts/ndk/9/platforms/android-14/arch-x86/usr/include/linux/
sysfs.h 45 ssize_t (*read)(struct kobject *, char *, loff_t, size_t); member in struct:bin_attribute
  /prebuilts/ndk/9/platforms/android-18/arch-arm/usr/include/linux/
sysfs.h 45 ssize_t (*read)(struct kobject *, char *, loff_t, size_t); member in struct:bin_attribute
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/linux/
sysfs.h 45 ssize_t (*read)(struct kobject *, char *, loff_t, size_t); member in struct:bin_attribute
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/linux/
sysfs.h 45 ssize_t (*read)(struct kobject *, char *, loff_t, size_t); member in struct:bin_attribute
  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/linux/
sysfs.h 45 ssize_t (*read)(struct kobject *, char *, loff_t, size_t); member in struct:bin_attribute
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/
sysfs.h 45 ssize_t (*read)(struct kobject *, char *, loff_t, size_t); member in struct:bin_attribute
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/
sysfs.h 45 ssize_t (*read)(struct kobject *, char *, loff_t, size_t); member in struct:bin_attribute
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/
sysfs.h 45 ssize_t (*read)(struct kobject *, char *, loff_t, size_t); member in struct:bin_attribute
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/
sysfs.h 45 ssize_t (*read)(struct kobject *, char *, loff_t, size_t); member in struct:bin_attribute
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
sysfs.h 45 ssize_t (*read)(struct kobject *, char *, loff_t, size_t); member in struct:bin_attribute
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
sysfs.h 45 ssize_t (*read)(struct kobject *, char *, loff_t, size_t); member in struct:bin_attribute
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
binhex.py 85 data = open(name).read(256)
102 def read(self, *args): member in class:Error.openrsrc
258 d = ifp.read(128000)
266 d = ifp.read(128000)
273 """Read data via the decoder in 4-byte chunks"""
279 def read(self, totalwtd): member in class:_Hqxdecoderengine
280 """Read at least wtd bytes (or until EOF)"""
289 data = self.ifp.read(wtd)
302 newdata = self.ifp.read(1)
317 """Read data via the RLE-coder""
325 def read(self, wtd): member in class:_Rledecoderengine
430 def read(self, *n): member in class:HexBin
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_register.py 66 def read(self): member in class:FakeOpener
126 content = f.read()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/
validate.py 48 - That wsgi.input has the methods read, readline, readlines, and
80 - .read() is called with zero or one argument
191 def read(self, *args): member in class:InputWrapper
193 v = self.input.read(*args)
270 "Iterator read after closed")
356 for attr in ['read', 'readline', 'readlines', '__iter__']:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
binhex.py 85 data = open(name).read(256)
102 def read(self, *args): member in class:Error.openrsrc
258 d = ifp.read(128000)
266 d = ifp.read(128000)
273 """Read data via the decoder in 4-byte chunks"""
279 def read(self, totalwtd): member in class:_Hqxdecoderengine
280 """Read at least wtd bytes (or until EOF)"""
289 data = self.ifp.read(wtd)
302 newdata = self.ifp.read(1)
317 """Read data via the RLE-coder""
325 def read(self, wtd): member in class:_Rledecoderengine
430 def read(self, *n): member in class:HexBin
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_register.py 66 def read(self): member in class:FakeOpener
126 content = f.read()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/
validate.py 48 - That wsgi.input has the methods read, readline, readlines, and
80 - .read() is called with zero or one argument
191 def read(self, *args): member in class:InputWrapper
193 v = self.input.read(*args)
270 "Iterator read after closed")
356 for attr in ['read', 'readline', 'readlines', '__iter__']:
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_rwops.h 24 * This file provides a general interface for SDL to read and write
40 /** This is the read/write operation structure -- very basic */
49 /** Read up to 'maxnum' objects each of size 'size' from the data
51 * Returns the number of objects read, or -1 if the read failed.
53 int (SDLCALL *read)(struct SDL_RWops *context, void *ptr, int size, int maxnum); member in struct:SDL_RWops
116 #define RW_SEEK_CUR 1 /**< Seek relative to current read point */
120 /** @name Macros to easily read and write from an SDL_RWops structure */
124 #define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
129 /** @name Read an item of the specified endianness and return in native format *
    [all...]
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_rwops.h 24 * This file provides a general interface for SDL to read and write
40 /** This is the read/write operation structure -- very basic */
49 /** Read up to 'maxnum' objects each of size 'size' from the data
51 * Returns the number of objects read, or -1 if the read failed.
53 int (SDLCALL *read)(struct SDL_RWops *context, void *ptr, int size, int maxnum); member in struct:SDL_RWops
116 #define RW_SEEK_CUR 1 /**< Seek relative to current read point */
120 /** @name Macros to easily read and write from an SDL_RWops structure */
124 #define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
129 /** @name Read an item of the specified endianness and return in native format *
    [all...]
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_rwops.h 24 * This file provides a general interface for SDL to read and write
40 /** This is the read/write operation structure -- very basic */
49 /** Read up to 'maxnum' objects each of size 'size' from the data
51 * Returns the number of objects read, or -1 if the read failed.
53 int (SDLCALL *read)(struct SDL_RWops *context, void *ptr, int size, int maxnum); member in struct:SDL_RWops
116 #define RW_SEEK_CUR 1 /**< Seek relative to current read point */
120 /** @name Macros to easily read and write from an SDL_RWops structure */
124 #define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
129 /** @name Read an item of the specified endianness and return in native format *
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
TraceFileWriter.java 40 * @param is input stream from which trace data is read
114 int read = dis.read(buffer, readLen, len - readLen); local
115 if (read < 0) {
118 readLen += read;
  /system/core/fastboot/
usb_windows.c 55 /// Handle to USB read pipe (endpoint)
106 // Open read pipe (endpoint)
198 unsigned long read = 0; local
209 &read,
212 DBG("usb_read got: %ld, expected: %d, errno: %d\n", read, xfer, errno);
214 return read;
307 // read serial number (if there is one)
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FatFile.java 81 * @throws ReadOnlyException if this file is read-only
101 * Unless this file is {@link #isReadOnly() read-ony}, this method also
111 public void read(long offset, ByteBuffer dest) throws IOException { method in class:FatFile
174 * @throws ReadOnlyException if this {@code FatFile} is read-only

Completed in 820 milliseconds

<<21222324252627282930>>