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

12345

/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/av/media/libstagefright/
H A DOMXClient.cpp40 status_t OMXClient::connect() { function in class:android::OMXClient
41 return connect(nullptr);
44 status_t OMXClient::connect(bool* trebleFlag) { function in class:android::OMXClient
/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.java81 inst.connect();
134 private void connect() { method in class:BluetoothMasObexClientSession
141 headerset = mSession.connect(headerset);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DDetailsParallaxDrawable.java126 connect(context, parallax, coverDrawableParallaxTarget);
169 void connect(Context context, DetailsParallax parallax, method in class:DetailsParallaxDrawable
/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.java36 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/base/packages/SystemUI/tests/src/com/android/systemui/utils/leaks/
H A DFakeBluetoothController.java73 public void connect(CachedBluetoothDevice device) { method in class:FakeBluetoothController
/frameworks/base/tests/utils/testutils/java/com/android/internal/util/test/
H A DBidirectionalAsyncChannel.java45 public void connect(final Looper looper, final Messenger messenger, method in class:BidirectionalAsyncChannel
47 assertEquals("AsyncChannel must be disconnected to connect",
60 Log.d(TAG, "Failed to connect channel " + this);
80 mChannel.connect(null, rawMessageHandler, messenger);
/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
66 bool success = mHTTPConnection->connect(mLastURI.c_str(), &extHeaders);
152 return connect(mLastURI.c_str(), &mLastHeaders, offset);
/frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/core/
H A DUiAutomationShellWrapper.java24 public void connect() { method in class:UiAutomationShellWrapper
31 mUiAutomation.connect();
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothPbapClient.java166 * @param device a remote device we want connect to
170 public boolean connect(BluetoothDevice device) { method in class:BluetoothPbapClient
172 log("connect(" + device + ") for PBAP Client.");
176 return mService.connect(device);
H A DBluetoothSap.java254 public boolean connect(BluetoothDevice device) { method in class:BluetoothSap
255 if (DBG) log("connect(" + device + ")" + "not supported for SAPS");
/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
223 * {@link #connect} on it, and calling {@link #scanFile} with the given
243 connection.connect();
/frameworks/support/compat/ics/android/support/v4/net/
H A DDatagramSocketWrapper.java66 protected void connect(String host, int port) throws IOException { method in class:DatagramSocketWrapper.DatagramSocketImplWrapper
71 protected void connect(InetAddress address, int port) throws IOException { method in class:DatagramSocketWrapper.DatagramSocketImplWrapper
96 protected void connect(SocketAddress remoteAddr, int timeout) throws IOException { method in class:DatagramSocketWrapper.DatagramSocketImplWrapper

Completed in 810 milliseconds

12345