Searched refs:connect (Results 1 - 25 of 79) sorted by relevance

1234

/frameworks/base/core/java/android/nfc/
H A DIP2pTarget.aidl26 int connect(int nativeHandle);
H A DILlcpSocket.aidl25 int connect(int nativeHandle, int sap);
H A DINfcTag.aidl28 int connect(int nativeHandle, int technology);
/frameworks/base/core/java/android/bluetooth/
H A DIBluetoothPbap.aidl29 boolean connect(in BluetoothDevice device);
/frameworks/base/vpn/java/android/net/vpn/
H A DIVpnService.aidl32 boolean connect(in VpnProfile profile, String username, String password);
/frameworks/base/core/java/android/nfc/tech/
H A DTagTechnology.java63 * block or cause RF activity, and do not require {@link #connect} to have been called.
69 * <li>{@link #connect} must be called before using any other I/O operation.
72 * (including {@link #connect} with {@link IOException}.
74 * {@link #connect} will return {@link IOException}.
168 * @throws IOException if there is an I/O failure, or connect is canceled
170 public void connect() throws IOException; method in interface:TagTechnology
173 * Re-connect to the {@link Tag} associated with this connection. Reconnecting to a tag can be
182 * @see #connect()
185 * @throws IOException if there is an I/O failure, or connect is canceled
197 * @see #connect()
[all...]
H A DBasicTagTechnology.java52 throw new IllegalStateException("Call connect() first!");
71 public void connect() throws IOException { method in class:BasicTagTechnology
73 int errorCode = mTag.getTagService().connect(mTag.getServiceHandle(),
/frameworks/base/include/media/stagefright/
H A DOMXClient.h29 status_t connect();
/frameworks/base/obex/javax/obex/
H A DObexTransport.java64 void connect() throws IOException; method in interface:ObexTransport
/frameworks/base/packages/VpnServices/src/com/android/server/vpn/
H A DL2tpService.java28 protected void connect(String serverIp, String username, String password) method in class:L2tpService
H A DPptpService.java28 protected void connect(String serverIp, String username, String password) method in class:PptpService
H A DL2tpIpsecPskService.java31 protected void connect(String serverIp, String username, String password) method in class:L2tpIpsecPskService
H A DL2tpIpsecService.java31 protected void connect(String serverIp, String username, String password) method in class:L2tpIpsecService
H A DVpnServiceBinder.java63 public boolean connect(VpnProfile p, String username, String password) {
64 return VpnServiceBinder.this.connect(p, username, password);
110 private synchronized boolean connect(final VpnProfile p, method in class:VpnServiceBinder
/frameworks/base/media/libstagefright/include/
H A DNuHTTPDataSource.h32 status_t connect(
74 status_t connect(
77 status_t connect(
H A DHTTPStream.h36 status_t connect(const char *server, int port = 80);
/frameworks/base/media/libstagefright/
H A DOMXClient.cpp31 status_t OMXClient::connect() { function in class:android::OMXClient
H A DNuHTTPDataSource.cpp94 status_t NuHTTPDataSource::connect( function in class:android::NuHTTPDataSource
101 return connect(uri, headers, offset);
104 status_t NuHTTPDataSource::connect( function in class:android::NuHTTPDataSource
114 return connect(host, port, path, headers, offset);
122 status_t NuHTTPDataSource::connect( function in class:android::NuHTTPDataSource
126 LOGI("connect to %s:%u%s @%ld", host, port, path, offset);
149 err = mHTTP.connect(host, port);
195 return connect(value.c_str(), headers, offset);
350 status_t err = connect(host, mPort, path, headers, offset);
/frameworks/base/core/java/com/android/internal/nfc/
H A DP2pTarget.java79 public void connect() throws NfcException { method in class:P2pTarget
86 // Perform connect
88 int result = mService.connect(mHandle);
91 throw new NfcException("Failed to connect");
100 Log.e(TAG, "RemoteException in connect(): ", e);
H A DLlcpSocket.java99 public void connect(int sap) throws IOException, LlcpException { method in class:LlcpSocket
101 int result = mService.connect(mHandle, sap);
126 public void connect(String sn) throws IOException, LlcpException { method in class:LlcpSocket
/frameworks/base/core/java/android/net/
H A DLocalSocket.java91 public void connect(LocalSocketAddress endpoint) throws IOException { method in class:LocalSocket
98 impl.connect(endpoint, 0);
241 public void connect(LocalSocketAddress endpoint, int timeout) method in class:LocalSocket
/frameworks/base/include/camera/
H A DICameraService.h44 virtual sp<ICamera> connect(const sp<ICameraClient>& cameraClient,
/frameworks/base/core/tests/coretests/src/android/net/http/
H A DHttpsThroughHttpProxyTest.java117 RecordedRequest connect = proxy.takeRequest();
119 "CONNECT android.com:443 HTTP/1.1", connect.getRequestLine());
120 assertContains(connect.getHeaders(), "Host: android.com");
/frameworks/base/tests/CoreTests/android/core/
H A DURLTest.java41 cn.connect();
142 connection.connect();
202 cn.connect();
/frameworks/base/libs/camera/
H A DICameraService.cpp58 // connect to camera service
59 virtual sp<ICamera> connect(const sp<ICameraClient>& cameraClient, int cameraId) function in class:android::BpCameraService
96 sp<ICamera> camera = connect(cameraClient, data.readInt32());

Completed in 319 milliseconds

1234