HomeSort by relevance Sort by last modified time
    Searched defs:Read (Results 51 - 75 of 681) sorted by null

1 23 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/EmbeddedPkg/Include/Protocol/
EmbeddedExternalDevice.h 43 Read a set of contiguous external device registers.
49 Length - number of bytes to read
54 EFI_SUCCESS - registers read successfully
88 EMBEDDED_EXTERNAL_DEVICE_READ Read;
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Include/Ppi/
PciCfg.h 39 PCI read and write operation.
63 PCI read-modify-write operation.
93 /// PCI read services. See the Read() function description.
95 EFI_PEI_PCI_CFG_PPI_IO Read;
103 /// PCI read-modify-write services. See the Modify() function description.
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Include/Protocol/
SmmCpuIo.h 41 @param[in,out] Buffer For read operations, the destination buffer to store
45 @retval EFI_SUCCESS The data was read from or written to the device.
63 /// This service provides the various modalities of memory and I/O read.
65 EFI_SMM_CPU_IO Read;
  /external/boringssl/src/ssl/test/runner/ed25519/
ed25519_test.go 23 func (zeroReader) Read(buf []byte) (int, error) {
  /external/bsdiff/
buffer_file.cc 20 bool BufferFile::Read(void* buf, size_t count, size_t* bytes_read) {
  /external/libmojo/mojo/common/
common_custom_types_struct_traits.cc 12 bool StructTraits<common::mojom::String16DataView, base::string16>::Read(
29 bool StructTraits<common::mojom::VersionDataView, base::Version>::Read(
43 base::UnguessableToken>::Read(common::mojom::UnguessableTokenDataView data,
62 bool StructTraits<common::mojom::FileDataView, base::File>::Read(
  /external/libmojo/mojo/public/cpp/bindings/
string_traits_stl.h 30 static bool Read(StringDataView input, std::string* output) {
string_traits_string_piece.h 35 static bool Read(StringDataView input, base::StringPiece* output) {
  /external/libmojo/mojo/public/cpp/bindings/tests/
rect_blink_traits.h 21 static bool Read(test::blink::TypemappedRectDataView r,
rect_chromium_traits.h 21 static bool Read(test::TypemappedRectDataView r, test::RectChromium* out) {
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
RemoteJITUtils.h 33 assert(Dst && "Attempt to read into null.");
36 ssize_t Read = ::read(InFD, Dst + Completed, Size - Completed);
37 if (Read <= 0) {
45 Completed += Read;
  /external/lzma/CPP/7zip/Archive/Common/
MultiStream.cpp 7 STDMETHODIMP CMultiStream::Read(void *data, UInt32 size, UInt32 *processedSize)
44 HRESULT result = s.Stream->Read(data, size, &size);
  /external/tensorflow/tensorflow/contrib/lite/testing/
message.cc 89 bool Message::Read(std::istream* input, Message* message) {
  /frameworks/compile/libbcc/bcinfo/Wrap/
file_wrapper_input.cpp 35 size_t FileWrapperInput::Read(uint8_t* buffer, size_t wanted) {
in_memory_wrapper_input.cpp 29 size_t InMemoryWrapperInput::Read(uint8_t* buffer, size_t wanted) {
  /prebuilts/go/darwin-x86/src/compress/lzw/
reader_test.go 125 func (devZero) Read(p []byte) (int, error) {
182 // 43255 = 5406*8 + 7, and codes are read in LSB order. The final bytes are
195 // 0x000. Just after decoder.read returns that code, d.hi == 4095 and
199 // after decoder.read returns that code, d.hi == 4095 and d.last ==
  /prebuilts/go/darwin-x86/src/crypto/rand/
rand_unix.go 25 // Easy implementation: read from /dev/urandom.
47 func (r *devReader) Read(b []byte) (n int, err error) {
64 return r.f.Read(b)
75 func (hr hideAgainReader) Read(p []byte) (n int, err error) {
76 n, err = hr.r.Read(p)
90 // The Read method on the returned reader always returns
110 func (r *reader) Read(b []byte) (n int, err error) {
  /prebuilts/go/darwin-x86/src/debug/elf/
reader.go 17 func (r errorReader) Read(p []byte) (n int, err error) {
54 func (r *readSeekerFromReader) Read(p []byte) (n int, err error) {
58 n, err = r.r.Read(p)
94 // Read until we reach offset.
101 if _, err := r.Read(b); err != nil {
  /prebuilts/go/darwin-x86/src/io/
multi.go 9 func (eofReader) Read([]byte) (int, error) {
17 func (mr *multiReader) Read(p []byte) (n int, err error) {
26 n, err = mr.readers[0].Read(p)
45 // the provided input readers. They're read sequentially. Once all
46 // inputs have returned EOF, Read will return EOF. If any of the readers
47 // return a non-nil, non-EOF error, Read will return that error.
  /prebuilts/go/darwin-x86/src/mime/quotedprintable/
reader.go 19 rerr error // last read error
71 // Read reads and decodes quoted-printable data from the underlying reader.
72 func (r *Reader) Read(p []byte) (n int, err error) {
78 // the final byte read from the underlying reader is allowed to be '=',
  /prebuilts/go/darwin-x86/src/net/
rawconn.go 12 // BUG(mikio): On Windows, the Read and Write methods of
15 // BUG(mikio): On NaCl and Plan 9, the Control, Read and Write methods
36 func (c *rawConn) Read(f func(uintptr) bool) error {
43 err = &OpError{Op: "raw-read", Net: c.fd.net, Source: c.fd.laddr, Addr: c.fd.raddr, Err: err}
68 func (l *rawListener) Read(func(uintptr) bool) error {
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/norm/
readwriter.go 84 // Read implements the standard read interface.
85 func (r *normReader) Read(p []byte) (int, error) {
102 n, err := r.r.Read(r.inbuf)
119 // Reader returns a new reader that implements Read
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug184.go 13 func (*Buffer) Read() {}
16 Read()
  /prebuilts/go/linux-x86/src/compress/lzw/
reader_test.go 125 func (devZero) Read(p []byte) (int, error) {
182 // 43255 = 5406*8 + 7, and codes are read in LSB order. The final bytes are
195 // 0x000. Just after decoder.read returns that code, d.hi == 4095 and
199 // after decoder.read returns that code, d.hi == 4095 and d.last ==
  /prebuilts/go/linux-x86/src/crypto/rand/
rand_unix.go 25 // Easy implementation: read from /dev/urandom.
47 func (r *devReader) Read(b []byte) (n int, err error) {
64 return r.f.Read(b)
75 func (hr hideAgainReader) Read(p []byte) (n int, err error) {
76 n, err = hr.r.Read(p)
90 // The Read method on the returned reader always returns
110 func (r *reader) Read(b []byte) (n int, err error) {

Completed in 364 milliseconds

1 23 4 5 6 7 8 91011>>