HomeSort by relevance Sort by last modified time
    Searched refs:READ (Results 101 - 125 of 407) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/r11/platforms/android-16/arch-x86/usr/include/linux/
fs.h 59 #define READ 0
64 #define READ_SYNC (READ | (1 << BIO_RW_SYNC))
  /prebuilts/ndk/r11/platforms/android-17/arch-arm/usr/include/linux/
fs.h 59 #define READ 0
64 #define READ_SYNC (READ | (1 << BIO_RW_SYNC))
  /prebuilts/ndk/r11/platforms/android-17/arch-mips/usr/include/linux/
fs.h 59 #define READ 0
64 #define READ_SYNC (READ | (1 << BIO_RW_SYNC))
  /prebuilts/ndk/r11/platforms/android-17/arch-x86/usr/include/linux/
fs.h 59 #define READ 0
64 #define READ_SYNC (READ | (1 << BIO_RW_SYNC))
  /prebuilts/ndk/r11/platforms/android-18/arch-arm/usr/include/linux/
fs.h 59 #define READ 0
64 #define READ_SYNC (READ | (1 << BIO_RW_SYNC))
  /prebuilts/ndk/r11/platforms/android-18/arch-mips/usr/include/linux/
fs.h 59 #define READ 0
64 #define READ_SYNC (READ | (1 << BIO_RW_SYNC))
  /prebuilts/ndk/r11/platforms/android-18/arch-x86/usr/include/linux/
fs.h 59 #define READ 0
64 #define READ_SYNC (READ | (1 << BIO_RW_SYNC))
  /prebuilts/ndk/r11/platforms/android-19/arch-arm/usr/include/linux/
fs.h 59 #define READ 0
64 #define READ_SYNC (READ | (1 << BIO_RW_SYNC))
  /prebuilts/ndk/r11/platforms/android-19/arch-mips/usr/include/linux/
fs.h 59 #define READ 0
64 #define READ_SYNC (READ | (1 << BIO_RW_SYNC))
  /prebuilts/ndk/r11/platforms/android-19/arch-x86/usr/include/linux/
fs.h 59 #define READ 0
64 #define READ_SYNC (READ | (1 << BIO_RW_SYNC))
  /prebuilts/ndk/r11/platforms/android-3/arch-arm/usr/include/linux/
fs.h 59 #define READ 0
64 #define READ_SYNC (READ | (1 << BIO_RW_SYNC))
  /prebuilts/ndk/r11/platforms/android-4/arch-arm/usr/include/linux/
fs.h 59 #define READ 0
64 #define READ_SYNC (READ | (1 << BIO_RW_SYNC))
  /prebuilts/ndk/r11/platforms/android-5/arch-arm/usr/include/linux/
fs.h 59 #define READ 0
64 #define READ_SYNC (READ | (1 << BIO_RW_SYNC))
  /prebuilts/ndk/r11/platforms/android-8/arch-arm/usr/include/linux/
fs.h 59 #define READ 0
64 #define READ_SYNC (READ | (1 << BIO_RW_SYNC))
  /prebuilts/ndk/r11/platforms/android-9/arch-arm/usr/include/linux/
fs.h 59 #define READ 0
64 #define READ_SYNC (READ | (1 << BIO_RW_SYNC))
  /prebuilts/ndk/r11/platforms/android-9/arch-mips/usr/include/linux/
fs.h 59 #define READ 0
64 #define READ_SYNC (READ | (1 << BIO_RW_SYNC))
  /prebuilts/ndk/r11/platforms/android-9/arch-x86/usr/include/linux/
fs.h 59 #define READ 0
64 #define READ_SYNC (READ | (1 << BIO_RW_SYNC))
  /external/e2fsprogs/lib/ext2fs/
jfs_compat.h 20 #define READ 0
  /external/skia/platform_tools/android/tradefed/
upload_dm_results.py 32 gs_utils.GSUtils.Permission.READ
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaFloppyDxe/
IsaFloppyBlock.c 76 @param Read Read or write operation when error occurrs
81 IN BOOLEAN Read
90 ((Read) ? EFI_P_EC_INPUT_ERROR : EFI_P_EC_OUTPUT_ERROR) | EFI_PERIPHERAL_REMOVABLE_MEDIA,
96 Read BufferSize bytes from Lba into Buffer.
100 @param Lba The starting Logical Block Address to read from
105 @retval EFI_SUCCESS The data was read correctly from the device.
106 @retval EFI_DEVICE_ERROR The device reported an error while performing the read.
110 @retval EFI_INVALID_PARAMETER The read request contains LBAs that are not valid,
126 Status = FddReadWriteBlocks (This, MediaId, Lba, BufferSize, READ, Buffer);
    [all...]
  /external/curl/src/
mkhelp.pl 92 open(READ, "<$README") ||
93 die "couldn't read the README infile $README";
95 while(<READ>) {
103 close(READ);
121 die "can't read the dumpit.gz file, try without -c";
  /external/linux-kselftest/tools/testing/selftests/powerpc/benchmarks/
context_switch.c 152 #define READ 0
170 assert(read(pipe_fd1[READ], &c, 1) == 1);
188 assert(read(pipe_fd2[READ], &c, 1) == 1);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
fs.h 36 int nr_files; /* read only */
37 int nr_free_files; /* read only */
94 * The below are the various read and write types that we support. Some of
115 * READ A normal read operation. Device will be plugged.
116 * READ_SYNC A synchronous read. Device is not plugged, caller can
117 * immediately wait on this read without caring about
119 * READA Used for read-ahead operations. Lower priority, and the
149 #define READ 0
151 #define READA 2 /* read-ahead - don't block if no resources *
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
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
98 self.mode = READ
101 # Buffer data read from gzip file. extrastart is offset in
179 magic = self.fileobj.read(2)
182 method = ord( self.fileobj.read(1) )
185 flag = ord( self.fileobj.read(1) )
187 # extraflag = self.fileobj.read(1)
232 def read(self, size=-1): member in class:GzipFile
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
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...]

Completed in 1850 milliseconds

1 2 3 45 6 7 8 91011>>