Searched defs:connect (Results 1 - 25 of 87) sorted by relevance

1234

/frameworks/base/media/java/android/media/midi/
H A DMidiSender.java28 * @param receiver the receiver to connect
30 public void connect(MidiReceiver receiver) { method in class:MidiSender
32 throw new NullPointerException("receiver null in MidiSender.connect");
50 * Called to connect a {@link MidiReceiver} to the sender
52 * @param receiver the receiver to connect
/frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
H A DSocketConnect.java41 public static void connect(Socket first, Socket second) { method in class:SocketConnect
/frameworks/base/obex/javax/obex/
H A DObexTransport.java64 void connect() throws IOException; method in interface:ObexTransport
H A DClientSession.java100 public HeaderSet connect(final HeaderSet header) throws IOException { method in class:ClientSession
143 throw new IOException("Packet size exceeds max packet size for connect");
/frameworks/base/core/java/android/nfc/tech/
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(),
H A DTagTechnology.java64 * block or cause RF activity, and do not require {@link #connect} to have been called.
70 * <li>{@link #connect} must be called before using any other I/O operation.
73 * (including {@link #connect} with {@link IOException}.
75 * {@link #connect} will return {@link IOException}.
178 * @throws IOException if there is an I/O failure, or connect is canceled
180 public void connect() throws IOException; method in interface:TagTechnology
183 * Re-connect to the {@link Tag} associated with this connection. Reconnecting to a tag can be
192 * @see #connect()
195 * @throws IOException if there is an I/O failure, or connect is canceled
207 * @see #connect()
[all...]
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapRfcommTransport.java51 public void connect() throws IOException { method in class:BluetoothMapRfcommTransport
H A DBluetoothMasObexClientSession.java70 connect();
110 private void connect() { method in class:BluetoothMasObexClientSession.ClientThread
117 headerset = mSession.connect(headerset);
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
H A DBluetoothPbapObexTransport.java64 public void connect() throws IOException { method in class:BluetoothPbapObexTransport
H A DBluetoothPbapObexSession.java136 if (!connect()) {
193 private boolean connect() { method in class:BluetoothPbapObexSession.ObexClientThread
194 Log.d(TAG, "connect");
207 hs = mClientSession.connect(hs);
/frameworks/volley/src/test/java/com/android/volley/mock/
H A DMockHttpURLConnection.java74 public void connect() throws IOException { method in class:MockHttpURLConnection
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DLocalBluetoothProfile.java38 boolean connect(BluetoothDevice device); method in interface:LocalBluetoothProfile
H A DOppProfile.java43 public boolean connect(BluetoothDevice device) { method in class:OppProfile
H A DPanProfile.java85 public boolean connect(BluetoothDevice device) { method in class:PanProfile
93 return mService.connect(device);
H A DPbapServerProfile.java84 public boolean connect(BluetoothDevice device) { method in class:PbapServerProfile
85 /*Can't connect from server */
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DBluetoothController.java34 void connect(CachedBluetoothDevice device); method in interface:BluetoothController
H A DAccessPointControllerImpl.java43 // This string extra specifies a network to open the connect dialog on, so the user can enter
110 public boolean connect(AccessPoint ap) { method in class:AccessPointControllerImpl
112 if (DEBUG) Log.d(TAG, "connect networkId=" + ap.getConfig().networkId);
114 mWifiTracker.getManager().connect(ap.getConfig().networkId, mConnectListener);
125 mWifiTracker.getManager().connect(ap.getConfig(), mConnectListener);
164 if (DEBUG) Log.d(TAG, "connect success");
169 if (DEBUG) Log.d(TAG, "connect failure reason=" + reason);
/frameworks/av/camera/
H A DCameraBase.cpp93 sp<TCam> CameraBase<TCam, TCamTraits>::connect(int cameraId, function in class:android::CameraBase
97 ALOGV("%s: connect", __FUNCTION__);
/frameworks/av/media/libmedia/
H A DIMediaHTTPConnection.cpp45 virtual bool connect( function in struct:android::BpMediaHTTPConnection
/frameworks/av/media/libstagefright/http/
H A DMediaHTTP.cpp44 status_t MediaHTTP::connect( function in class:android::MediaHTTP
61 bool success = mHTTPConnection->connect(uri, &extHeaders);
142 return connect(mLastURI.c_str(), &mLastHeaders, offset);
/frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/core/
H A DUiAutomationShellWrapper.java25 public void connect() { method in class:UiAutomationShellWrapper
32 mUiAutomation.connect();
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothA2dpSink.java239 public boolean connect(BluetoothDevice device) { method in class:BluetoothA2dpSink
240 if (DBG) log("connect(" + device + ")");
244 return mService.connect(device);
H A DBluetoothSap.java253 public boolean connect(BluetoothDevice device) { method in class:BluetoothSap
254 if (DBG) log("connect(" + device + ")" + "not supported for SAPS");
/frameworks/base/core/java/com/android/internal/os/
H A DInstallerConnection.java31 * Represents a connection to {@code installd}. Allows multiple connect and
50 if (!connect()) {
62 if (!connect() || !writeCommand(cmd)) {
123 private boolean connect() { method in class:InstallerConnection
134 mSocket.connect(address);
/frameworks/base/media/java/android/media/
H A DMediaScannerConnection.java47 private boolean mConnected; // true if connect() has been called since last disconnect()
112 public void connect() { method in class:MediaScannerConnection
218 * {@link #connect} on it, and calling {@link #scanFile} with the given
238 connection.connect();

Completed in 525 milliseconds

1234