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

<<2122232425262728

  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Bitcode/
BitstreamReader.h 11 // read an arbitrary bitstream, regardless of its contents.
37 /// This class maintains the abbreviations read from a block info block.
143 Read(WordBitNo);
163 // Read the next word from the stream.
169 support::endian::read<word_t, support::little, support::unaligned>(
172 // Short read.
182 word_t Read(unsigned NumBits) {
223 uint32_t Piece = Read(NumBits);
236 Piece = Read(NumBits);
240 // Read a VBR that may have a value up to 64-bits in size. The chunk size o
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Bitcode/
BitstreamReader.h 11 // read an arbitrary bitstream, regardless of its contents.
37 /// This class maintains the abbreviations read from a block info block.
143 Read(WordBitNo);
163 // Read the next word from the stream.
169 support::endian::read<word_t, support::little, support::unaligned>(
172 // Short read.
182 word_t Read(unsigned NumBits) {
223 uint32_t Piece = Read(NumBits);
236 Piece = Read(NumBits);
240 // Read a VBR that may have a value up to 64-bits in size. The chunk size o
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Bitcode/
BitstreamReader.h 11 // read an arbitrary bitstream, regardless of its contents.
37 /// This class maintains the abbreviations read from a block info block.
143 Read(WordBitNo);
163 // Read the next word from the stream.
169 support::endian::read<word_t, support::little, support::unaligned>(
172 // Short read.
182 word_t Read(unsigned NumBits) {
223 uint32_t Piece = Read(NumBits);
236 Piece = Read(NumBits);
240 // Read a VBR that may have a value up to 64-bits in size. The chunk size o
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Bitcode/
BitstreamReader.h 11 // read an arbitrary bitstream, regardless of its contents.
37 /// This class maintains the abbreviations read from a block info block.
143 Read(WordBitNo);
163 // Read the next word from the stream.
169 support::endian::read<word_t, support::little, support::unaligned>(
172 // Short read.
182 word_t Read(unsigned NumBits) {
223 uint32_t Piece = Read(NumBits);
236 Piece = Read(NumBits);
240 // Read a VBR that may have a value up to 64-bits in size. The chunk size o
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Bitcode/
BitstreamReader.h 11 // read an arbitrary bitstream, regardless of its contents.
37 /// This class maintains the abbreviations read from a block info block.
143 Read(WordBitNo);
163 // Read the next word from the stream.
169 support::endian::read<word_t, support::little, support::unaligned>(
172 // Short read.
182 word_t Read(unsigned NumBits) {
223 uint32_t Piece = Read(NumBits);
236 Piece = Read(NumBits);
240 // Read a VBR that may have a value up to 64-bits in size. The chunk size o
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/tls/
handshake_server_test.go 32 func (zeroSource) Read(b []byte) (n int, err error) {
213 n, err := c.Read(buf)
215 t.Errorf("Server read returned error: %s", err)
624 t.Fatalf("%s #%d: mismatch on read: got:%x want:%x", test.name, i+1, bb, b)
1039 b.Fatalf("#%d: mismatch on read: got:%x want:%x", i+1, ff, f)
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/gob/
decode.go 33 fieldnum int // the last field number read.
37 // decBuffer is an extremely simple, fast implementation of a read-only byte buffer.
41 offset int // Read offset.
44 func (d *decBuffer) Read(p []byte) (int, error) {
117 // Used only by the Decoder to read the message length.
220 // a value to extract and store. The field number has already been read
381 if _, err := state.b.Read(value.Bytes()); err != nil {
394 // Read the data.
642 // Read the name of the concrete type.
669 // Read the type id of the concrete value
    [all...]
  /prebuilts/go/darwin-x86/src/fmt/
scan.go 45 // Because ReadRune is implemented by the interface, Read should never be
47 // ScanState may choose always to return an error from Read.
48 Read(buf []byte) (n int, err error)
59 // Scan scans text read from standard input, storing successive
73 // Scanf scans text read from standard input, storing successive
86 func (r *stringReader) Read(b []byte) (n int, err error) {
117 // Fscan scans text read from r, storing successive space-separated
137 // Fscanf scans text read from r, storing successive space-separated
158 rs io.RuneScanner // where to read input
161 atEOF bool // already read EO
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
client_test.go 44 n, err := r.Read(buf)
46 return nil, fmt.Errorf("Read: n=0 with err=nil")
50 n, err := r.Read(buf)
52 return nil, fmt.Errorf("Read: n=%d err=%#v after EOF", n, err)
785 t.Fatalf("Receiving %q, only read %d bytes", str, n)
    [all...]
request.go 186 // be read from Body.
249 // can be read again and will contain non-nil values, if they were sent
256 // the request body is read. Once the body returns EOF, the caller must
637 // that the error came from a Read call on the Request.Body.
1022 // non-EOF error for a Read beyond the limit, and closes the
    [all...]
request_test.go 271 // Test that we can read the values and files of a
491 r.Read(b[:])
709 t.Errorf("Original request doesn't match Request read back.")
713 t.Logf("Read back (doesn't match Original): %#v", back)
725 // off the io.EOF until a subsequent Read call.
730 func (dr delayedEOFReader) Read(p []byte) (n int, err error) {
731 n, err = dr.r.Read(p)
757 n, err := r.Read(buf)
758 fmt.Fprintf(&log, "Read(%d) = %d, %v\n", len(buf), n, err)
967 b.Fatalf("failed to read request: %v", err
    [all...]
  /prebuilts/go/darwin-x86/src/net/rpc/
server_test.go 625 func (w *writeCrasher) Read(p []byte) (int, error) {
  /prebuilts/go/darwin-x86/src/runtime/
export_test.go 188 var Read = read
274 func (p *ProfBuf) Read(mode profBufReadMode) ([]uint64, []unsafe.Pointer, bool) {
275 return (*profBuf)(p).read(profBufReadMode(mode))
  /prebuilts/go/linux-x86/src/crypto/tls/
handshake_server_test.go 32 func (zeroSource) Read(b []byte) (n int, err error) {
213 n, err := c.Read(buf)
215 t.Errorf("Server read returned error: %s", err)
624 t.Fatalf("%s #%d: mismatch on read: got:%x want:%x", test.name, i+1, bb, b)
1039 b.Fatalf("#%d: mismatch on read: got:%x want:%x", i+1, ff, f)
    [all...]
  /prebuilts/go/linux-x86/src/encoding/gob/
decode.go 33 fieldnum int // the last field number read.
37 // decBuffer is an extremely simple, fast implementation of a read-only byte buffer.
41 offset int // Read offset.
44 func (d *decBuffer) Read(p []byte) (int, error) {
117 // Used only by the Decoder to read the message length.
220 // a value to extract and store. The field number has already been read
381 if _, err := state.b.Read(value.Bytes()); err != nil {
394 // Read the data.
642 // Read the name of the concrete type.
669 // Read the type id of the concrete value
    [all...]
  /prebuilts/go/linux-x86/src/fmt/
scan.go 45 // Because ReadRune is implemented by the interface, Read should never be
47 // ScanState may choose always to return an error from Read.
48 Read(buf []byte) (n int, err error)
59 // Scan scans text read from standard input, storing successive
73 // Scanf scans text read from standard input, storing successive
86 func (r *stringReader) Read(b []byte) (n int, err error) {
117 // Fscan scans text read from r, storing successive space-separated
137 // Fscanf scans text read from r, storing successive space-separated
158 rs io.RuneScanner // where to read input
161 atEOF bool // already read EO
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
client_test.go 44 n, err := r.Read(buf)
46 return nil, fmt.Errorf("Read: n=0 with err=nil")
50 n, err := r.Read(buf)
52 return nil, fmt.Errorf("Read: n=%d err=%#v after EOF", n, err)
785 t.Fatalf("Receiving %q, only read %d bytes", str, n)
    [all...]
request.go 186 // be read from Body.
249 // can be read again and will contain non-nil values, if they were sent
256 // the request body is read. Once the body returns EOF, the caller must
637 // that the error came from a Read call on the Request.Body.
1022 // non-EOF error for a Read beyond the limit, and closes the
    [all...]
request_test.go 271 // Test that we can read the values and files of a
491 r.Read(b[:])
709 t.Errorf("Original request doesn't match Request read back.")
713 t.Logf("Read back (doesn't match Original): %#v", back)
725 // off the io.EOF until a subsequent Read call.
730 func (dr delayedEOFReader) Read(p []byte) (n int, err error) {
731 n, err = dr.r.Read(p)
757 n, err := r.Read(buf)
758 fmt.Fprintf(&log, "Read(%d) = %d, %v\n", len(buf), n, err)
967 b.Fatalf("failed to read request: %v", err
    [all...]
  /prebuilts/go/linux-x86/src/net/rpc/
server_test.go 625 func (w *writeCrasher) Read(p []byte) (int, error) {
  /prebuilts/go/linux-x86/src/runtime/
export_test.go 188 var Read = read
274 func (p *ProfBuf) Read(mode profBufReadMode) ([]uint64, []unsafe.Pointer, bool) {
275 return (*profBuf)(p).read(profBufReadMode(mode))
  /system/tpm/attestation/server/
pkcs11_key_store.cc 94 bool Pkcs11KeyStore::Read(const std::string& username,
116 LOG(ERROR) << "Pkcs11KeyStore: Failed to read key data: " << key_name;
123 LOG(ERROR) << "Pkcs11KeyStore: Failed to read key data: " << key_name;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/PciIo/
PciIo.h 138 EFI_PCI_IO_PROTOCOL_IO_MEM Read;
153 EFI_PCI_IO_PROTOCOL_CONFIG Read;
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
PciIo.h 85 /// A read operation from system memory by a bus master.
93 /// Provides both read and write access to system memory by both the processor and a
141 @param Result Pointer to the last value read from the memory location.
173 @param Buffer For read operations, the destination buffer to store the results. For write
176 @retval EFI_SUCCESS The data was read from or written to the PCI controller.
197 /// Read PCI controller registers in the PCI memory or I/O space.
199 EFI_PCI_IO_PROTOCOL_IO_MEM Read;
213 @param Buffer For read operations, the destination buffer to store the results. For write
217 @retval EFI_SUCCESS The data was read from or written to the PCI controller.
236 /// Read PCI controller registers in PCI configuration space.
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 11 // read an arbitrary bitstream, regardless of its contents.
28 /// This class is used to read from an LLVM bitcode stream, maintaining
30 /// being read, multiple cursors can be independently advanced or skipped around
93 /// Return true if we've already read and processed the block info block for
203 Read(WordBitNo);
241 // Read the next word from the stream.
256 support::endian::read<word_t, support::little, support::unaligned>(
262 word_t Read(unsigned NumBits) {
303 uint32_t Piece = Read(NumBits);
316 Piece = Read(NumBits)
    [all...]

Completed in 479 milliseconds

<<2122232425262728