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

1 2 3 4

  /libcore/ojluni/src/main/java/java/net/
SocksConsts.java 41 static final int CONNECT = 1;
  /external/curl/docs/cmdline-opts/
proxytunnel.d 2 Help: Operate through a HTTP proxy tunnel (using CONNECT)
7 HTTP-like operations. The tunnel approach is made with the HTTP proxy CONNECT
8 request and requires that the proxy allows direct connect to the remote port
connect-to.d 1 Long: connect-to
3 Help: Connect to host
8 For a request to the given HOST:PORT pair, connect to
9 CONNECT-TO-HOST:CONNECT-TO-PORT instead. This option is suitable to direct
14 may be the empty string, meaning "any host/port". "connect-to-host" and
15 "connect-to-port" may also be the empty string, meaning "use the request's
18 This option can be used many times to add many connect rules.
proxy-header.d 9 but is for proxy communication only like in CONNECT requests when you want a
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/
ConnectCommandHandlerTest.java 45 command1 = new Command(CommandNames.CONNECT, EMPTY);
  /prebuilts/go/darwin-x86/src/net/http/
method.go 17 MethodConnect = "CONNECT"
readrequest_test.go 211 // CONNECT request with domain name:
213 "CONNECT www.google.com:443 HTTP/1.1\r\n\r\n",
216 Method: "CONNECT",
235 // CONNECT request with IP address:
237 "CONNECT 127.0.0.1:6060 HTTP/1.1\r\n\r\n",
240 Method: "CONNECT",
259 // CONNECT request for RPC:
261 "CONNECT /_goRPC_ HTTP/1.1\r\n\r\n",
264 Method: "CONNECT",
448 {"bad_connect_host", reqBytes("CONNECT []%20%48%54%54%50%2f%31%2e%31%0a%4d%79%48%65%61%64%65%72%3a%20%31%32%33%0a%0a HTTP/1.0")}
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
method.go 17 MethodConnect = "CONNECT"
readrequest_test.go 211 // CONNECT request with domain name:
213 "CONNECT www.google.com:443 HTTP/1.1\r\n\r\n",
216 Method: "CONNECT",
235 // CONNECT request with IP address:
237 "CONNECT 127.0.0.1:6060 HTTP/1.1\r\n\r\n",
240 Method: "CONNECT",
259 // CONNECT request for RPC:
261 "CONNECT /_goRPC_ HTTP/1.1\r\n\r\n",
264 Method: "CONNECT",
448 {"bad_connect_host", reqBytes("CONNECT []%20%48%54%54%50%2f%31%2e%31%0a%4d%79%48%65%61%64%65%72%3a%20%31%32%33%0a%0a HTTP/1.0")}
    [all...]
  /external/libpcap/
atmuni31.h 45 #define CONNECT 0x07 /* connect */
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/
CommandNames.java 32 public static final String CONNECT = "CONNECT";
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/
ConnectCommandHandlerTest.java 59 command1 = new Command(CommandNames.CONNECT, EMPTY);
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMasObexClientSession.java 48 private static final int CONNECT = 0;
74 if (!inst.connected() && msg.what != CONNECT) {
80 case CONNECT:
81 inst.connect();
112 // Connect it to the target device via OBEX.
113 mHandler.obtainMessage(CONNECT).sendToTarget();
134 private void connect() { method in class:BluetoothMasObexClientSession
141 headerset = mSession.connect(headerset);
  /hardware/qcom/display/msm8960/libqservice/
IQService.h 42 CONNECT,
51 virtual void connect(const android::sp<qClient::IQClient>& client) = 0;
IQService.cpp 60 virtual void connect(const sp<IQClient>& client) { function in class:qService::BpQService
64 remote()->transact(CONNECT, data, &reply);
121 case CONNECT: {
124 ALOGE("display.qservice CONNECT access denied: \
131 connect(client);
  /packages/services/Car/service/src/com/android/car/
BluetoothAutoConnectStateMachine.java 29 * Idle is the starting state. Incoming 'CONNECT' message is honored and connection attempts are
31 * Processing state ignores any incoming 'CONNECT' requests from any of the vehicle signals,
44 public static final int CONNECT = 101;
79 * Idle State is the Initial State, when the system is accepting incoming 'CONNECT' requests.
81 * If the policy finds a device to connect on a profile, transitions to Processing.
82 * If there is nothing to connect to, wait for the next 'CONNECT' message to try next.
99 case CONNECT: {
101 Log.d(TAG, "Idle->Connect:");
125 * Instruct the policy to find and connect to a device on a connectable profile
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/
CommandNames.java 65 public static final String CONNECT = "CONNECT";
  /hardware/qcom/display/msm8226/libqservice/
IQService.h 44 CONNECT, // Connect to qservice
71 virtual void connect(const android::sp<qClient::IQClient>& client) = 0;
IQService.cpp 47 virtual void connect(const sp<IQClient>& client) { function in class:qService::BpQService
48 ALOGD_IF(QSERVICE_DEBUG, "%s: connect client", __FUNCTION__);
52 remote()->transact(CONNECT, data, &reply);
93 if (code == CONNECT) {
96 ALOGE("display.qservice CONNECT access denied: \
103 connect(client);
  /hardware/qcom/display/msm8909/libqservice/
IQService.h 44 CONNECT, // Connect to qservice
84 virtual void connect(const android::sp<qClient::IQClient>& client) = 0;
IQService.cpp 47 virtual void connect(const sp<IQClient>& client) { function in class:qService::BpQService
48 ALOGD_IF(QSERVICE_DEBUG, "%s: connect client", __FUNCTION__);
52 remote()->transact(CONNECT, data, &reply);
93 if (code == CONNECT) {
96 ALOGE("display.qservice CONNECT access denied: \
103 connect(client);
  /hardware/qcom/display/msm8994/libqservice/
IQService.h 44 CONNECT = 4, // Connect to qservice
80 virtual void connect(const android::sp<qClient::IQClient>& client) = 0;
IQService.cpp 47 virtual void connect(const sp<IQClient>& client) { function in class:qService::BpQService
48 ALOGD_IF(QSERVICE_DEBUG, "%s: connect client", __FUNCTION__);
52 remote()->transact(CONNECT, data, &reply);
93 if (code == CONNECT) {
96 ALOGE("display.qservice CONNECT access denied: \
103 connect(client);
  /packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/
MasClient.java 41 private static final int CONNECT = 0;
80 mHandler.obtainMessage(CONNECT).sendToTarget();
83 private void connect() { method in class:MasClient
91 mSocket.connect();
104 headerset = mSession.connect(headerset);
184 if (!inst.mConnected && msg.what != CONNECT) {
190 case CONNECT:
191 inst.connect();
  /frameworks/av/media/libmedia/
IMediaHTTPConnection.cpp 32 CONNECT = IBinder::FIRST_CALL_TRANSACTION,
45 virtual bool connect( function in struct:android::BpMediaHTTPConnection
68 remote()->transact(CONNECT, data, &reply);

Completed in 280 milliseconds

1 2 3 4