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

<<11121314151617181920>>

  /device/google/cuttlefish_common/host/libs/vadb/
usb_cmd_control_transfer.cpp 37 if (fd->Write(&req_, sizeof(req_)) != sizeof(req_)) {
38 LOG(ERROR) << "Short write: " << fd->StrError();
44 if (static_cast<size_t>(fd->Write(data_.data(), data_.size())) !=
46 LOG(ERROR) << "Short write: " << fd->StrError();
usb_cmd_data_transfer.cpp 35 if (fd->Write(&req_, sizeof(req_)) != sizeof(req_)) {
36 LOG(ERROR) << "Short write: " << fd->StrError();
41 if (static_cast<size_t>(fd->Write(data_.data(), data_.size())) !=
43 LOG(ERROR) << "Short write: " << fd->StrError();
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/CpuIo2OnCpuIoThunk/
CpuIo2OnCpuIoThunk.c 69 Enables a driver to write memory-mapped registers in the PI System memory space.
76 @param[in, out] Buffer The source buffer from which to write data.
94 return mCpuIo->Mem.Write (
140 Enables a driver to write registers in the PI CPU I/O space.
148 @param[in, out] Buffer The source buffer from which to write data.
166 return mCpuIo->Io.Write (
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/
PciResourceSupport.c     [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformDxe/
PciDevice.c 143 PciIo->Pci.Write (
186 PciIo->Pci.Write (
212 PciIo->Pci.Write (
241 PciIo->Pci.Write (
277 PciIo->Pci.Write (
294 PciIo->Pci.Write (
320 PciIo->Pci.Write (
476 Status = PciIo->Pci.Write (
  /external/chromium-trace/catapult/devil/devil/android/
device_blacklist.py 45 def Write(self, blacklist):
49 blacklist: list of bad devices to write to the blacklist file.
73 self.Write(blacklist)
  /external/curl/docs/cmdline-opts/
trace.d 3 Help: Write a debug trace to FILE
  /external/lzma/CPP/7zip/Common/
InOutTempBuffer.cpp 52 if (!_outFile.Write(data, size, processed))
59 bool CInOutTempBuffer::Write(const void *data, UInt32 size)
115 STDMETHODIMP CSequentialOutTempBufferImp::Write(const void *data, UInt32 size, UInt32 *processed)
117 if (!_buf->Write(data, size))
  /prebuilts/go/darwin-x86/src/compress/zlib/
example_test.go 19 w.Write([]byte("hello, world\n"))
  /prebuilts/go/darwin-x86/src/internal/race/
norace.go 33 func Write(addr unsafe.Pointer) {
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug353.go 23 fd.Write(buf[0:n])
  /prebuilts/go/linux-x86/src/compress/zlib/
example_test.go 19 w.Write([]byte("hello, world\n"))
  /prebuilts/go/linux-x86/src/internal/race/
norace.go 33 func Write(addr unsafe.Pointer) {
  /prebuilts/go/linux-x86/test/fixedbugs/
bug353.go 23 fd.Write(buf[0:n])
  /system/tools/aidl/
code_writer.cpp 37 bool Write(const char* format, ...) override {
62 bool Write(const char* format, ...) override {
104 cerr << "unable to open " << output_file << " for write" << endl;
  /system/update_engine/payload_consumer/
bzip_extent_writer.cc 40 bool BzipExtentWriter::Write(const void* bytes, size_t count) {
67 next_->Write(output_buffer.data(),
  /tools/metalava/src/test/java/com/android/tools/metalava/
AnnotationsDifferTest.kt 31 fun `Write diff`() {
  /art/libartbase/base/unix_file/
random_access_file_test.h 76 ASSERT_EQ(content.size(), static_cast<uint64_t>(file->Write(content.data(), content.size(), 0)));
116 ASSERT_EQ(content.size(), static_cast<uint64_t>(file->Write(content.data(), content.size(), 0)));
144 // Can't write to a negative offset.
145 ASSERT_EQ(-EINVAL, file->Write(content.data(), 0, -123));
148 ASSERT_EQ(0, file->Write(content.data(), 0, 0));
151 // We can write data.
152 ASSERT_EQ(content.size(), static_cast<uint64_t>(file->Write(content.data(), content.size(), 0)));
164 ASSERT_EQ(content.size(), static_cast<uint64_t>(file->Write(content.data(), content.size(),
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Drivers/PL35xSmc/
InitializeSMC.asm 37 // Write to set_cycle register(holding register for NOR 1 cycle register or NAND cycle register)
41 // Write to set_opmode register(holding register for NOR 1 opomode register or NAND opmode register)
45 // Write to direct_cmd register so that the NOR 1 registers(set-cycles and opmode) are updated with holding registers
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/templates/
ar_eventhandlerfile_h.template 99 file.write((char*)mBuffer, mBufOffset);
109 /// @brief Write event and its payload to the memory buffer.
110 void Write(uint32_t eventId, const char* pBlock, uint32_t size)
134 Write(${protos['events'][name]['event_id']}, (char*)&event.data, 0);
136 Write(${protos['events'][name]['event_id']}, (char*)&event.data, sizeof(event.data));
  /prebuilts/go/darwin-x86/src/crypto/cipher/
io.go 26 // to process each slice of data which passes through. If any Write call
29 // to be called to flush write data.
36 func (w StreamWriter) Write(src []byte) (n int, err error) {
39 n, err = w.W.Write(c)
  /prebuilts/go/darwin-x86/src/encoding/csv/
writer_test.go 62 func (e errorWriter) Write(b []byte) (int, error) {
69 f.Write([]string{"abc"})
78 f.Write([]string{"abc"})
  /prebuilts/go/darwin-x86/src/net/
rawconn_windows_test.go 57 err = cc.Write(op)
59 t.Error("Write should return an error")
62 t.Error("Write shouldn't call op")
  /prebuilts/go/linux-x86/src/crypto/cipher/
io.go 26 // to process each slice of data which passes through. If any Write call
29 // to be called to flush write data.
36 func (w StreamWriter) Write(src []byte) (n int, err error) {
39 n, err = w.W.Write(c)
  /prebuilts/go/linux-x86/src/encoding/csv/
writer_test.go 62 func (e errorWriter) Write(b []byte) (int, error) {
69 f.Write([]string{"abc"})
78 f.Write([]string{"abc"})

Completed in 399 milliseconds

<<11121314151617181920>>