HomeSort by relevance Sort by last modified time
    Searched refs:Header (Results 251 - 275 of 430) sorted by null

<<1112131415161718

  /external/nist-sip/java/gov/nist/javax/sip/message/
MultipartMimeContentImpl.java 3 import gov.nist.javax.sip.header.HeaderFactoryExt;
4 import gov.nist.javax.sip.header.HeaderFactoryImpl;
12 import javax.sip.header.ContentDispositionHeader;
13 import javax.sip.header.ContentTypeHeader;
14 import javax.sip.header.Header;
15 import javax.sip.header.HeaderFactory;
101 // NOTE - we are not hanlding line folding for the sip header here.
121 throw new ParseException("no content type header found in " + nextPart, 0);
132 Header header = headerFactory.createHeader(hdr) local
    [all...]
SIPRequest.java 45 import javax.sip.header.*;
47 import gov.nist.javax.sip.header.*;
55 * Bystrom. Szabo Barna noticed a contact in a cancel request - this is a pointless header for
211 * Check header for constraints. (1) Invite options and bye requests can only have SIP URIs in
216 String prefix = "Missing a required header : ";
246 throw new ParseException("No via header in request! ", 0);
258 * single Event header field in PUBLISH requests. The value of this header field
266 * RFC 3261 8.1.1.8 The Contact header field MUST be present and contain exactly one SIP
269 * requests, the scope of the Contact is global. That is, the Contact header field valu
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/tester/org/apache/http/
TestHttpResponseTest.java 3 import org.apache.http.Header;
97 Header[] headers = resp.getHeaders("Location");
  /frameworks/av/libvideoeditor/vss/common/inc/
