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

1 23 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/EmbeddedPkg/Include/Protocol/
EmbeddedExternalDevice.h 71 Write to a set of contiguous external device registers.
77 Length - number of bytes to write
89 EMBEDDED_EXTERNAL_DEVICE_WRITE Write;
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Include/Ppi/
PciCfg.h 39 PCI read and write operation.
63 PCI read-modify-write operation.
98 /// PCI write services. See the Write() function description.
100 EFI_PEI_PCI_CFG_PPI_IO Write;
103 /// PCI read-modify-write services. See the Modify() function description.
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Include/Protocol/
BootScriptSave.h 80 EFI_BOOT_SCRIPT_WRITE Write; ///< Writes various boot scripts to a boot script table.
SmmCpuIo.h 42 the results. For write operations, the source buffer
43 from which to write data.
67 /// This service provides the various modalities of memory and I/O write.
69 EFI_SMM_CPU_IO Write;
  /external/bsdiff/
buffer_file.cc 24 bool BufferFile::Write(const void* buf, size_t count, size_t* bytes_written) {
bz2_compressor.cc 41 bool BZ2Compressor::Write(const uint8_t* buf, size_t size) {
  /external/libchrome/base/
location.cc 46 void Location::Write(bool display_filename, bool display_function_name,
  /external/v8/src/interpreter/
bytecode-dead-code-optimizer.cc 24 void BytecodeDeadCodeOptimizer::Write(BytecodeNode* node) {
38 next_stage_->Write(node);
  /prebuilts/go/darwin-x86/misc/nacl/
mkzip.go 42 gopackage = flag.String("p", "", "write Go source file in this package")
215 func (w *goWriter) Write(b []byte) (int, error) {
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
dumper.go 47 last byte // last byte processed by Write
53 func (p *dumper) Write(data []byte) (n int, err error) {
58 m, err = p.output.Write(data[n : i+1])
70 _, err = p.output.Write(indentBytes)
79 m, err = p.output.Write(data[n:])
  /prebuilts/go/darwin-x86/src/crypto/hmac/
hmac.go 17 mac.Write(message)
48 h.outer.Write(h.opad)
49 h.outer.Write(in[origLen:])
53 func (h *hmac) Write(p []byte) (n int, err error) {
54 return h.inner.Write(p)
63 h.inner.Write(h.ipad)
80 hm.outer.Write(key)
91 hm.inner.Write(hm.ipad)
  /prebuilts/go/darwin-x86/src/encoding/csv/
writer.go 19 // changed to customize the details before the first call to Write or WriteAll.
40 func (w *Writer) Write(record []string) error {
53 // write out the field and continue to the next field.
106 // Error reports any error that has occurred during a previous Write or Flush.
108 _, err := w.w.Write(nil)
112 // WriteAll writes multiple CSV records to w using Write and then calls Flush.
115 err := w.Write(record)
  /prebuilts/go/darwin-x86/src/io/
multi.go 58 func (t *multiWriter) Write(p []byte) (n int, err error) {
60 n, err = w.Write(p)
83 n, err = w.Write(p)
99 // Each write is written to each listed writer, one at a time.
100 // If a listed writer returns an error, that overall write operation
  /prebuilts/go/darwin-x86/src/net/http/cgi/
child.go 160 rw.Write(nil) // make sure a response is sent
182 func (r *response) Write(p []byte) (n int, err error) {
186 return r.bufw.Write(p)
192 fmt.Fprintf(os.Stderr, "CGI attempted to write header twice on request for %s", r.req.URL)
203 r.header.Write(r.bufw)
  /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/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/darwin-x86/test/fixedbugs/issue4590.dir/
pkg1.go 8 Write() error
18 func (c C) Write() error { return nil }
24 Write() error
  /prebuilts/go/linux-x86/misc/nacl/
mkzip.go 42 gopackage = flag.String("p", "", "write Go source file in this package")
215 func (w *goWriter) Write(b []byte) (int, error) {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
dumper.go 47 last byte // last byte processed by Write
53 func (p *dumper) Write(data []byte) (n int, err error) {
58 m, err = p.output.Write(data[n : i+1])
70 _, err = p.output.Write(indentBytes)
79 m, err = p.output.Write(data[n:])
  /prebuilts/go/linux-x86/src/crypto/hmac/
hmac.go 17 mac.Write(message)
48 h.outer.Write(h.opad)
49 h.outer.Write(in[origLen:])
53 func (h *hmac) Write(p []byte) (n int, err error) {
54 return h.inner.Write(p)
63 h.inner.Write(h.ipad)
80 hm.outer.Write(key)
91 hm.inner.Write(hm.ipad)
  /prebuilts/go/linux-x86/src/encoding/csv/
writer.go 19 // changed to customize the details before the first call to Write or WriteAll.
40 func (w *Writer) Write(record []string) error {
53 // write out the field and continue to the next field.
106 // Error reports any error that has occurred during a previous Write or Flush.
108 _, err := w.w.Write(nil)
112 // WriteAll writes multiple CSV records to w using Write and then calls Flush.
115 err := w.Write(record)
  /prebuilts/go/linux-x86/src/io/
multi.go 58 func (t *multiWriter) Write(p []byte) (n int, err error) {
60 n, err = w.Write(p)
83 n, err = w.Write(p)
99 // Each write is written to each listed writer, one at a time.
100 // If a listed writer returns an error, that overall write operation
  /prebuilts/go/linux-x86/src/net/http/cgi/
child.go 160 rw.Write(nil) // make sure a response is sent
182 func (r *response) Write(p []byte) (n int, err error) {
186 return r.bufw.Write(p)
192 fmt.Fprintf(os.Stderr, "CGI attempted to write header twice on request for %s", r.req.URL)
203 r.header.Write(r.bufw)
  /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/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.

Completed in 712 milliseconds

1 23 4 5 6 7 8 91011>>