HomeSort by relevance Sort by last modified time
    Searched refs:Read (Results 251 - 275 of 2133) sorted by null

<<11121314151617181920>>

  /external/lzma/C/
7zTypes.h 131 Byte (*Read)(void *p); /* reads one byte, returns 0 in case of EOF or error */
141 SRes (*Read)(void *p, void *buf, size_t *size);
167 SRes (*Read)(void *p, void *buf, size_t *size); /* same as ISeqInStream::Read */
180 SRes (*Read)(void *p, void *buf, size_t *size);
181 /* reads directly (without buffer). It's same as ISeqInStream::Read */
188 /* reads via ILookInStream::Read */
  /external/lzma/CPP/7zip/Archive/7z/
7zFolderInStream.h 43 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
  /external/lzma/CPP/7zip/Archive/Common/
MultiStream.h 51 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
  /external/lzma/CPP/7zip/Compress/
CopyCoder.h 37 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
  /external/lzma/CPP/Common/
C_FileIO.h 40 ssize_t Read(void *data, size_t size);
  /external/pdfium/core/fxcrt/
cfx_fileaccess_posix.h 27 size_t Read(void* pBuffer, size_t szBuffer) override;
cfx_fileaccess_windows.h 25 size_t Read(void* pBuffer, size_t szBuffer) override;
ifx_fileaccess.h 28 virtual size_t Read(void* pBuffer, size_t szBuffer) = 0;
  /external/syslinux/gpxe/src/include/gpxe/efi/Protocol/
CpuIo.h 69 @param Buffer For read operations, the destination buffer to store the results.
72 @retval EFI_SUCCESS The data was read from or written to the EFI system.
94 EFI_CPU_IO_PROTOCOL_IO_MEM Read;
108 @param Mem.Read
114 @param Io.Read
  /external/syslinux/gpxe/src/interface/efi/
efi_io.c 74 * Read from device
78 * @ret data Value read
81 EFI_CPU_IO_PROTOCOL_IO_MEM read; local
85 read = ( IS_PORT_ADDRESS ( io_addr ) ?
86 cpu_io->Io.Read : cpu_io->Mem.Read );
88 if ( ( efirc = read ( cpu_io, efi_width ( size ),
91 DBG ( "EFI I/O read at %p failed: %s\n",
123 * String read from device
128 * @v count Number of values to read
132 EFI_CPU_IO_PROTOCOL_IO_MEM read; local
    [all...]
  /external/tensorflow/tensorflow/python/framework/
test_file_system.cc 22 Status Read(uint64 offset, size_t n, StringPiece* result,
  /external/webrtc/webrtc/base/
socketstream.h 34 StreamResult Read(void* buffer,
36 size_t* read,
transformadapter.h 50 StreamResult Read(void* buffer,
52 size_t* read,
  /external/webrtc/webrtc/common_audio/
audio_ring_buffer_unittest.cc 41 // Read until the buffer is as empty as possible.
44 buf.Read(output->Slice(slice.get(), output_pos), num_channels,
50 // Write and read the last bit.
56 buf.Read(output->Slice(slice.get(), output_pos), num_channels,
79 // Verify the read data matches the input.
103 buf.Read(output.channels(), kNumChannels, 1);
106 buf.Read(output.channels(), kNumChannels, 1);
  /external/webrtc/webrtc/libjingle/xmpp/
asyncsocket.h 53 virtual bool Read(char * data, size_t len, size_t* len_read) = 0;
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_baselinefile.cc 29 // 1. All read/written entities are 32-bit unsigned integers in network byte
56 if (reader->Read(&magic_marker) && magic_marker == kMagicMarker &&
57 reader->Read(&file_version) && file_version == kFileVersion1) {
71 if (reader_->Read(&read_ms) && read_ms == time_ms &&
72 reader_->Read(&read_bps) && read_bps == estimate_bps) {
  /external/webrtc/webrtc/system_wrappers/source/
file_impl.h 46 int Read(void* buf, size_t length) override;
  /frameworks/base/core/java/android/annotation/
RequiresPermission.java 51 * Example of requiring separate read and write permissions for a content provider:
53 * {@literal @}RequiresPermission.Read(@RequiresPermission(READ_HISTORY_BOOKMARKS))
113 * Specifies that the given permission is required for read operations.
121 @interface Read {
  /frameworks/compile/libbcc/bcinfo/Wrap/
file_wrapper_input.cpp 35 size_t FileWrapperInput::Read(uint8_t* buffer, size_t wanted) {
  /frameworks/support/annotations/src/main/java/androidx/annotation/
RequiresPermission.java 49 * Example of requiring separate read and write permissions for a content provider:
51 * &#64;RequiresPermission.Read(@RequiresPermission(READ_HISTORY_BOOKMARKS))
109 * Specifies that the given permission is required for read operations.
117 @interface Read {
  /hardware/nxp/nfc/halimpl/src/include/
ese_hal_api.h 98 tHAL_SPIAPI_READ* Read;
  /prebuilts/go/darwin-x86/doc/progs/
interface.go 23 // Reader is the interface that wraps the basic Read method.
25 Read(p []byte) (n int, err error)
  /prebuilts/go/darwin-x86/src/testing/iotest/
logger.go 39 func (l *readLogger) Read(p []byte) (n int, err error) {
40 n, err = l.r.Read(p)
50 // that it logs (using log.Printf) each read to standard error,
51 // printing the prefix and the hexadecimal data read.
  /prebuilts/go/darwin-x86/src/time/
sys_plan9.go 27 func read(fd uintptr, buf []byte) (int, error) { func
28 return syscall.Read(int(fd), buf)
44 m, err := syscall.Read(int(fd), buf)
47 return errors.New("short read")
sys_unix.go 27 func read(fd uintptr, buf []byte) (int, error) { func
28 return syscall.Read(int(fd), buf)
44 m, err := syscall.Read(int(fd), buf)
47 return errors.New("short read")

Completed in 952 milliseconds

<<11121314151617181920>>