Searched defs:header (Results 101 - 125 of 541) sorted by relevance

1234567891011>>

/external/nist-sip/java/javax/sip/header/
H A DUserAgentHeader.java1 package javax.sip.header;
H A DWWWAuthenticateHeader.java1 package javax.sip.header;
/external/oprofile/libabi/tests/
H A Dabi_test.cpp70 struct opd_header * header; local
71 header = static_cast<struct opd_header *>(odb_get_data(&dest));
72 memset(header, '\0', sizeof(struct opd_header));
73 header->version = OPD_VERSION;
74 memcpy(header->magic, OPD_MAGIC, sizeof(header->magic));
75 header->is_kernel = 1;
77 header->ctr_event = 0x80;
78 header->ctr_um = 0x0;
79 header
[all...]
/external/valgrind/main/auxprogs/
H A Daix5_proc_self_sysent.c27 prsysent_t* header = (prsysent_t*)&buf[0]; local
28 if (0) printf("Found %u syscalls\n\n", header->pr_nsyscalls);
30 for (i = 0; i < header->pr_nsyscalls; i++) {
31 printf("%3u %s\n", header->pr_syscall[i].pr_number,
32 &buf[ header->pr_syscall[i].pr_nameoff ]);
/external/apache-http/src/org/apache/http/auth/
H A DAuthScheme.java78 * @param header the challenge header
80 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
71 * @param header the <tt>Set-Cookie</tt> received from the server
73 * @return an array of <tt>Cookie</tt>s parsed from the header
76 List<Cookie> parse(Header header, CookieOrigin origin) throws MalformedCookieException; argument
102 * @param cookies the Cookies format into a Cookie header
109 * Returns a request header identifying what version of the state management
111 * specification does not support <tt>Cookie2</tt> header.
/external/apache-http/src/org/apache/http/impl/auth/
H A DAuthSchemeBase.java66 * @param header the challenge header
71 public void processChallenge(final Header header) throws MalformedChallengeException { argument
72 if (header == null) {
75 String authheader = header.getName();
81 throw new MalformedChallengeException("Unexpected header name: " + authheader);
86 if (header instanceof FormattedHeader) {
87 buffer = ((FormattedHeader) header).getBuffer();
88 pos = ((FormattedHeader) header).getValuePos();
90 String s = header
[all...]
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBrowserCompatSpec.java103 public List<Cookie> parse(final Header header, final CookieOrigin origin) argument
105 if (header == null) {
111 String headervalue = header.getValue();
132 if (header instanceof FormattedHeader) {
133 buffer = ((FormattedHeader) header).getBuffer();
135 ((FormattedHeader) header).getValuePos(),
138 String s = header.getValue();
148 elems = header.getElements();
H A DNetscapeDraftSpec.java107 * conform to the HTTP header format. Netscape draft does not specify
108 * whether multiple cookies may be sent in one header. Hence, comma
115 * @param header the <tt>Set-Cookie</tt> received from the server
119 public List<Cookie> parse(final Header header, final CookieOrigin origin) argument
121 if (header == null) {
130 if (header instanceof FormattedHeader) {
131 buffer = ((FormattedHeader) header).getBuffer();
133 ((FormattedHeader) header).getValuePos(),
136 String s = header.getValue();
/external/apache-http/src/org/apache/http/message/
H A DLineFormatter.java46 * status line, or a header line. The formatting does <i>not</i> include the
131 * Formats a header.
132 * Due to header continuation, the result may be multiple lines.
142 * @param header the header to format
144 * @return a buffer holding the formatted header, never <code>null</code>.
150 Header header)
149 formatHeader(CharArrayBuffer buffer, Header header) argument
/external/dropbear/libtomcrypt/src/encauth/eax/
H A Deax_encrypt_authenticate_memory.c27 @param header The header for the session
28 @param headerlen The length of the header (octets)
39 const unsigned char *header, unsigned long headerlen,
55 if ((err = eax_init(eax, cipher, key, keylen, nonce, noncelen, header, headerlen)) != CRYPT_OK) {
36 eax_encrypt_authenticate_memory(int cipher, const unsigned char *key, unsigned long keylen, const unsigned char *nonce, unsigned long noncelen, const unsigned char *header, unsigned long headerlen, const unsigned char *pt, unsigned long ptlen, unsigned char *ct, unsigned char *tag, unsigned long *taglen) argument
H A Deax_init.c28 @param header The header for the EAX state
29 @param headerlen The header length (octets)
35 const unsigned char *header, unsigned long headerlen)
47 LTC_ARGCHK(header != NULL);
89 /* H = OMAC_1K(header) */
101 /* omac the header */
103 if ((err = omac_process(&eax->headeromac, header, headerlen)) != CRYPT_OK) {
108 /* note we don't finish the headeromac, this allows us to add more header later */
32 eax_init(eax_state *eax, int cipher, const unsigned char *key, unsigned long keylen, const unsigned char *nonce, unsigned long noncelen, const unsigned char *header, unsigned long headerlen) argument
/external/icu4c/layout/
H A DSegmentArrayProcessor.cpp27 const NonContextualGlyphSubstitutionHeader *header = (const NonContextualGlyphSubstitutionHeader *) morphSubtableHeader; local
29 segmentArrayLookupTable = (const SegmentArrayLookupTable *) &header->table;
H A DSegmentSingleProcessor.cpp27 const NonContextualGlyphSubstitutionHeader *header = (const NonContextualGlyphSubstitutionHeader *) morphSubtableHeader; local
29 segmentSingleLookupTable = (const SegmentSingleLookupTable *) &header->table;
H A DSimpleArrayProcessor.cpp27 const NonContextualGlyphSubstitutionHeader *header = (const NonContextualGlyphSubstitutionHeader *) morphSubtableHeader; local
29 simpleArrayLookupTable = (const SimpleArrayLookupTable *) &header->table;
H A DSingleTableProcessor.cpp27 const NonContextualGlyphSubstitutionHeader *header = (const NonContextualGlyphSubstitutionHeader *) moprhSubtableHeader; local
29 singleTableLookupTable = (const SingleTableLookupTable *) &header->table;
H A DTrimmedArrayProcessor.cpp27 const NonContextualGlyphSubstitutionHeader *header = (const NonContextualGlyphSubstitutionHeader *) morphSubtableHeader; local
29 trimmedArrayLookupTable = (const TrimmedArrayLookupTable *) &header->table;
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAcceptEncoding.java29 package gov.nist.javax.sip.header;
32 import javax.sip.header.*;
47 * The Accept-Encoding request-header field is similar to Accept, but
89 * Encode the value of this header.
91 * @return the value of this header encoded into a string.
H A DAddressParametersHeader.java24 package gov.nist.javax.sip.header;
27 import javax.sip.header.FromHeader;
28 import javax.sip.header.HeaderAddress;
29 import javax.sip.header.Parameters;
50 * @see gov.nist.javax.sip.header.AddressParameters#getAddress()
57 * @see gov.nist.javax.sip.header.AddressParameters#setAddress(javax.sip.address.Address)
64 * Constructor given the name of the header.
82 * @see gov.nist.javax.sip.header.AddressParameters#clone()
92 * @see gov.nist.javax.sip.header.AddressParameters#equals(java.lang.Object)
H A DAlertInfo.java27 package gov.nist.javax.sip.header;
47 implements javax.sip.header.AlertInfoHeader {
68 * @return The value of the header in canonical encoding.
H A DAllow.java27 package gov.nist.javax.sip.header;
41 SIPHeader implements javax.sip.header.AllowHeader {
H A DAllowEvents.java29 package gov.nist.javax.sip.header;
45 implements javax.sip.header.AllowEventsHeader {
H A DAllowEventsList.java29 package gov.nist.javax.sip.header;
33 import javax.sip.header.*;
H A DAllowList.java29 package gov.nist.javax.sip.header;
33 import javax.sip.header.*;
H A DCallInfo.java29 package gov.nist.javax.sip.header;
43 implements javax.sip.header.CallInfoHeader {

Completed in 1474 milliseconds

1234567891011>>