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

1 2 3 4 5 6 78 91011>>

  /external/skia/tools/lua/
ngrams_aggregate.lua 19 -- Write the result.
21 io.write(countPair[1], "\t", countPair[2], "\n")
  /external/skqp/tools/lua/
ngrams_aggregate.lua 19 -- Write the result.
21 io.write(countPair[1], "\t", countPair[2], "\n")
  /prebuilts/go/darwin-x86/src/compress/gzip/
gzip.go 29 Header // written at first call to Write, Flush, or Close
48 // the first call to Write, Flush, or Close.
95 return errors.New("gzip.Write: Extra data is too large")
98 _, err := z.w.Write(z.buf[:2])
102 _, err = z.w.Write(b)
113 return errors.New("gzip.Write: non-Latin-1 header string")
124 _, err = z.w.Write(b)
133 _, err = z.w.Write(z.buf[:1])
137 // Write writes a compressed form of p to the underlying io.Writer. The
139 func (z *Writer) Write(p []byte) (int, error)
    [all...]
  /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
48 func (c *rawConn) Write(f func(uintptr) bool) error {
55 err = &OpError{Op: "raw-write", Net: c.fd.net, Source: c.fd.laddr, Addr: c.fd.raddr, Err: err}
72 func (l *rawListener) Write(func(uintptr) bool) error {
  /prebuilts/go/darwin-x86/test/fixedbugs/issue15470.dir/
a.go 23 Write(w io.Writer, _ int, start bool) // _ (blank) caused crash
  /prebuilts/go/darwin-x86/test/fixedbugs/issue4590.dir/
pkg2.go 13 Write() error
  /prebuilts/go/linux-x86/src/compress/gzip/
gzip.go 29 Header // written at first call to Write, Flush, or Close
48 // the first call to Write, Flush, or Close.
95 return errors.New("gzip.Write: Extra data is too large")
98 _, err := z.w.Write(z.buf[:2])
102 _, err = z.w.Write(b)
113 return errors.New("gzip.Write: non-Latin-1 header string")
124 _, err = z.w.Write(b)
133 _, err = z.w.Write(z.buf[:1])
137 // Write writes a compressed form of p to the underlying io.Writer. The
139 func (z *Writer) Write(p []byte) (int, error)
    [all...]
  /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
48 func (c *rawConn) Write(f func(uintptr) bool) error {
55 err = &OpError{Op: "raw-write", Net: c.fd.net, Source: c.fd.laddr, Addr: c.fd.raddr, Err: err}
72 func (l *rawListener) Write(func(uintptr) bool) error {
  /prebuilts/go/linux-x86/test/fixedbugs/issue15470.dir/
a.go 23 Write(w io.Writer, _ int, start bool) // _ (blank) caused crash
  /prebuilts/go/linux-x86/test/fixedbugs/issue4590.dir/
pkg2.go 13 Write() error
  /system/core/fastboot/
tcp_test.cpp 109 bool Write(const std::string& message) {
110 return transport_->Write(message.data(), message.length()) ==
131 EXPECT_TRUE(Write("foo"));
160 EXPECT_TRUE(Write(data));
189 EXPECT_TRUE(Write("getvar:version"));
192 EXPECT_TRUE(Write("getvar:all"));
216 EXPECT_EQ(-1, transport_->Write("foo", 3));
222 // After closing, Transport Read()/Write() should return -1 without actually attempting any
226 EXPECT_EQ(-1, transport_->Write("foo", 3));
  /system/tpm/attestation/server/
database_impl.h 38 virtual bool Write(const std::string& data) = 0;
63 bool Write(const std::string& data) override;
  /system/update_engine/payload_consumer/
cached_file_descriptor.cc 51 ssize_t CachedFileDescriptor::Write(const void* buf, size_t count) {
65 // Cache is full; write it to the |fd_| as long as you can.
87 auto bytes_wrote = fd_->Write(cache_.data() + begin, bytes_cached_ - begin);
file_descriptor.h 36 // * A FileDescriptor is reusable and can be used to read/write multiple files
39 // * Write() returns the number of bytes written: this appears to be more useful
68 virtual ssize_t Write(const void* buf, size_t count) = 0;
81 // BLKZEROOUT and BLKSECDISCARD to discard, write zeros or securely discard
91 // call. Returns false if it fails to write data. Implementations may set
119 ssize_t Write(const void* buf, size_t count) override;
file_writer_unittest.cc 47 EXPECT_TRUE(file_writer.Write("test", 4));
72 EXPECT_FALSE(file_writer.Write("x", 1));
mtd_file_descriptor.h 30 // descriptor supports either random read, or sequential write but not both at
41 ssize_t Write(const void* buf, size_t count) override;
66 // Once the file descriptor is opened for write, the volume is marked as being
77 ssize_t Write(const void* buf, size_t count) override;
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/nettest/
conntest.go 69 t.Errorf("unexpected c1.Write error: %v", err)
120 if _, err := c.Write(buf); err != nil {
121 t.Errorf("unexpected Write error: %v", err)
135 if _, err := c1.Write(make([]byte, 8)); err != nil {
136 t.Errorf("unexpected c1.Write error: %v", err)
168 // testRacyWrite tests that it is safe to mutate the input Write buffer
185 _, err := c1.Write(b1)
196 // testReadTimeout tests that Read timeouts do not affect Write.
203 if _, err := c1.Write(make([]byte, 1024)); err != nil {
204 t.Errorf("unexpected Write error: %v", err
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/norm/
readwriter.go 17 // Write implements the standard write interface. If the last characters are
19 // write. The remaining bytes will be written on close.
20 func (w *normWriter) Write(data []byte) (n int, err error) {
36 // Write out complete prefix, save remainder.
43 if _, err = w.w.Write(w.buf[:i]); err != nil {
56 _, err := w.w.Write(w.buf)
64 // Writer returns a new writer that implements Write(b)
66 // an internal buffer to maintain state across Write calls.
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/nettest/
conntest.go 69 t.Errorf("unexpected c1.Write error: %v", err)
120 if _, err := c.Write(buf); err != nil {
121 t.Errorf("unexpected Write error: %v", err)
135 if _, err := c1.Write(make([]byte, 8)); err != nil {
136 t.Errorf("unexpected c1.Write error: %v", err)
168 // testRacyWrite tests that it is safe to mutate the input Write buffer
185 _, err := c1.Write(b1)
196 // testReadTimeout tests that Read timeouts do not affect Write.
203 if _, err := c1.Write(make([]byte, 1024)); err != nil {
204 t.Errorf("unexpected Write error: %v", err
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/unicode/norm/
readwriter.go 17 // Write implements the standard write interface. If the last characters are
19 // write. The remaining bytes will be written on close.
20 func (w *normWriter) Write(data []byte) (n int, err error) {
36 // Write out complete prefix, save remainder.
43 if _, err = w.w.Write(w.buf[:i]); err != nil {
56 _, err := w.w.Write(w.buf)
64 // Writer returns a new writer that implements Write(b)
66 // an internal buffer to maintain state across Write calls.
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
msr-imm.s 7 @ Write to Special Register from Immediate
8 @ Write to application status register
14 @ Write to CPSR flags
21 @ Write to CPSR flag combos
83 @ Write to Saved status register
84 @ Write to SPSR flags
91 @Write to SPSR flag combos
  /device/linaro/bootloader/OpenPlatformPkg/Drivers/Net/MvMdioDxe/
MvMdioDxe.c 120 IN BOOLEAN Write,
140 /* fill the phy addr and reg offset and write opcode and data */
143 if (Write) {
150 /* write the smi register */
153 /* make sure that the write transaction is over */
154 Status = Write ? MdioWaitReady () : MdioWaitValid ();
160 if (!Write) {
219 Mdio->Write = MvMdioWrite;
  /device/linaro/bootloader/edk2/DuetPkg/PciRootBridgeNoEnumerationDxe/Ia32/
PcatIo.c 57 return gCpuIo->Io.Write (
87 IN BOOLEAN Write,
172 This->Io.Write (This, EfiPciWidthUint32, PrivateData->PciAddress, 1, &PciAligned);
173 if (Write) {
174 This->Io.Write (This, Width, PciData, 1, UserBuffer);
198 if (Write) {
199 This->Mem.Write (This, Width, (UINTN) PciExpressRegAddr, 1, UserBuffer);
353 IoDev->Pci.Write (IoDev, EfiPciWidthUint16, Address + 0x26, 1, &Register);
354 IoDev->Pci.Write (IoDev, EfiPciWidthUint32, Address + 0x2c, 1, &Register);
356 IoDev->Pci.Write (IoDev, EfiPciWidthUint16, Address + 0x24, 1, &Register);
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/PciRootBridgeNoEnumerationDxe/X64/
PcatIo.c 57 return gCpuIo->Io.Write (
87 IN BOOLEAN Write,
172 This->Io.Write (This, EfiPciWidthUint32, PrivateData->PciAddress, 1, &PciAligned);
173 if (Write) {
174 This->Io.Write (This, Width, PciData, 1, UserBuffer);
198 if (Write) {
199 This->Mem.Write (This, Width, (UINTN) PciExpressRegAddr, 1, UserBuffer);
353 IoDev->Pci.Write (IoDev, EfiPciWidthUint16, Address + 0x26, 1, &Register);
354 IoDev->Pci.Write (IoDev, EfiPciWidthUint32, Address + 0x2c, 1, &Register);
356 IoDev->Pci.Write (IoDev, EfiPciWidthUint16, Address + 0x24, 1, &Register);
    [all...]
  /external/tensorflow/tensorflow/java/src/gen/cc/
source_writer_test.cc 65 writer.Write("You say goodbye and I say hello!");
73 writer.Write("You say goodbye\nand I say hello!");
81 writer.Indent(2).Write("You say goodbye\nand I say hello!");
89 writer.Prefix("--").Write("You say goodbye\nand I say hello!");
97 writer.Indent(2).Prefix("--").Write("You say goodbye\nand I say hello!");

Completed in 525 milliseconds

1 2 3 4 5 6 78 91011>>