HomeSort by relevance Sort by last modified time
    Searched refs:Headers (Results 1 - 25 of 42) sorted by null

1 2

  /frameworks/base/tests/CoreTests/android/core/
HttpHeaderTest.java 21 import android.net.http.Headers;
53 Headers h = new Headers();
81 new Class[] {int.class, Headers.class, String.class});
85 Headers h = new Headers();
TestEventHandler.java 40 /* List of headers received */
217 * Implements the EventHandler headers method called when a server
220 public void headers(Headers headers) { method in class:TestEventHandler
222 Log.v(LOGTAG, "TestEventHandler:headers()");
231 /* Check through headers received for matches with expected
232 * headers */
243 s = Long.toString(headers.getContentLength());
246 s = headers.getContentType()
    [all...]
  /external/clang/lib/
Makefile 12 PARALLEL_DIRS = Headers Basic Lex Parse AST Sema CodeGen Analysis Frontend \
  /frameworks/base/core/java/android/net/http/
EventHandler.java 22 * processed. The normal order of callbacks is status(), headers(),
86 * Called after all headers are successfully processed.
88 public void headers(Headers headers); method in interface:EventHandler
LoggingEventHandler.java 23 import android.net.http.Headers;
46 public void headers(Headers headers) { method in class:LoggingEventHandler
48 HttpLog.v("LoggingEventHandler:headers()");
49 HttpLog.v(headers.toString());
AndroidHttpClientConnection.java 249 * Sends the request line and all headers over the connection.
250 * @param request the request whose headers to send.
295 * Parses the response headers and adds them to the
296 * given {@code headers} object, and returns the response StatusLine
297 * @param headers store parsed header to headers.
302 public StatusLine parseResponseHeader(Headers headers)
334 // Check for folded headers first
336 // discussion on folded headers
    [all...]
HttpsConnection.java 171 // handler with the response status and headers. The event
203 Headers headers = new Headers(); local
208 // add all 'proxy' headers from the original request, we also need
223 // codes prior to receiving actual headers;
227 statusLine = proxyConnection.parseResponseHeader(headers);
280 req.mEventHandler.headers(headers);
Connection.java 482 if (connType == Headers.CONN_CLOSE) {
484 } else if (connType == Headers.CONN_KEEP_ALIVE) {
Headers.java 31 * Manages received headers
35 public final class Headers {
97 // keep any headers that require direct access in a presized
150 // Catch-all for headers not explicitly handled
154 public Headers() {
204 Log.v(LOGTAG, "Headers.headers(): error parsing"
440 * Reports all non-null headers to the callback
452 HttpLog.v("Headers.getHeaders() extra: " + i + " " +
  /frameworks/base/core/java/android/webkit/
WebResourceResponse.java 19 import android.net.http.Headers;
CacheManager.java 20 import android.net.http.Headers;
38 // received over the network. The component handles parsing of HTTP headers and
39 // utilizes the relevant cache headers to determine if the content should be
41 // this component and if they can not be resolved by the cache, the HTTP headers
284 * If a non-null value is provided for the HTTP headers map, and the cache
285 * entry needs validation, appropriate headers will be added to the map.
290 * @param headers a map from HTTP header name to value, to be populated
297 Map<String, String> headers) {
  /frameworks/rs/java/tests/ImageProcessing2/
Android.mk 31 LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE := $(TOPDIR)external/clang/lib/Headers \
  /frameworks/rs/java/tests/RSTest_CompatLib/
Android.mk 34 $(TOPDIR)external/clang/lib/Headers \
  /frameworks/compile/libbcc/lib/Renderscript/runtime/
build_clcore.sh 10 clang_header_path=../../../../../external/clang/lib/Headers
build_bc_lib.mk 54 external/clang/lib/Headers
  /external/clang/
Android.mk 16 lib/Headers \
Makefile 105 grep -v /lib/Headers | grep -v /test/`
  /external/webkit/Tools/Scripts/
check-for-webkit-framework-include-consistency 50 all_headers = `find WebKit.framework/#{current_version_path}{,Private}Headers -type f -name '*.h'`.split
53 if /\/Headers\/(.*)/.match(header)
71 # Ignore includes that aren't related to other WebKit headers.
104 $HEADERS_BY_TYPE.each do |header_type, headers|
106 headers.each do |header|
  /external/llvm/lib/Transforms/Utils/
LoopUnroll.cpp 255 std::vector<BasicBlock*> Headers;
257 Headers.push_back(Header);
313 // Keep track of new headers and latches as we create them, so that
316 Headers.push_back(New);
358 BasicBlock *Dest = Headers[j];
388 if (*SI == Headers[i])
  /external/clang/lib/Frontend/
InitHeaderSearch.cpp 43 HeaderSearch &Headers;
51 : Headers(HS), Verbose(verbose), IncludeSysroot(sysroot),
139 FileManager &FM = Headers.getFileMgr();
164 if (const HeaderMap *HM = Headers.CreateHeaderMap(FE)) {
244 // Ignore the sys root, we *always* look for clang headers relative to
275 AddPath("/boot/develop/headers/os", System, false);
276 AddPath("/boot/develop/headers/os/app", System, false);
277 AddPath("/boot/develop/headers/os/arch", System, false);
278 AddPath("/boot/develop/headers/os/device", System, false);
279 AddPath("/boot/develop/headers/os/drivers", System, false)
    [all...]
  /external/clang/include/clang/Lex/
ModuleMap.h 11 // module as it relates to headers.
46 /// \brief The directory used for Clang-supplied, builtin include headers,
87 HeadersMap Headers;
89 /// \brief Mapping from directories with umbrella headers to the module
92 /// This mapping is used to map headers that haven't explicitly been named
141 /// \param FileMgr The file manager used to find module files and headers.
143 /// they will refer to the same headers.
  /external/clang/lib/Lex/
ModuleMap.cpp 11 // of a module as it relates to headers.
146 HeadersMap::iterator Known = Headers.find(File);
147 if (Known != Headers.end()) {
221 Headers[File] = KnownHeader(Result, /*Excluded=*/false);
246 HeadersMap::const_iterator Known = Headers.find(Header);
247 if (Known != Headers.end())
461 llvm::sys::path::append(UmbrellaName, "Headers");
481 Headers[UmbrellaHeader] = KnownHeader(Result, /*Excluded=*/false);
529 // FIXME: Do we want to warn about subframeworks without umbrella headers?
547 Headers[UmbrellaHeader] = KnownHeader(Mod, /*Excluded=*/false)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
TestVersionTracker.java 40 import org.eclipse.osgi.framework.util.Headers;
165 Headers headers = null; local
171 headers = Headers.parseManifest(new FileInputStream(manifest));
172 if (headers.get(Constants.REQUIRE_BUNDLE)==null)
174 value = headers.get(Constants.REQUIRE_BUNDLE).toString();
  /external/clang/include/clang/Basic/
Module.h 72 /// \brief The top-level headers associated with this module.
79 /// \brief The headers that are part of this module.
80 SmallVector<const FileEntry *, 2> Headers;
82 /// \brief The headers that are explicitly excluded from this module.
106 /// headers in it are system headers).
110 /// the headers.
310 /// \brief The top-level headers associated with this module.
  /external/clang/lib/Basic/
Module.cpp 283 for (unsigned I = 0, N = Headers.size(); I != N; ++I) {
286 OS.write_escaped(Headers[I]->getName());

Completed in 755 milliseconds

1 2