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

1 2 3 4 5 6 78 91011>>

  /external/lzma/CPP/7zip/Archive/Common/
InStreamWithCRC.h 19 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
46 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
MultiStream.cpp 7 STDMETHODIMP CMultiStream::Read(void *data, UInt32 size, UInt32 *processedSize)
44 HRESULT result = s.Stream->Read(data, size, &size);
  /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/linux-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 {
  /system/core/libbacktrace/
UnwindStack.h 49 size_t Read(uint64_t addr, uint8_t* buffer, size_t bytes) override;
63 size_t Read(uint64_t addr, uint8_t* buffer, size_t bytes) override;
  /system/core/libunwindstack/tests/
MemoryFake.h 35 size_t Read(uint64_t addr, void* buffer, size_t size) override;
74 size_t Read(uint64_t, void* buffer, size_t size) override {
  /system/tpm/attestation/server/
database_impl.h 36 virtual bool Read(std::string* data) = 0;
62 bool Read(std::string* data) override;
  /system/update_engine/payload_consumer/
cached_file_descriptor.h 45 ssize_t Read(void* buf, size_t count) override {
46 return fd_->Read(buf, count);
file_descriptor.h 36 // * A FileDescriptor is reusable and can be used to read/write multiple files
61 // open prior to this call. Returns the number of bytes read, or -1 on error.
63 virtual ssize_t Read(void* buf, size_t count) = 0;
118 ssize_t Read(void* buf, size_t count) override;
mtd_file_descriptor.h 30 // descriptor supports either random read, or sequential write but not both at
40 ssize_t Read(void* buf, size_t count) override;
76 ssize_t Read(void* buf, size_t count) override;
extent_reader_unittest.cc 85 EXPECT_TRUE(reader.Read(blob1.data(), blob1.size()));
97 EXPECT_TRUE(reader.Read(blob.data(), 0));
98 EXPECT_FALSE(reader.Read(blob.data(), 1));
106 EXPECT_TRUE(reader.Read(blob.data(), 0));
107 EXPECT_FALSE(reader.Read(blob.data(), 1));
116 EXPECT_FALSE(reader.Read(blob.data(), blob.size()));
138 // Seek to the end of the extents should be fine as long as nothing is read.
163 EXPECT_TRUE(reader.Read(blob.data(), size));
  /art/runtime/
class_table.cc 42 return it->Read() == klass;
54 return it->Read();
79 mirror::Class* const existing = existing_it->Read();
97 if (root.Read()->GetClassLoader() == defining_loader) {
138 return it->Read();
150 return it->Read();
202 return ComputeModifiedUtf8Hash(slot.Read()->GetDescriptor(&temp));
209 DCHECK(!a.Read()->DescriptorEquals(b.Read()->GetDescriptor(&temp)));
213 return a.Read()->DescriptorEquals(b.Read()->GetDescriptor(&temp))
    [all...]
class_table-inl.h 68 if (!visitor(table_slot.Read<kReadBarrierOption>())) {
81 if (!visitor(table_slot.Read<kReadBarrierOption>())) {
90 inline mirror::Class* ClassTable::TableSlot::Read() const {
94 GcRoot<mirror::Class>(before_ptr).Read<kReadBarrierOption>());
96 // If another thread raced and updated the reference, do not store the read barrier updated
109 ObjPtr<mirror::Class> after_ptr(root.Read<kWithoutReadBarrier>());
111 // If another thread raced and updated the reference, do not store the read barrier updated
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressLibRTSM/Arm/
RTSMHelper.S 25 # Read Configuration Base Address Register. ArmCBar cannot be called to get
44 # Read CP15 MIDR
58 bl ArmGetScuBaseAddress @ Read SCU Base Address
60 ldr r0, [r0, #A9_SCU_CONFIG_OFFSET] @ Read SCU Config reg to get CPU count
64 mrc p15, 1, r0, c9, c0, 2 @ Read C9 register of CP15 to get CPU count
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
Mm.c 119 Read or write some data from or into the Address.
124 @param[in] Read TRUE for read, FALSE for write.
127 @param[in, out] Buffer The buffer to read into or write from.
134 IN BOOLEAN Read,
150 if (Read) {
163 if (Read) {
164 Status = PciRootBridgeIo->Pci.Read (
181 RootBridgeIoMem = Read ? PciRootBridgeIo->Mem.Read : PciRootBridgeIo->Mem.Write;
    [all...]
  /external/sfntly/cpp/src/sfntly/port/
file_input_stream.cc 60 int32_t FileInputStream::Read() {
79 int32_t FileInputStream::Read(ByteVector* b) {
80 return Read(b, 0, b->size());
83 int32_t FileInputStream::Read(ByteVector* b, int32_t offset, int32_t length) {
146 Read(b, offset, length);
  /external/libbrillo/brillo/dbus/
data_serialization.h 15 // - Methods to read arbitrary C++ data from D-Bus MessageReader:
49 // - static bool Read(dbus::MessageReader* reader, CustomType* value);
200 inline static bool Read(dbus::MessageReader* reader, bool* value) {
217 inline static bool Read(dbus::MessageReader* reader, uint8_t* value) {
234 inline static bool Read(dbus::MessageReader* reader, int16_t* value) {
253 inline static bool Read(dbus::MessageReader* reader, uint16_t* value) {
270 inline static bool Read(dbus::MessageReader* reader, int32_t* value) {
289 inline static bool Read(dbus::MessageReader* reader, uint32_t* value) {
306 inline static bool Read(dbus::MessageReader* reader, int64_t* value) {
325 inline static bool Read(dbus::MessageReader* reader, uint64_t* value)
    [all...]
  /external/libmojo/ipc/
ipc_message_utils.h 112 return ParamTraits<Type>::Read(m, iter, reinterpret_cast<Type* >(p));
130 static bool Read(const base::Pickle* m,
143 static bool Read(const base::Pickle* m,
154 static bool Read(const base::Pickle* m,
165 static bool Read(const base::Pickle* m,
178 static bool Read(const base::Pickle* m,
193 static bool Read(const base::Pickle* m,
223 static bool Read(const base::Pickle* m,
240 static bool Read(const base::Pickle* m,
258 static bool Read(const base::Pickle* m
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/nettest/
conntest.go 27 // as c1 and c2, such that anything written to c1 is read by c2 and vice-versa.
63 rand.New(rand.NewSource(0)).Read(want)
79 t.Errorf("unexpected c2.Read error: %v", err)
107 t.Errorf("unexpected Read error: %v", err)
140 // testRacyRead tests that it is safe to mutate the input Read buffer
157 _, err := c1.Read(b1)
196 // testReadTimeout tests that Read timeouts do not affect Write.
201 _, err := c1.Read(make([]byte, 1024))
208 // testWriteTimeout tests that Write timeouts do not affect Read.
215 if _, err := c1.Read(make([]byte, 1024)); err != nil
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/nettest/
conntest.go 27 // as c1 and c2, such that anything written to c1 is read by c2 and vice-versa.
63 rand.New(rand.NewSource(0)).Read(want)
79 t.Errorf("unexpected c2.Read error: %v", err)
107 t.Errorf("unexpected Read error: %v", err)
140 // testRacyRead tests that it is safe to mutate the input Read buffer
157 _, err := c1.Read(b1)
196 // testReadTimeout tests that Read timeouts do not affect Write.
201 _, err := c1.Read(make([]byte, 1024))
208 // testWriteTimeout tests that Write timeouts do not affect Read.
215 if _, err := c1.Read(make([]byte, 1024)); err != nil
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/BootSector/
Gpt.asm 101 ; Read GPT Header from hard disk to 0x0000:0x0800
104 mov es, ax ; Read to 0x0000:0x0800
105 mov di, 0800h ; Read to 0x0000:0x0800
106 mov eax, 1 ; Read LBA #1
107 mov edx, 0 ; Read LBA #1
108 mov bx, 1 ; Read 1 Block
114 ; Read Target GPT Entry from hard disk to 0x0000:0x0A00
137 mov di, 0A00h ; Read to 0x0000:0x0A00
138 mov bx, 1 ; Read 1 Block
144 ; Read Target DBR from hard disk to 0x0000:0x7C00
    [all...]
  /device/linaro/bootloader/edk2/Omap35xxPkg/Library/RealTimeClockLib/
RealTimeClockLib.c 67 Status = gTPS65950->Read (gTPS65950, EXTERNAL_DEVICE_REGISTER(I2C_ADDR_GRP_ID4, RTC_CTRL_REG), 1, &Data);
73 // Read registers
74 Status = gTPS65950->Read (gTPS65950, EXTERNAL_DEVICE_REGISTER(I2C_ADDR_GRP_ID4, YEARS_REG), 1, &Data);
78 Status = gTPS65950->Read (gTPS65950, EXTERNAL_DEVICE_REGISTER(I2C_ADDR_GRP_ID4, MONTHS_REG), 1, &Data);
82 Status = gTPS65950->Read (gTPS65950, EXTERNAL_DEVICE_REGISTER(I2C_ADDR_GRP_ID4, DAYS_REG), 1, &Data);
86 Status = gTPS65950->Read (gTPS65950, EXTERNAL_DEVICE_REGISTER(I2C_ADDR_GRP_ID4, HOURS_REG), 1, &Data);
90 Status = gTPS65950->Read (gTPS65950, EXTERNAL_DEVICE_REGISTER(I2C_ADDR_GRP_ID4, MINUTES_REG), 1, &Data);
94 Status = gTPS65950->Read (gTPS65950, EXTERNAL_DEVICE_REGISTER(I2C_ADDR_GRP_ID4, SECONDS_REG), 1, &Data);
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Hi1616/D05AcpiTables/
D05Iort.asl 128 Read Allocate : 0
159 Read Allocate : 0
190 Read Allocate : 0
221 Read Allocate : 0
252 Read Allocate : 0
283 Read Allocate : 0
314 Read Allocate : 0
345 Read Allocate : 0
376 Read Allocate : 0
406 Read Allocate : 0
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciDxe/
EhciReg.c 21 Read EHCI capability register.
26 @return The register content read.
39 Status = Ehc->PciIo->Mem.Read (
49 DEBUG ((EFI_D_ERROR, "EhcReadCapRegister: Pci Io read error - %r at %d\n", Status, Offset));
57 Read EHCI debug port register.
62 @return The register content read.
75 Status = Ehc->PciIo->Mem.Read (
85 DEBUG ((EFI_D_ERROR, "EhcReadDbgRegister: Pci Io read error - %r at %d\n", Status, Offset));
94 Read EHCI Operation register.
99 @return The register content read.
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/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...]

Completed in 2144 milliseconds

1 2 3 4 5 6 78 91011>>