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

<<11121314151617181920>>

  /prebuilts/go/darwin-x86/src/time/
sys_windows.go 24 func read(fd uintptr, buf []byte) (int, error) { func
25 return syscall.Read(syscall.Handle(fd), buf)
41 m, err := syscall.Read(syscall.Handle(fd), buf)
44 return errors.New("short read")
  /prebuilts/go/linux-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/linux-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/linux-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")
sys_windows.go 24 func read(fd uintptr, buf []byte) (int, error) { func
25 return syscall.Read(syscall.Handle(fd), buf)
41 m, err := syscall.Read(syscall.Handle(fd), buf)
44 return errors.New("short read")
  /system/core/adb/
shell_service.h 39 // Example: read raw data from |fd| and send it in a packet.
44 // Example: read a packet and print it to |stdout|.
84 // If a packet is too big to fit in the buffer then Read() will split the
86 // a 20-byte buffer would read 20 bytes, 20 bytes, then 10 bytes.
89 bool Read();
94 // Returns the number of bytes that have been read into the data buffer.
shell_service_protocol.cpp 32 bool ShellProtocol::Read() {
33 // Only read a new header if we've finished the last packet.
  /system/core/libbacktrace/
BacktraceCurrent.h 42 size_t Read(uint64_t addr, uint8_t* buffer, size_t bytes) override;
  /system/core/libunwindstack/
RegsMips64.cpp 108 Regs* RegsMips64::Read(void* remote_data) {
132 // Read from elf memory since it is usually more expensive to read from
134 if (!elf_memory->Read(rel_pc, &data, sizeof(data))) {
146 // vdso_rt_sigreturn => read rt_sigframe
148 // read 64 bit sc_regs[32] from stack into 64 bit regs_
150 if (!process_memory->Read(sp + 24 + 128 + 40, regs_.data(),
156 // read 64 bit sc_pc from stack into 64 bit regs_[MIPS64_REG_PC]
157 if (!process_memory->Read(sp + 24 + 128 + 40 + 576, &regs_[MIPS64_REG_PC], sizeof(uint64_t))) {
  /system/core/libunwindstack/include/unwindstack/
RegsArm.h 55 static Regs* Read(void* data);
RegsArm64.h 55 static Regs* Read(void* data);
RegsMips.h 55 static Regs* Read(void* data);
RegsMips64.h 55 static Regs* Read(void* data);
RegsX86.h 58 static Regs* Read(void* data);
RegsX86_64.h 58 static Regs* Read(void* data);
  /system/core/libunwindstack/tests/
MemoryFake.cpp 38 size_t MemoryFake::Read(uint64_t addr, void* memory, size_t size) {
  /system/extras/perfprofd/
configreader.h 43 // read the specified config file, applying any settings it contains
44 // returns true for successful read, false if conf file cannot be opened.
47 bool Read(const std::string& data, bool fail_on_error);
  /system/tpm/attestation/server/
key_store.h 36 virtual bool Read(const std::string& username,
  /tools/metalava/stub-annotations/src/main/java/androidx/annotation/
RequiresPermission.java 65 * Specifies that the given permission is required for read operations.
73 @interface Read {
  /external/swiftshader/third_party/subzero/pnacl-llvm/
NaClBitstreamReader.cpp 71 /// EnterSubBlock - Having read the ENTER_SUBBLOCK abbrevid, enter
79 unsigned NumWords = Read(naclbitc::BlockSizeWidth);
93 // No read necessary for literal.
96 (void)Read((unsigned)Op.getValue());
106 (void)Read(6);
111 /// skipRecord - Read the current record and discard it.
135 // Array case. Read the number of elements as a vbr6.
141 // Read all the elements.
162 Value = Read((unsigned)Op.getValue());
168 Value = NaClBitCodeAbbrevOp::DecodeChar6(Read(6))
    [all...]
  /art/runtime/mirror/
field.cc 31 CHECK(static_class_.IsNull()) << static_class_.Read() << " " << klass;
42 CHECK(array_class_.IsNull()) << array_class_.Read() << " " << klass;
method_handle_impl.cc 54 return static_class_.Read();
58 CHECK(static_class_.IsNull()) << static_class_.Read() << " " << klass;
  /device/google/cuttlefish_common/common/vsoc/shm/
circqueue.h 121 * Read at most max_size bytes from the qeueue, placing them in buffer_out
123 intptr_t Read(RegionSignalingInterface* r, char* buffer_out,
148 * Each return from read corresponds to a call to write and returns all of the
158 * Read a single packet from the queue, placing its data into buffer_out.
162 intptr_t Read(RegionSignalingInterface* r, char* buffer_out,
  /device/google/cuttlefish_common/host/libs/vadb/
usb_cmd_control_transfer.cpp 64 if (fd->Read(&len, sizeof(len)) != sizeof(len)) {
65 LOG(ERROR) << "Short read: " << fd->StrError();
72 if (fd->Read(data_.data(), len) != len) {
73 LOG(ERROR) << "Short read: " << fd->StrError();

Completed in 996 milliseconds

<<11121314151617181920>>