Home
last modified time | relevance | path

Searched refs:trailer (Results 1 – 25 of 101) sorted by relevance

12345

/external/curl/tests/
Dserverhelp.pm149 my $trailer = '_server.pid';
150 return '.'. servername_canon($proto, $ipver, $idnum) ."$trailer";
159 my $trailer = '_server.log';
160 $trailer = '_stunnel.log' if(lc($proto) =~ /^(ftp|http|imap|pop3|smtp)s$/);
161 return "${logdir}/". servername_canon($proto, $ipver, $idnum) ."$trailer";
170 my $trailer = '_server.cmd';
171 return "${logdir}/". servername_canon($proto, $ipver, $idnum) ."$trailer";
180 my $trailer = '_server.input';
181 return "${logdir}/". servername_canon($proto, $ipver, $idnum) ."$trailer";
190 my $trailer = '_server.output';
[all …]
/external/curl/tests/data/
Dtest26616 Trailer: chunky-trailer
27 chunky-trailer: header data
34 Trailer: chunky-trailer
48 HTTP GET with chunked Transfer-Encoding and chunked trailer
71 Trailer: chunky-trailer
74 chunky-trailer: header data
Dtest141716 Trailer: chunky-trailer
27 chunky-trailer: header data
34 Trailer: chunky-trailer
48 HTTP GET with chunked encoding and chunked trailer without CRs
71 Trailer: chunky-trailer
74 chunky-trailer: header data
Dtest111626 chunky-trailer: header data
47 HTTP GET with chunked trailer without Trailer:
72 chunky-trailer: header data
/external/llvm/test/MC/AsmParser/
Ddirective_rept-diagnostics.s33 .global trailer symbol
34 .type trailer,@object
35 trailer: label
36 .rep 0 trailer
39 # CHECK: .rep 0 trailer
/external/curl/lib/
Dhttp_chunks.c263 conn->trailer[conn->trlPos++]=0x0d; in Curl_httpchunk_read()
264 conn->trailer[conn->trlPos++]=0x0a; in Curl_httpchunk_read()
265 conn->trailer[conn->trlPos]=0; in Curl_httpchunk_read()
268 result = Curl_convert_from_network(conn->data, conn->trailer, in Curl_httpchunk_read()
277 conn->trailer, conn->trlPos); in Curl_httpchunk_read()
302 ptr = realloc(conn->trailer, conn->trlMax + 3); in Curl_httpchunk_read()
310 conn->trailer = ptr; in Curl_httpchunk_read()
312 conn->trailer[conn->trlPos++]=*datap; in Curl_httpchunk_read()
Dcurl_sasl_sspi.c1039 unsigned char *trailer = NULL; in Curl_sasl_create_gssapi_security_message() local
1144 trailer = malloc(sizes.cbSecurityTrailer); in Curl_sasl_create_gssapi_security_message()
1145 if(!trailer) in Curl_sasl_create_gssapi_security_message()
1151 free(trailer); in Curl_sasl_create_gssapi_security_message()
1160 free(trailer); in Curl_sasl_create_gssapi_security_message()
1180 free(trailer); in Curl_sasl_create_gssapi_security_message()
1190 wrap_buf[0].pvBuffer = trailer; in Curl_sasl_create_gssapi_security_message()
1205 free(trailer); in Curl_sasl_create_gssapi_security_message()
1217 free(trailer); in Curl_sasl_create_gssapi_security_message()
1237 free(trailer); in Curl_sasl_create_gssapi_security_message()
/external/tcpdump/tests/
Dripv2_auth.out16 Auth trailer:
23 Auth trailer:
30 Auth trailer:
38 Auth trailer:
46 Auth trailer:
54 Auth trailer:
62 Auth trailer:
71 Auth trailer:
80 Auth trailer:
90 Auth trailer:
/external/jetty/src/java/org/eclipse/jetty/io/bio/
DStreamEndPoint.java173 public int flush(Buffer header, Buffer buffer, Buffer trailer) throws IOException in flush() argument
203 if (trailer!=null) in flush()
205 int tw=trailer.length(); in flush()
208 int f=flush(trailer); in flush()
/external/jetty/src/java/org/eclipse/jetty/io/
DByteArrayEndPoint.java263 public int flush(Buffer header, Buffer buffer, Buffer trailer) throws IOException in flush() argument
280 if (trailer!=null && trailer.length()>0) in flush()
282 flushed+=flush(trailer); in flush()
/external/pdfium/testing/resources/
Dtrailer_as_hexstring.in26 % trailer erroneously contains a hex string, not a dictionary.
27 trailer <0000deadbabe0000>
Dtrailer_unterminated.in26 % closing angle-brackets not present for trailer dictionary.
27 trailer <<
Dbug_454695.in7 trailer <<
Dbug_298.in15 trailer <<
Dbug_544880.in14 trailer <<
Dbug_113.in25 trailer <<
/external/llvm/test/MC/ARM/
Ddirective-align.s21 trailer: label
25 @ CHECK-LABEL: trailer
/external/mesa3d/src/mapi/glapi/gen/
DglX_proto_send.py835 trailer = " }"
837 trailer = None
866 if trailer: print trailer
887 trailer = " }"
889 trailer = None
921 if trailer: print trailer
/external/skia/gm/
Darcto.cpp185 const char trailer[] = "</svg>\n"; in DEF_SIMPLE_GM() local
186 sk_fwrite(trailer, sizeof(trailer) - 1, file); in DEF_SIMPLE_GM()
/external/srtp/googlepatches/
Dgoogle-7-srtp-security-fix.patch66 trailer = (uint32_t *) ((char *) hdr +
68 - if (*((unsigned char *) trailer) & SRTCP_E_BYTE_BIT) {
70 + e_bit_in_packet = (*((unsigned char *) trailer) & SRTCP_E_BYTE_BIT) == SRTCP_E_BYTE_BIT;
/external/chromium-trace/catapult/catapult_base/catapult_base/refactor/annotated_symbol/
Dreference.py31 if nodes[i].type != symbol.trailer:
75 self._children.append(snippet.Symbol(symbol.trailer, token_snippets))
/external/webrtc/webrtc/base/
Dsslidentity.cc104 size_t trailer = pem_string.find("-----END " + pem_type + "-----"); in PemToDer() local
105 if (trailer == std::string::npos) in PemToDer()
108 std::string inner = pem_string.substr(body + 1, trailer - (body + 1)); in PemToDer()
/external/jetty/src/java/org/eclipse/jetty/io/nio/
DChannelEndPoint.java324 public int flush(Buffer header, Buffer buffer, Buffer trailer) throws IOException in flush() argument
351 trailer!=null && trailer.length()>0) in flush()
352 length+=flush(trailer); in flush()
DSelectChannelEndPoint.java376 public int flush(Buffer header, Buffer buffer, Buffer trailer) throws IOException in flush() argument
378 int l = super.flush(header, buffer, trailer); in flush()
381 …& header.hasContent() || buffer!=null && buffer.hasContent() || trailer!=null && trailer.hasConten… in flush()
/external/srtp/srtp/
Dsrtp.c1450 uint32_t *trailer; /* pointer to start of trailer */ in srtp_protect_rtcp() local
1519 trailer = (uint32_t *) ((char *)enc_start + enc_octet_len); in srtp_protect_rtcp()
1522 *trailer = htonl(SRTCP_E_BIT); /* set encrypt bit */ in srtp_protect_rtcp()
1527 *trailer = 0x00000000; /* set encrypt bit */ in srtp_protect_rtcp()
1550 *trailer |= htonl(seq_num); in srtp_protect_rtcp()
1633 uint32_t *trailer; /* pointer to start of trailer */ in srtp_unprotect_rtcp() local
1704 trailer = (uint32_t *) ((char *) hdr + in srtp_unprotect_rtcp()
1706 e_bit_in_packet = (*((unsigned char *) trailer) & SRTCP_E_BYTE_BIT) == SRTCP_E_BYTE_BIT; in srtp_unprotect_rtcp()
1744 seq_num = ntohl(*trailer) & SRTCP_INDEX_MASK; in srtp_unprotect_rtcp()

12345