Searched defs:header (Results 1 - 25 of 1166) sorted by path

1234567891011>>

/external/aac/libSYS/include/
H A Dwav_file.h157 WAV_HEADER header; member in struct:WAV
177 * whatever BPS the WAVE file had specified in its header data.
/external/android-clat/
H A Dclatd.c56 /* 40 bytes IPv6 header - 20 bytes IPv4 header + 8 bytes fragment header */
216 struct __user_cap_header_struct header; local
218 memset(&header, 0, sizeof(header));
221 header.version = _LINUX_CAPABILITY_VERSION;
222 header.pid = 0; // 0 = change myself
225 if(capset(&header, &cap) < 0) {
H A Ddump.c39 /* print ip header */
40 void dump_ip(struct iphdr *header) { argument
44 frag_flags = ntohs(header->frag_off);
47 printf("header_len = %x\n",header->ihl);
48 printf("version = %x\n",header->version);
49 printf("tos = %x\n",header->tos);
50 printf("tot_len = %x\n",ntohs(header->tot_len));
51 printf("id = %x\n",ntohs(header->id));
63 printf("ttl = %x\n",header->ttl);
64 printf("protocol = %x\n",header
73 dump_ip6(struct ip6_hdr *header) argument
[all...]
H A Dipv4.c29 * icmp - pointer to icmp header in packet
30 * checksum - pseudo-header checksum
58 const struct iphdr *header = (struct iphdr *) packet; local
69 logmsg_dbg(ANDROID_LOG_ERROR, "ip_packet/too short for an ip header");
73 if(header->ihl < 5) {
74 logmsg_dbg(ANDROID_LOG_ERROR, "ip_packet/ip header length set to less than 5: %x", header->ihl);
78 if((size_t) header->ihl * 4 > len) { // ip header length larger than entire packet
79 logmsg_dbg(ANDROID_LOG_ERROR, "ip_packet/ip header lengt
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DAbstractTest.java32 protected String header; field in class:AbstractTest
53 public String getHeader() { return this.header; }
76 this.header = buf.toString();
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/apache-http/src/org/apache/http/
H A DHttpMessage.java59 * Checks if a certain header is present in this message. Header values are
62 * @param name the header name to check for.
63 * @return true if at least one header with this name is present.
78 * Returns the first header with a specified name of this message. Header
79 * values are ignored. If there is more than one matching header in the
81 * If there is no matching header in the message <code>null</code> is
84 * @param name the name of the header to return.
85 * @return the first header whose name property equals <code>name</code>
86 * or <code>null</code> if no such header could be found.
91 * Returns the last header wit
116 addHeader(Header header) argument
133 setHeader(Header header) argument
156 removeHeader(Header header) argument
[all...]
/external/apache-http/src/org/apache/http/auth/
H A DAuthScheme.java83 * @param header the challenge header
85 void processChallenge(final Header header) throws MalformedChallengeException; argument
/external/apache-http/src/org/apache/http/cookie/
H A DCookieSpec.java42 * <li> rules of parsing "Set-Cookie" header
44 * <li> formatting of "Cookie" header
76 * @param header the <tt>Set-Cookie</tt> received from the server
78 * @return an array of <tt>Cookie</tt>s parsed from the header
81 List<Cookie> parse(Header header, CookieOrigin origin) throws MalformedCookieException; argument
107 * @param cookies the Cookies format into a Cookie header
114 * Returns a request header identifying what version of the state management
116 * specification does not support <tt>Cookie2</tt> header.
/external/apache-http/src/org/apache/http/impl/auth/
H A DAuthSchemeBase.java71 * @param header the challenge header
76 public void processChallenge(final Header header) throws MalformedChallengeException { argument
77 if (header == null) {
80 String authheader = header.getName();
86 throw new MalformedChallengeException("Unexpected header name: " + authheader);
91 if (header instanceof FormattedHeader) {
92 buffer = ((FormattedHeader) header).getBuffer();
93 pos = ((FormattedHeader) header).getValuePos();
95 String s = header
[all...]
H A DBasicScheme.java92 * @param header the challenge header
99 final Header header) throws MalformedChallengeException {
100 super.processChallenge(header);
124 * Produces basic authorization header for the given set of {@link Credentials}.
151 * Returns a basic <tt>Authorization</tt> header value for the given
157 * @return a basic authorization header
98 processChallenge( final Header header) argument
H A DDigestScheme.java64 * Authentication header, the charset of the username must be compatible
123 * @param header the challenge header
130 final Header header) throws MalformedChallengeException {
131 super.processChallenge(header);
262 * value in the Authentication HTTP header.
379 * Creates digest-response header as defined in RFC2617.
129 processChallenge( final Header header) argument
/external/apache-http/src/org/apache/http/impl/conn/
H A DWire.java58 private void wire(String header, InputStream instream) argument
68 buffer.insert(0, header);
82 buffer.insert(0, header);
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBestMatchSpec.java101 final Header header,
103 if (header == null) {
109 HeaderElement[] helems = header.getElements();
127 // Need to parse the header again,
130 return getNetscape().parse(header, origin);
100 parse( final Header header, final CookieOrigin origin) argument
H A DBrowserCompatSpec.java108 public List<Cookie> parse(final Header header, final CookieOrigin origin) argument
110 if (header == null) {
116 String headervalue = header.getValue();
137 if (header instanceof FormattedHeader) {
138 buffer = ((FormattedHeader) header).getBuffer();
140 ((FormattedHeader) header).getValuePos(),
143 String s = header.getValue();
153 elems = header.getElements();
H A DNetscapeDraftSpec.java112 * conform to the HTTP header format. Netscape draft does not specify
113 * whether multiple cookies may be sent in one header. Hence, comma
120 * @param header the <tt>Set-Cookie</tt> received from the server
124 public List<Cookie> parse(final Header header, final CookieOrigin origin) argument
126 if (header == null) {
135 if (header instanceof FormattedHeader) {
136 buffer = ((FormattedHeader) header).getBuffer();
138 ((FormattedHeader) header).getValuePos(),
141 String s = header.getValue();
H A DRFC2109Spec.java108 public List<Cookie> parse(final Header header, final CookieOrigin origin) argument
110 if (header == null) {
116 HeaderElement[] elems = header.getElements();
195 * header as defined in RFC 2109 for backward compatibility with cookie
218 * Return a string suitable for sending in a <tt>"Cookie"</tt> header
H A DRFC2965Spec.java102 final Header header,
104 if (header == null) {
113 HeaderElement[] elems = header.getElements();
124 if (header.getName().equals(SM.SET_COOKIE2)) {
101 parse( final Header header, CookieOrigin origin) argument
/external/apache-http/src/org/apache/http/message/
H A DAbstractHttpMessage.java98 public void addHeader(final Header header) { argument
99 this.headergroup.addHeader(header);
111 public void setHeader(final Header header) { argument
112 this.headergroup.updateHeader(header);
129 public void removeHeader(final Header header) { argument
130 this.headergroup.removeHeader(header);
139 Header header = (Header) i.next();
140 if (name.equalsIgnoreCase(header.getName())) {
H A DBasicLineFormatter.java47 * status line, or a header line. The formatting does <i>not</i> include the
286 * Formats a header.
288 * @param header the header to format
293 * @return the formatted header
295 public final static String formatHeader(final Header header, argument
299 return formatter.formatHeader(null, header).toString();
305 Header header) {
306 if (header == null) {
312 if (header instanceo
304 formatHeader(CharArrayBuffer buffer, Header header) argument
332 doFormatHeader(final CharArrayBuffer buffer, final Header header) argument
[all...]
H A DHeaderGroup.java76 * Adds the given header to the group. The order in which this header was
79 * @param header the header to add
81 public void addHeader(Header header) { argument
82 if (header == null) {
85 headers.add(header);
89 * Removes the given header.
91 * @param header the header t
93 removeHeader(Header header) argument
107 updateHeader(Header header) argument
[all...]
H A DLineFormatter.java46 * status line, or a header line. The formatting does <i>not</i> include the
136 * Formats a header.
137 * Due to header continuation, the result may be multiple lines.
147 * @param header the header to format
149 * @return a buffer holding the formatted header, never <code>null</code>.
155 Header header)
154 formatHeader(CharArrayBuffer buffer, Header header) argument
/external/blktrace/btt/
H A Doutput.c812 int output_regions(FILE *ofp, char *header, struct region_info *reg, argument
818 fprintf(ofp, "# %16s : q activity\n", header);
822 fprintf(ofp, "# %16s : c activity\n", header);
835 char header[128]; local
838 sprintf(header, "%d,%d", MAJOR(dip->device), MINOR(dip->device));
839 if (output_regions(odp->ofp, header, &dip->regions, odp->base))
/external/bluetooth/bluedroid/test/bluedroidtest/
H A Dbluedroidtest.c121 struct __user_cap_header_struct header; local
126 header.pid = 0;
133 header.version = _LINUX_CAPABILITY_VERSION;
143 capset(&header, &cap);
/external/bsdiff/
H A Dbsdiff.c211 u_char header[32]; local
262 memcpy(header,"BSDIFF40",8);
263 offtout(0, header + 8);
264 offtout(0, header + 16);
265 offtout(newsize, header + 24);
266 if (fwrite(header, 32, 1, pf) != 1)
361 offtout(len-32, header + 8);
376 offtout(newsize - len, header + 16);
388 /* Seek to the beginning, write the header, and close the file */
391 if (fwrite(header, 3
[all...]

Completed in 976 milliseconds

1234567891011>>