HomeSort by relevance Sort by last modified time
    Searched refs:WriteHeader (Results 26 - 50 of 93) sorted by null

12 3 4

  /prebuilts/go/darwin-x86/src/archive/tar/
example_test.go 37 if err := tw.WriteHeader(hdr); err != nil {
writer.go 31 // Call WriteHeader to begin a new file, and then call Write to supply that file's data,
41 hdrBuff block // buffer to use in writeHeader when writing a regular header
42 paxHdrBuff block // buffer to use in writeHeader when writing a PAX header
76 // WriteHeader writes hdr and prepares to accept the file's contents.
77 // WriteHeader calls Flush if it is not the first header.
79 func (tw *Writer) WriteHeader(hdr *Header) error {
80 return tw.writeHeader(hdr, true)
83 // WriteHeader writes hdr and prepares to accept the file's contents.
84 // WriteHeader calls Flush if it is not the first header.
88 func (tw *Writer) writeHeader(hdr *Header, allowPax bool) error
    [all...]
tar_test.go 104 if err := tw.WriteHeader(hdr); err != nil {
105 t.Fatalf("tw.WriteHeader: %v", err)
  /prebuilts/go/linux-x86/src/archive/tar/
example_test.go 37 if err := tw.WriteHeader(hdr); err != nil {
writer.go 31 // Call WriteHeader to begin a new file, and then call Write to supply that file's data,
41 hdrBuff block // buffer to use in writeHeader when writing a regular header
42 paxHdrBuff block // buffer to use in writeHeader when writing a PAX header
76 // WriteHeader writes hdr and prepares to accept the file's contents.
77 // WriteHeader calls Flush if it is not the first header.
79 func (tw *Writer) WriteHeader(hdr *Header) error {
80 return tw.writeHeader(hdr, true)
83 // WriteHeader writes hdr and prepares to accept the file's contents.
84 // WriteHeader calls Flush if it is not the first header.
88 func (tw *Writer) writeHeader(hdr *Header, allowPax bool) error
    [all...]
tar_test.go 104 if err := tw.WriteHeader(hdr); err != nil {
105 t.Fatalf("tw.WriteHeader: %v", err)
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCMachObjectWriter.h 151 void WriteHeader(unsigned NumLoadCommands, unsigned LoadCommandsSize,
  /prebuilts/go/darwin-x86/src/net/http/cgi/
child.go 184 r.WriteHeader(http.StatusOK)
189 func (r *response) WriteHeader(code int) {
  /prebuilts/go/linux-x86/src/net/http/cgi/
child.go 184 r.WriteHeader(http.StatusOK)
189 func (r *response) WriteHeader(code int) {
  /prebuilts/go/darwin-x86/src/net/http/fcgi/
child.go 92 r.WriteHeader(http.StatusOK)
97 func (r *response) WriteHeader(code int) {
122 r.WriteHeader(http.StatusOK)
267 r.WriteHeader(http.StatusInternalServerError)
  /prebuilts/go/linux-x86/src/net/http/fcgi/
child.go 92 r.WriteHeader(http.StatusOK)
97 func (r *response) WriteHeader(code int) {
122 r.WriteHeader(http.StatusOK)
267 r.WriteHeader(http.StatusInternalServerError)
  /prebuilts/go/darwin-x86/src/net/http/pprof/
pprof.go 109 w.WriteHeader(http.StatusInternalServerError)
133 w.WriteHeader(http.StatusInternalServerError)
201 w.WriteHeader(404)
  /prebuilts/go/linux-x86/src/net/http/pprof/
pprof.go 109 w.WriteHeader(http.StatusInternalServerError)
133 w.WriteHeader(http.StatusInternalServerError)
201 w.WriteHeader(404)
  /prebuilts/go/darwin-x86/src/net/http/httputil/
reverseproxy.go 208 rw.WriteHeader(http.StatusBadGateway)
229 rw.WriteHeader(http.StatusBadGateway)
246 rw.WriteHeader(res.StatusCode)
  /prebuilts/go/linux-x86/src/net/http/httputil/
reverseproxy.go 208 rw.WriteHeader(http.StatusBadGateway)
229 rw.WriteHeader(http.StatusBadGateway)
246 rw.WriteHeader(res.StatusCode)
  /prebuilts/go/darwin-x86/src/net/http/
npn_test.go 127 func (w http09Writer) WriteHeader(int) {} // no headers
server.go 92 // WriteHeader. The Header map also is the mechanism with which
95 // Changing the header map after a call to WriteHeader (or
115 // If WriteHeader has not yet been called, Write calls
116 // WriteHeader(http.StatusOK) before writing the data. If the Header
122 // Write or WriteHeader may prevent future reads on the
134 // WriteHeader sends an HTTP response header with status code.
135 // If WriteHeader is not called explicitly, the first call to Write
136 // will trigger an implicit WriteHeader(http.StatusOK).
137 // Thus explicit calls to WriteHeader are mainly used to
139 WriteHeader(int
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
npn_test.go 127 func (w http09Writer) WriteHeader(int) {} // no headers
server.go 92 // WriteHeader. The Header map also is the mechanism with which
95 // Changing the header map after a call to WriteHeader (or
115 // If WriteHeader has not yet been called, Write calls
116 // WriteHeader(http.StatusOK) before writing the data. If the Header
122 // Write or WriteHeader may prevent future reads on the
134 // WriteHeader sends an HTTP response header with status code.
135 // If WriteHeader is not called explicitly, the first call to Write
136 // will trigger an implicit WriteHeader(http.StatusOK).
137 // Thus explicit calls to WriteHeader are mainly used to
139 WriteHeader(int
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zOut.h 272 void WriteHeader(
  /external/v8/src/
value-serializer.h 51 void WriteHeader();
  /external/webrtc/webrtc/modules/audio_coding/test/
RTPFile.cc 139 void RTPFile::WriteHeader() {
  /system/extras/perfprofd/quipper/
perf_reader.h 215 bool WriteHeader(const BufferWithSize& data) const;
  /system/tools/aidl/
generate_cpp.cpp 756 bool WriteHeader(const CppOptions& options,
833 if (!WriteHeader(options, types, interface, io_delegate,
835 !WriteHeader(options, types, interface, io_delegate,
837 !WriteHeader(options, types, interface, io_delegate,
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_format_vp9.cc 606 if (!WriteHeader(packet_info, buffer, &header_length))
617 bool RtpPacketizerVp9::WriteHeader(const PacketInfo& packet_info,

Completed in 413 milliseconds

12 3 4