HomeSort by relevance Sort by last modified time
    Searched refs:protocol (Results 51 - 75 of 2282) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/apache-harmony/luni/src/test/impl/common/org/apache/harmony/luni/tests/java/net/
URLClassLoaderImplTest.java 28 import sun.net.www.protocol.jar.Handler;
42 public URLStreamHandler createURLStreamHandler(String protocol) {
43 if ("jar".equals(protocol)) {
47 fail("Should be JarHandler. But " + protocol);
  /external/apache-http/src/org/apache/http/
ConnectionReuseStrategy.java 34 import org.apache.http.protocol.HttpContext;
57 * close the connection to correctly implement the HTTP protocol.
HttpRequestInterceptor.java 36 import org.apache.http.protocol.HttpContext;
69 * @throws HttpException in case of a protocol or other problem
HttpResponseInterceptor.java 36 import org.apache.http.protocol.HttpContext;
68 * @throws HttpException in case of a protocol or other problem
  /external/apache-http/src/org/apache/http/client/
HttpRequestRetryHandler.java 36 import org.apache.http.protocol.HttpContext;
UserTokenHandler.java 34 import org.apache.http.protocol.HttpContext;
  /external/apache-http/src/org/apache/http/protocol/
ExecutionContext.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/ExecutionContext.java $
32 package org.apache.http.protocol;
35 * {@link HttpContext Context} attribute names for protocol execution.
HttpProcessor.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/HttpProcessor.java $
32 package org.apache.http.protocol;
  /external/clang/test/ARCMT/Inputs/
test.h 1 @protocol NSObject
  /external/clang/test/ARCMT/Inputs/with space/
test.h 1 @protocol NSObject
  /external/clang/test/Modules/Inputs/
category_left_sub.h 5 @protocol P3
redecl-merge-left.h 13 @protocol P1;
14 @protocol P2
46 @protocol P3, P4;
48 @protocol P3;
  /external/v8/src/inspector/
v8-inspector-session-impl.cc 9 #include "src/inspector/protocol/Protocol.h"
27 protocol::Runtime::Metainfo::commandPrefix) ||
29 protocol::Debugger::Metainfo::commandPrefix) ||
31 protocol::Profiler::Metainfo::commandPrefix) ||
33 method, protocol::HeapProfiler::Metainfo::commandPrefix) ||
35 protocol::Console::Metainfo::commandPrefix) ||
37 protocol::Schema::Metainfo::commandPrefix);
69 std::unique_ptr<protocol::Value> state =
70 protocol::StringUtil::parseJSON(toString16(savedState))
    [all...]
remote-object-id.cc 7 #include "src/inspector/protocol/Protocol.h"
14 std::unique_ptr<protocol::DictionaryValue>
16 std::unique_ptr<protocol::Value> parsedValue =
17 protocol::StringUtil::parseJSON(objectId);
18 if (!parsedValue || parsedValue->type() != protocol::Value::TypeObject)
21 std::unique_ptr<protocol::DictionaryValue> parsedObjectId(
22 protocol::DictionaryValue::cast(parsedValue.release()));
34 std::unique_ptr<protocol::DictionaryValue> parsedObjectId =
50 std::unique_ptr<protocol::DictionaryValue> parsedObjectId
    [all...]
  /external/wayland/tests/
headers-test.c 30 #error including wayland-client-core.h imported protocol symbols!
33 #error including wayland-server-core.h imported protocol symbols!
47 #error including wayland-client.h did not import protocol symbols!
50 #error including wayland-server.h did not import protocol symbols!
  /packages/apps/Dialer/java/com/android/incallui/incall/protocol/
InCallScreenDelegate.java 17 package com.android.incallui.incall.protocol;
  /packages/apps/Dialer/java/com/android/incallui/rtt/protocol/
RttCallScreen.java 17 package com.android.incallui.rtt.protocol;
  /packages/apps/Dialer/java/com/android/incallui/videosurface/protocol/
VideoSurfaceDelegate.java 17 package com.android.incallui.videosurface.protocol;
  /external/python/cpython2/Doc/includes/sqlite3/
adapter_point_1.py 7 def __conform__(self, protocol):
8 if protocol is sqlite3.PrepareProtocol:
  /external/python/cpython3/Doc/includes/sqlite3/
adapter_point_1.py 7 def __conform__(self, protocol):
8 if protocol is sqlite3.PrepareProtocol:
  /external/webrtc/talk/app/webrtc/objc/public/
RTCVideoRenderer.h 35 @protocol RTCVideoRenderer<NSObject>
  /external/curl/docs/cmdline-opts/
proto-default.d 2 Help: Use PROTOCOL for any URL missing a scheme
3 Arg: <protocol>
12 An unknown or unsupported protocol causes error
15 This option does not change the default proxy protocol (http).
  /external/nist-sip/java/gov/nist/javax/sip/header/
Reason.java 29 * reason-value = protocol *(SEMI reason-params)
30 * protocol = "SIP" / "Q.850" / token
31 * reason-params = protocol-cause / reason-text
33 * protocol-cause = "cause" EQUAL cause
65 protected String protocol; field in class:Reason
83 /** Set the protocol
85 *@param protocol - protocol to set.
88 public void setProtocol(String protocol) throws ParseException {
89 this.protocol = protocol
    [all...]
  /external/syslinux/gnu-efi/gnu-efi-3.0/inc/
Makefile 17 mkdir -p $(INSTALLROOT)$(PREFIX)/include/efi/protocol
20 $(INSTALL) -m 644 $(SRCDIR)/protocol/*.h $(INSTALLROOT)$(PREFIX)/include/efi/protocol
23 mkdir -p $(INSTALLROOT)$(PREFIX)/include/efi/protocol/ia64
24 $(INSTALL) -m 644 $(SRCDIR)/protocol/ia64/*.h $(INSTALLROOT)$(PREFIX)/include/efi/protocol/ia64
  /system/core/adb/
shell_service_test.cpp 48 SubprocessProtocol protocol);
63 const char* command, SubprocessType type, SubprocessProtocol protocol) {
64 subprocess_fd_ = StartSubprocess(command, nullptr, type, protocol);
91 // Reads shell protocol data from |fd| until it closes or errors. Fills
93 // read from the protocol or -1 if an exit code packet was not received.
99 ShellProtocol* protocol = new ShellProtocol(fd); local
100 while (protocol->Read()) {
101 switch (protocol->id()) {
103 stdout->append(protocol->data(), protocol->data_length())
210 ShellProtocol* protocol = new ShellProtocol(subprocess_fd_); local
236 ShellProtocol* protocol = new ShellProtocol(subprocess_fd_); local
    [all...]

Completed in 974 milliseconds

1 23 4 5 6 7 8 91011>>