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

<<11121314151617181920>>

  /prebuilts/go/linux-x86/src/net/http/fcgi/
child.go 95 func (r *response) Write(data []byte) (int, error) {
99 return r.w.Write(data)
121 r.header.Write(r.w)
234 req.pw.Write(content)
fcgi_test.go 104 if _, err := w.Write(test.content); err != nil {
122 func (c *writeOnlyConn) Write(p []byte) (int, error) {
128 return 0, errors.New("conn is write-only")
  /prebuilts/go/linux-x86/src/net/http/
header.go 57 // Write writes a header in wire format.
58 func (h Header) Write(w io.Writer) error {
103 return w.w.Write([]byte(s))
requestwrite_test.go 26 WantWrite string // Request.Write
29 WantError error // wanted error from Request.Write
538 err := tt.Req.Write(&braw)
714 // TestRequestWriteClosesBody tests that Request.Write closes its request.Body.
724 if err := req.Write(buf); err != nil {
728 t.Error("body not closed after write")
737 t.Errorf("write:\n got: %s\nwant: %s", buf.String(), expected)
755 func (f writerFunc) Write(p []byte) (int, error) { return f(p) }
757 // TestRequestWriteError tests the Write err != nil checks in (*Request).write
    [all...]
  /prebuilts/go/linux-x86/src/net/
pipe.go 93 wrMu sync.Mutex // Serialize Write operations
95 // Used by local Read to interact with remote Write.
100 // Used by local Write to interact with remote Read.
178 func (p *pipe) Write(b []byte) (int, error) {
179 n, err := p.write(b)
181 err = &OpError{Op: "write", Net: "pipe", Err: err}
186 func (p *pipe) write(b []byte) (n int, err error) { func
  /system/core/fastboot/
tcp.cpp 65 ssize_t Write(const void* data, size_t length) override;
155 ssize_t TcpTransport::Write(const void* data, size_t length) {
  /system/tpm/attestation/server/
database_impl.cc 85 return io_->Write(buffer);
114 bool DatabaseImpl::Write(const std::string& data) {
121 LOG(ERROR) << "Failed to write file: " << file_path.value();
  /system/update_engine/payload_consumer/
mtd_file_descriptor.cc 105 // This File Descriptor does not support read and write.
108 // during write, we need to read back to verify the write actually sticks or
143 ssize_t MtdFileDescriptor::Write(const void* buf, size_t count) {
156 // Ignore seek in write mode.
183 // This File Descriptor does not support read and write.
222 ssize_t UbiFileDescriptor::Write(const void* buf, size_t count) {
224 ssize_t nr_chunk = EintrSafeFileDescriptor::Write(buf, count);
233 // Ignore seek in write mode.
252 ssize_t nr_chunk = EintrSafeFileDescriptor::Write(buf, to_write)
    [all...]
  /art/runtime/
indenter.h 45 Write(s, to_write);
52 Write(s, n);
63 Write(data, 1u);
72 void Write(const char* s, std::streamsize n) {
100 // Buffer to write output to.
  /device/google/cuttlefish_common/guest/hals/audio/
vsoc_audio_output_stream.cpp 200 ssize_t GceAudioOutputStream::Write(const void* buffer, size_t length) {
234 // If this is a blocking write we will block after we have attempted to
240 // There is no danger here:sendmsg does not write to the buffer.
323 out->write =
325 &GceAudioOutputStream::Write>;
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Drivers/NorFlashDxe/
NorFlashDxe.c 34 EFI_STATUS Write(
50 Write,
456 EFIAPI Write(
  /device/linaro/bootloader/edk2/DuetPkg/FSVariable/
VariableStorage.h 77 WRITE_STORE Write;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/DeviceIo/
DeviceIo.h 59 EFI_DEVICE_IO Write;
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Protocol/
UfsHostController.h 62 /// A write operation from system memory by a bus master.
66 /// Provides both read and write access to system memory by both the processor and a
77 @param Operation Indicates if the bus master is going to read or write to system memory.
172 Flushes all posted write transactions from the UFS bus to attached UFS device.
176 @retval EFI_SUCCESS The posted write transactions were flushed from the UFS bus
178 @retval EFI_DEVICE_ERROR The posted write transactions were not flushed from the UFS
205 For write operations, the source buffer to write data from.
247 EDKII_UFS_HC_MMIO_READ_WRITE Write;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Disk/DiskIoDxe/
DiskIo.h 76 BOOLEAN Write;
206 Writes may require a read modify write to support writes that are not
208 UnderRun - The first byte is not on a sector boundary or the write request
209 is less than a sector in length. Read modify write is required.
210 Aligned - A write of N contiguous sectors.
211 OverRun - The last byte is not on a sector boundary. Read modified write
222 @retval EFI_DEVICE_ERROR The device reported an error while performing the write.
225 @retval EFI_INVALID_PARAMETER The write request contains device addresses that are not
270 @retval EFI_DEVICE_ERROR The device reported an error while performing the write.
293 @param Offset The starting byte offset on the logical block I/O device to write to.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
DeviceIo.h 63 @param Buffer For read operations, the destination buffer to store the results. For write
64 operations, the source buffer to write data from. If
86 EFI_DEVICE_IO Write;
118 /// A write operation to system memory by a bus master.
123 /// Provides both read and write access to system memory
135 @param Operation Indicates if the bus master is going to read or write to system memory.
206 Flushes any posted write data to the device.
  /device/linaro/bootloader/edk2/StdLib/Include/Containers/
Fifo.h 173 /** Get the FIFO's current Write Index.
184 cFIFO_Enqueue Write; ///< Write an element into the FIFO.
197 cFIFO_GetWDex GetWDex; ///< Get a copy of the current Write Index.
  /external/compiler-rt/test/asan/TestCases/Linux/
scariness_score_test.cc 43 enum ReadOrWrite { Read = 0, Write = 1 };
139 case 3: HeapBuferOverflow<short>(0, Write); break;
140 case 4: HeapBuferOverflow<int64_t>(2, Write); break;
141 case 5: HeapBuferOverflow<S32>(4, Write); break;
143 case 7: HeapUseAfterFree<int>(0, Write); break;
145 case 9: HeapUseAfterFree<S32>(0, Write); break;
146 case 10: StackBufferOverflow<char>(0, Write); break;
148 case 12: StackBufferOverflow<int>(4, Write); break;
150 case 14: StackUseAfterReturn<S32>(0, Write); break;
166 // CHECK3: SCARINESS: 33 (2-byte-write-heap-buffer-overflow
    [all...]
  /external/giflib/
gif_lib_private.h 48 OutputFunc Write; /* function to write gif output (MRB) */
  /external/google-breakpad/src/common/
module.cc 232 bool Module::Write(std::ostream &stream, SymbolData symbol_data) {
241 // Write out files.
252 // Write out functions and their lines.
277 // Write out 'PUBLIC' records.
288 // Write out 'STACK CFI INIT' and 'STACK CFI' records.
302 // Write out this entry's delta rules as 'STACK CFI' records.
  /external/gptfdisk/
diskio-unix.cc 336 // A variant on the standard write() function. Done to work around
340 int DiskIO::Write(void* buffer, int numBytes) {
361 cerr << "Unable to allocate memory in DiskIO::Write()! Terminating!\n";
365 // Copy the data to my own buffer, then write it
370 retval = write(fd, tempSpace, numBlocks * blockSize);
379 } // DiskIO:Write()
diskio-windows.cc 257 // A variant on the standard write() function.
259 int DiskIO::Write(void* buffer, int numBytes) {
281 cerr << "Unable to allocate memory in DiskIO::Write()! Terminating!\n";
285 // Copy the data to my own buffer, then write it
302 } // DiskIO:Write()
  /external/libbrillo/brillo/dbus/
data_serialization.h 12 // - Methods to write arbitrary C++ data to D-Bus MessageWriter:
48 // - static void Write(dbus::MessageWriter* writer, const CustomType& value);
122 // Write the |value| of type T to D-Bus message.
197 inline static void Write(dbus::MessageWriter* writer, bool value) {
214 inline static void Write(dbus::MessageWriter* writer, uint8_t value) {
231 inline static void Write(dbus::MessageWriter* writer, int16_t value) {
250 inline static void Write(dbus::MessageWriter* writer, uint16_t value) {
267 inline static void Write(dbus::MessageWriter* writer, int32_t value) {
286 inline static void Write(dbus::MessageWriter* writer, uint32_t value) {
303 inline static void Write(dbus::MessageWriter* writer, int64_t value)
    [all...]
  /external/lzma/CPP/7zip/Common/
FileStreams.cpp 341 STDMETHODIMP COutFileStream::Write(const void *data, UInt32 size, UInt32 *processedSize)
346 bool result = File.Write(data, size, realProcessedSize);
356 ssize_t res = File.Write(data, (size_t)size);
418 STDMETHODIMP CStdOutFileStream::Write(const void *data, UInt32 size, UInt32 *processedSize)
428 STDMETHODIMP CStdOutFileStream::Write(const void *data, UInt32 size, UInt32 *processedSize)
460 res = write(1, data, (size_t)size);
  /external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaAlone.cs 46 public override void Write(byte[] buffer, int offset, int count)
48 throw (new Exception("can't Write"));
93 " -eos: write End Of Stream marker\n"
95 // + " -so: write data to stdout\n"
233 outStream = new FileStream(outputName, FileMode.Create, FileAccess.Write);

Completed in 461 milliseconds

<<11121314151617181920>>