/external/stlport/stlport/stl/ |
_slist_base.h | 23 /* NOTE: This is an internal header file, included by other STL headers.
|
/external/webkit/WebKit/android/icu/unicode/ |
ucnv.h | 41 // fact that this file will be included before any of the real icu headers.
|
/external/webkit/WebKitTools/DumpRenderTree/TestNetscapePlugIn.subproj/ |
PluginObject.h | 58 extern void notifyStream(PluginObject* object, const char *url, const char *headers);
|
/external/webkit/WebKitTools/QueueStatusServer/handlers/ |
showresults.py | 40 self.response.headers["Content-Type"] = "text/plain; charset=utf-8"
|
/external/webkit/WebKitTools/WinLauncher/ |
stdafx.cpp | 32 // TODO: reference any additional headers you need in STDAFX.H
|
/external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/ |
wpa_gui.pro | 32 HEADERS += wpamsg.h \
|
/external/yaffs2/yaffs2/direct/ |
ydirectenv.h | 15 * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
|
/external/yaffs2/yaffs2/utils/ |
Makefile | 17 #KERNELDIR = /usr/src/kernel-headers-2.4.18
|
/frameworks/base/core/java/android/speech/ |
RecognizerResultsIntent.java | 128 * header. The keys can't be the standard HTTP headers as they are set by the WebView. 130 * A list of size 1 may be provided to apply the same HTTP headers to all web results. A 132 * apply different HTTP headers to each different web result in the list. These headers will
|
/frameworks/base/core/tests/coretests/src/android/widget/expandablelistview/ |
ExpandableListWithHeaders.java | 61 * @return The number of headers (and the same number of footers)
|
/frameworks/base/include/media/stagefright/ |
DataSource.h | 42 const KeyedVector<String8, String8> *headers = NULL);
|
/frameworks/base/media/libmediaplayerservice/ |
MidiFile.h | 35 const char* path, const KeyedVector<String8, String8> *headers);
|
VorbisPlayer.h | 42 const char *uri, const KeyedVector<String8, String8> *headers);
|
/external/apache-http/src/org/apache/http/impl/client/ |
AbstractAuthenticationHandler.java | 73 final Header[] headers) throws MalformedChallengeException { 75 Map<String, Header> map = new HashMap<String, Header>(headers.length); 76 for (Header header : headers) {
|
/external/dropbear/ |
INSTALL | 40 headers don't match the library you are running with, ie the headers might 73 Make sure that your libc headers match the library version you are using.
|
/external/e2fsprogs/debian/attic/libs/ |
control | 60 Description: The Common Error Description library - headers and static libraries. 86 Description: The headers and static libraries for ext2fs-aware tools-development. 90 This package contains the headers and shared libraries needed to compile
|
/external/icu4c/tools/ctestfw/unicode/ |
datamap.h | 22 * For test cases, names are defined in the "Headers" section. For settings 114 RBDataMap(UResourceBundle *headers, UResourceBundle *data, UErrorCode &status); 118 void init(UResourceBundle *headers, UResourceBundle *data, UErrorCode &status);
|
/external/quake/quake/src/QW/scitech/include/ |
debug.h | 121 #define _WIN32 /* Microsoft Win32 SDK headers use _WIN32 */
124 #define WIN32 /* OpenGL headers use WIN32 */
253 /* Includes Windows headers, as they define TRUE and FALSE */
|
/external/quake/quake/src/WinQuake/scitech/INCLUDE/ |
DEBUG.H | 121 #define _WIN32 /* Microsoft Win32 SDK headers use _WIN32 */
124 #define WIN32 /* OpenGL headers use WIN32 */
253 /* Includes Windows headers, as they define TRUE and FALSE */
|
/external/webkit/WebCore/platform/network/curl/ |
ResourceHandleManager.cpp | 172 // called with data after all headers have been processed via headerCallback 457 void ResourceHandleManager::setupPOST(ResourceHandle* job, struct curl_slist** headers) 523 *headers = curl_slist_append(*headers, "Transfer-Encoding: chunked"); 752 struct curl_slist* headers = 0; local 763 headers = curl_slist_append(headers, headerLatin1.data()); 770 setupPOST(job, &headers); 772 setupPUT(job, &headers); 776 if (headers) { [all...] |
/frameworks/base/core/java/android/webkit/ |
FileLoader.java | 23 import android.net.http.Headers; 186 protected void buildHeaders(Headers headers) {
|
/frameworks/base/obex/javax/obex/ |
HeaderSet.java | 242 * headers to include in the next request. 440 * defined in this interface or any of the user-defined headers 493 * Retrieves the list of headers that may be retrieved via the 495 * other words, this method returns all the headers that are available in 498 * @return the array of headers that are set in this object or 499 * <code>null</code> if no headers are available 567 byte[] headers = out.toByteArray(); 570 if ((headers == null) || (headers.length == 0)) { 574 int[] result = new int[headers.length] [all...] |
ClientSession.java | 98 * Byte 7 to n: headers 224 * Bytes 4 & up: headers 341 * Byte 6 & up: headers 357 * Bytes 4 & up: headers 396 * and update the header set object provided. If any authentication headers 400 * @param head the headers to send to the client 421 // Determine if there are any headers to send
|
/external/e2fsprogs/debian/ |
control | 43 Description: common error description library - headers and static libraries 68 Description: command-line interface parsing library - headers and static libraries 118 Description: universally unique id library - headers and static libraries 155 Description: block device id library - headers and static libraries 198 Description: ext2 filesystem libraries - headers and static libraries
|
/external/webkit/WebCore/loader/appcache/ |
ApplicationCacheStorage.cpp | 487 "statusCode INTEGER NOT NULL, responseURL TEXT NOT NULL, mimeType TEXT, textEncodingName TEXT, headers TEXT, data INTEGER NOT NULL ON CONFLICT FAIL)"); 645 // Serialize the headers 656 String headers = String::adopt(stringBuilder); local 658 SQLiteStatement resourceStatement(m_database, "INSERT INTO CacheResources (url, statusCode, responseURL, headers, data, mimeType, textEncodingName) VALUES (?, ?, ?, ?, ?, ?, ?)"); 668 resourceStatement.bindText(4, headers); 806 static inline void parseHeaders(const String& headers, ResourceResponse& response) 810 while ((endPos = headers.find('\n', startPos)) != -1) { 813 parseHeader(headers.characters() + startPos, endPos - startPos, response); 818 if (startPos != static_cast<int>(headers.length())) 819 parseHeader(headers.characters(), headers.length(), response) 852 String headers = cacheStatement.getColumnText(4); local [all...] |