M4WRITER_common.h 113 * @brief This structure defines the buffer where an header is put.
118 M4OSA_MemAddr8 pBuf; /**< Buffer for the header */
134 M4WRITER_Header Header; /**< Sequence header of the video stream,
135 member set to NULL if no header present */
150 M4WRITER_Header Header; /**< Decoder Specific Info of the audiostream,
  /frameworks/base/core/tests/coretests/src/com/android/internal/http/multipart/
MultipartTest.java 20 import org.apache.http.Header;
53 Header h = me.getContentType();
  /frameworks/base/include/androidfw/
CursorWindow.h 142 struct Header {
167 Header* mHeader;
  /frameworks/compile/libbcc/include/bcc/Renderscript/
RSInfo.h 62 /* RS info file header */
63 struct __attribute__((packed)) Header {
197 rsinfo::Header mHeader;
  /packages/apps/Exchange/tests/src/com/android/exchange/
EasSyncServiceTests.java 27 import org.apache.http.Header;
58 // With second argument false, there should be no header
60 Header[] headers = method.getHeaders("X-MS-PolicyKey");
62 // With second argument true, there should always be a header
69 // With an account, but null security key, the header's value should be "0"
78 // With an account and security key, the header's value should be the security key
  /art/runtime/
dex_file_verifier.h 88 const DexFile::Header* header_;
  /external/apache-http/src/org/apache/http/impl/auth/
DigestScheme.java 38 import org.apache.http.Header;
64 * Authentication header, the charset of the username must be compatible
118 * @param header the challenge header
125 final Header header) throws MalformedChallengeException {
126 super.processChallenge(header);
219 public Header authenticate(
257 * value in the Authentication HTTP header.
374 * Creates digest-response header as defined in RFC2617
    [all...]
  /external/chromium_org/components/nacl/loader/
nacl_ipc_adapter.h 58 // particular, the header has some extra fields on Posix platforms. Since
59 // NaCl is a Posix environment, it gets that version of the header. This
60 // header is duplicated here so we have a cross-platform definition of the
61 // header we're exposing to NaCl.
63 struct NaClMessageHeader : public Pickle::Header {
  /external/chromium_org/ipc/
ipc_channel_posix.h 162 (Channel::kReadBufferSize / sizeof(IPC::Message::Header)) *
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
WebVTTParser.h 65 Header,
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_parse.h 40 struct tgsi_header Header;
144 struct tgsi_header header; local
145 memcpy(&header, tokens, sizeof(header));
146 return header.HeaderSize + header.BodySize;
  /external/clang/test/PCH/
chain-cxx.cpp 17 // Primary header for C++ chained PCH test
62 #error Header inclusion order messed up
66 // Dependent header for C++ chained PCH test
  /external/markdown/markdown/extensions/
headerid.py 12 >>> text = "# Some Header # {#some_id}"
15 u'<h1 id="some_id">Some Header</h1>'
17 All header IDs are unique:
20 ... #Header
21 ... #Another Header {#header}
22 ... #Third Header {#header}'''
25 u'<h1 id="header">Header</h1>\\n<h1 id="header_1">Another Header</h1>\\n<h1 id="header_2">Third Header</h1>
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_parse.h 40 struct tgsi_header Header;
144 struct tgsi_header header; local
145 memcpy(&header, tokens, sizeof(header));
146 return header.HeaderSize + header.BodySize;
  /external/sfntly/cpp/src/sfntly/table/core/
os2_table.h 318 Builder(Header* header, WritableFontData* data);
319 Builder(Header* header, ReadableFontData* data);
323 static CALLER_ATTACH Builder* CreateBuilder(Header* header,
502 OS2Table(Header* header, ReadableFontData* data);
  /frameworks/base/core/java/android/net/http/
Request.java 28 import org.apache.http.Header;
167 * Add header represented by given pair to request. Header will
169 * @param name of header
170 * @param value of header
174 String damage = "Null http header name";
179 String damage = "Null or empty value for header \"" + name + "\"";
217 Header header = (Header)i.next() local
252 Headers header = new Headers(); local
    [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
RSInfoReader.cpp 180 const rsinfo::Header *header; local
209 // Header starts at the beginning of the file.
210 header = reinterpret_cast<const rsinfo::Header *>(data);
213 if (::memcmp(header->magic, RSINFO_MAGIC, sizeof(header->magic)) != 0) {
220 if (::memcmp(header->version,
222 sizeof((header->version)) != 0)) {
225 header->version)
    [all...]
  /system/core/include/utils/
BlobCache.h 171 // A Header is the header for the entire BlobCache serialization format. No
173 struct Header {
185 // mNumEntries is number of cache entries following the header in the
190 // An EntryHeader is the header for a serialized cache entry. No need to
  /external/apache-http/src/org/apache/http/impl/cookie/
RFC2965Spec.java 39 import org.apache.http.Header;
97 final Header header,
99 if (header == null) {
100 throw new IllegalArgumentException("Header may not be null");
108 HeaderElement[] elems = header.getElements();
119 if (header.getName().equals(SM.SET_COOKIE2)) {
249 public Header getVersionHeader() {
  /external/chromium_org/rlz/win/lib/
rlz_lib_win.cc 94 if ((ace->Header.AceFlags & INHERIT_ONLY_ACE) == INHERIT_ONLY_ACE)
101 if (ace->Header.AceType == ACCESS_ALLOWED_ACE_TYPE &&
105 if (ace->Header.AceType == ACCESS_DENIED_ACE_TYPE &&
  /external/sfntly/cpp/src/sfntly/table/truetype/
glyph_table.h 115 Builder(Header* header, ReadableFontData* data);
121 static CALLER_ATTACH Builder* CreateBuilder(Header* header,
301 // header
324 GlyphTable(Header* header, ReadableFontData* data);
  /external/llvm/include/llvm/Object/
ELF.h 128 // Section header.
141 Elf_Word sh_link; // Section type-specific header table index link
156 Elf_Word sh_link; // Section type-specific header table index link
186 Elf_Half st_shndx; // Which section (header table index) it's defined in
195 Elf_Half st_shndx; // Which section (header table index) it's defined in
445 Elf_Off e_phoff; // Program header table's file offset, in bytes
446 Elf_Off e_shoff; // Section header table's file offset, in bytes
448 Elf_Half e_ehsize; // Size of ELF header, in bytes
449 Elf_Half e_phentsize;// Size of an entry in the program header table
450 Elf_Half e_phnum; // Number of entries in the program header tabl
    [all...]

Completed in 1571 milliseconds

<<1112131415161718