Searched refs:connect (Results 151 - 175 of 206) sorted by relevance

123456789

/frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
H A DUiAutomatorTestRunner.java118 automationWrapper.connect();
/frameworks/base/media/mca/filterfw/java/android/filterfw/io/
H A DTextGraphReader.java142 reader.mCurrentGraph.connect(mSourceFilter, mSourcePort, mTargetFilter, mTargetName);
219 } else if (curCommand.equals("@connect")) {
/frameworks/base/obex/javax/obex/
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/packages/SystemUI/src/com/android/systemui/keyboard/
H A DKeyboardUI.java237 // then we want to go ahead and automatically connect to the
240 // the keyboard, meaning we shouldn't try to automtically connect
243 device.connect(false);
359 // We don't need to manually connect to the device here because it will automatically
360 // try to connect after it has been paired.
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DWifiTile.java305 if (mWifiController.connect(ap)) {
/frameworks/base/services/core/java/com/android/server/
H A DNativeDaemonConnector.java160 socket.connect(address);
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessList.java660 sLmkdSocket.connect(
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DNetworkDiagnostics.java359 Os.connect(mFileDescriptor, mTarget, dstPort);
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbDebuggingManager.java117 mSocket.connect(address);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGraphReader.java218 stack.getBuilder().connect(mSourceFilter, mSourcePort, mTargetFilter, mTargetPort);
255 } else if (localName.equals("connect")) {
294 // check for shorthand: <connect source="filter:port" target="filter:port"/>
/frameworks/base/wifi/java/android/net/wifi/passpoint/
H A DWifiPasspointManager.java561 public void connect(WifiPasspointPolicy policy) { method in class:WifiPasspointManager
/frameworks/native/libs/gui/
H A DBufferQueueConsumer.cpp384 status_t BufferQueueConsumer::connect( function in class:android::BufferQueueConsumer
389 BQ_LOGE("connect(C): consumerListener may not be NULL");
393 BQ_LOGV("connect(C): controlledByApp=%s",
399 BQ_LOGE("connect(C): BufferQueue has been abandoned");
/frameworks/wilhelm/src/android/
H A Dandroid_AudioSfDecoder.cpp301 CHECK_EQ(client.connect(), (status_t)OK);
/frameworks/av/cmds/stagefright/
H A Dstagefright.cpp966 status_t err = client.connect();
1101 CHECK_EQ(client.connect(), (status_t)OK);
/frameworks/av/media/libstagefright/rtsp/
H A DARTSPConnection.cpp70 void ARTSPConnection::connect(const char *url, const sp<AMessage> &reply) { function in class:android::ARTSPConnection
282 int err = ::connect(
355 // While we were attempting to connect, the attempt was
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGatt.java34 * <p>To connect to a remote peripheral device, create a {@link BluetoothGattCallback}
707 * <p>The autoConnect parameter determines whether to actively connect to
716 * @param device Remote device to connect to
717 * @param autoConnect Whether to directly connect to the remote device (false)
718 * or to automatically connect as soon as the remote
722 /*package*/ boolean connect(Boolean autoConnect, BluetoothGattCallback callback) { method in class:BluetoothGatt
723 if (DBG) Log.d(TAG, "connect() - device: " + mDevice.getAddress() + ", auto: " + autoConnect);
763 * <p>This method is used to re-connect to a remote device after the
769 public boolean connect() { method in class:BluetoothGatt
H A DBluetoothDevice.java1342 * <p>Use {@link BluetoothSocket#connect} to initiate the outgoing
1347 * @param channel RFCOMM channel to connect to
1376 * <p>Use {@link BluetoothSocket#connect} to initiate the outgoing
1381 * @param channel L2cap PSM/channel to connect to
1398 * <p>Use {@link BluetoothSocket#connect} to initiate the outgoing
1400 * determine which channel to connect to.
1446 * <p>Use {@link BluetoothSocket#connect} to initiate the outgoing
1448 * determine which channel to connect to.
1475 * Call #connect on the returned #BluetoothSocket to begin the connection.
1498 * Call #connect o
[all...]
H A DBluetoothGattServer.java423 * <p>The autoConnect paramter determines whether to actively connect to
432 * @param autoConnect Whether to directly connect to the remote device (false)
433 * or to automatically connect as soon as the remote
437 public boolean connect(BluetoothDevice device, boolean autoConnect) { method in class:BluetoothGattServer
438 if (DBG) Log.d(TAG, "connect() - device: " + device.getAddress() + ", auto: " + autoConnect);
H A DBluetoothSocket.java55 * Then call {@link #connect()} to attempt a connection to the remote device.
157 * @param device remote device that this socket can connect to
174 * @param device remote device that this socket can connect to
258 * @param address remote device that this socket can connect to
337 * Attempt to connect to a remote device.
353 public void connect() throws IOException { method in class:BluetoothSocket
365 if (DBG) Log.d(TAG, "connect(), SocketState: " + mSocketState + ", mPfd: " + mPfd);
367 if (mPfd == null) throw new IOException("bt socket connect failed");
375 throw new IOException("bt socket connect failed");
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiServiceImpl.java195 ac.connect(mContext, this, msg.replyTo);
282 mWsmChannel.connect(mContext, this, mWifiStateMachine.getHandler());
301 mWsmChannel.connect(mContext, this, mWifiStateMachine.getHandler());
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DRTSPSource.cpp106 mHandler->connect();
/frameworks/av/media/libstagefright/
H A DMediaSync.cpp113 // Try to connect to new output surface. If failed, current output surface will not
119 output->connect(listener,
124 ALOGE("setSurface: failed to connect (%d)", status);
H A DOMXClient.cpp420 status_t OMXClient::connect() { function in class:android::OMXClient
H A DStagefrightMetadataRetriever.cpp58 CHECK_EQ(mClient.connect(), (status_t)OK);
/frameworks/base/core/java/com/android/internal/os/
H A DZygoteInit.java640 final Process.ZygoteState zs = Process.ZygoteState.connect(otherZygoteName);

Completed in 734 milliseconds

123456789