Searched defs:connect (Results 26 - 50 of 74) sorted by relevance

123

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothA2dp.java226 public boolean connect(BluetoothDevice device) { method in class:BluetoothA2dp
227 if (DBG) log("connect(" + device + ")");
231 return mService.connect(device);
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 DBluetoothMap.java211 public boolean connect(BluetoothDevice device) { method in class:BluetoothMap
212 if (DBG) log("connect(" + device + ")" + "not supported for MAPS");
H A DBluetoothPan.java95 * Return codes for the connect and disconnect Bluez / Dbus calls.
226 public boolean connect(BluetoothDevice device) { method in class:BluetoothPan
227 if (DBG) log("connect(" + device + ")");
231 return mPanService.connect(device);
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 DBluetoothHeadset.java341 public boolean connect(BluetoothDevice device) { method in class:BluetoothHeadset
342 if (DBG) log("connect(" + device + ")");
346 return mService.connect(device);
H A DBluetoothInputDevice.java101 * Return codes for the connect and disconnect Bluez / Dbus calls.
314 public boolean connect(BluetoothDevice device) { method in class:BluetoothInputDevice
315 if (DBG) log("connect(" + device + ")");
318 return mService.connect(device);
H A DBluetoothSocket.java52 * Then call {@link #connect()} to attempt a connection to the remote device.
139 * @param device remote device that this socket can connect to
207 * @param address remote device that this socket can connect to
280 * Attempt to connect to a remote device.
296 public void connect() throws IOException { method in class:BluetoothSocket
307 if (DBG) Log.d(TAG, "connect(), SocketState: " + mSocketState + ", mPfd: " + mPfd);
309 if (mPfd == null) throw new IOException("bt socket connect failed");
317 throw new IOException("bt socket connect failed");
/frameworks/base/core/java/android/net/
H A DLocalSocket.java123 public void connect(LocalSocketAddress endpoint) throws IOException { method in class:LocalSocket
130 impl.connect(endpoint, 0);
274 public void connect(LocalSocketAddress endpoint, int timeout) method in class:LocalSocket
H A DLocalSocketImpl.java283 protected void connect(LocalSocketAddress address, int timeout) method in class:LocalSocketImpl
/frameworks/base/media/java/android/media/
H A DMediaHTTPConnection.java68 public IBinder connect(String uri, String headers) { method in class:MediaHTTPConnection
70 Log.d(TAG, "connect: uri=" + uri + ", headers=" + headers);
/frameworks/base/media/java/android/service/media/
H A DMediaBrowserService.java155 public void connect(final String pkg, final Bundle rootHints, method in class:MediaBrowserService.ServiceBinder
/frameworks/base/media/lib/remotedisplay/java/com/android/media/remotedisplay/
H A DRemoteDisplayProvider.java135 * This mode indicates that the user is actively trying to connect to a route
182 * Called when the system would like to connect to a display.
340 public void connect(String id) { method in class:RemoteDisplayProvider.ProviderStub
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilterGraph.java82 public void connect(Filter source, method in class:FilterGraph
87 throw new IllegalArgumentException("Passing null Filter in connect()!");
89 throw new RuntimeException("Attempting to connect filter not in graph!");
105 public void connect(String sourceName, method in class:FilterGraph
113 "Attempting to connect unknown source filter '" + sourceName + "'!");
116 "Attempting to connect unknown target filter '" + targetName + "'!");
118 connect(source, outputName, target, inputName);
320 throw new RuntimeException("Attempting to connect " + outputPort + " to multiple "
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DAccessPointControllerImpl.java52 // This string extra specifies a network to open the connect dialog on, so the user can enter
119 public boolean connect(AccessPoint ap) { method in class:AccessPointControllerImpl
121 if (DEBUG) Log.d(TAG, "connect networkId=" + ap.networkId);
134 mWifiManager.connect(config, mConnectListener);
137 mWifiManager.connect(ap.networkId, mConnectListener);
223 if (DEBUG) Log.d(TAG, "connect success");
228 if (DEBUG) Log.d(TAG, "connect failure reason=" + reason);
H A DNetworkController.java53 boolean connect(AccessPoint ap); method in interface:NetworkController.AccessPointController
/frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/
H A DSourceActivity.java119 connect(accessory);
130 private void connect(UsbAccessory accessory) { method in class:SourceActivity
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFilterGraph.java148 public void connect(String sourceFilterName, String sourcePort, method in class:FilterGraph.Builder
157 connect(sourceFilter, sourcePort, targetFilter, targetPort);
169 public void connect(Filter sourceFilter, String sourcePort, method in class:FilterGraph.Builder
171 sourceFilter.connect(sourcePort, targetFilter, targetPort);
208 // Get filter to connect to
221 // Create new VariableSource and connect it to the target filter and port
225 ((Filter)valueSource).connect("value", filter, inputName);
227 throw new RuntimeException("Could not connect VariableSource to input '" + inputName
242 // Get filter to connect to
258 throw new RuntimeException("Could not connect VariableSourc
[all...]
/frameworks/compile/mclinker/include/mcld/
H A DInputTree.h243 * iterator forward in certain direction. @ref Mover::connect
247 virtual void connect(TreeIteratorBase& pFrom, NodeBase* pTo) const = 0;
256 void connect(TreeIteratorBase& pFrom, NodeBase* pTo) const { function in struct:mcld::InputTree::Succeeder
269 void connect(TreeIteratorBase& pFrom, NodeBase* pTo) const { function in struct:mcld::InputTree::Includer
/frameworks/native/libs/gui/
H A DBufferQueueConsumer.cpp338 status_t BufferQueueConsumer::connect( function in class:android::BufferQueueConsumer
343 BQ_LOGE("connect(C): consumerListener may not be NULL");
347 BQ_LOGV("connect(C): controlledByApp=%s",
353 BQ_LOGE("connect(C): BufferQueue has been abandoned");
/frameworks/native/services/surfaceflinger/
H A DMonitoredProducer.cpp95 status_t MonitoredProducer::connect(const sp<IProducerListener>& listener, function in class:android::MonitoredProducer
97 return mProducer->connect(listener, api, producerControlledByApp, output);
/frameworks/av/camera/
H A DICamera.cpp249 virtual status_t connect(const sp<ICameraClient>& cameraClient) function in class:android::BpCamera
405 reply->writeInt32(connect(cameraClient));
/frameworks/av/media/libstagefright/
H A DOMXClient.cpp398 status_t OMXClient::connect() { function in class:android::OMXClient
/frameworks/base/core/java/android/app/
H A DUiAutomation.java185 public void connect() { method in class:UiAutomation
196 mUiAutomationConnection.connect(mClient);
/frameworks/base/core/java/com/android/internal/util/
H A DAsyncChannel.java45 * use the connect methods. The typical sequence of operations is:</p>
48 * <ol>For an asynchronous half connection client calls AsyncChannel#connect.</ol>
63 * use the connect methods. The typical sequence of operation is:</p>
66 * <ol>For an asynchronous full connection it calls AsyncChannel#connect</li>
82 * TODO: Consider simplifying where we have connect and fullyConnect with only one response
174 /** Error attempting to bind on a connect */
224 if (DBG) log("connect srcHandler to dst Package & class E");
244 if (DBG) log("connect srcHandler to dst Package & class X result=" + result);
269 * connect two local Handlers synchronously.
283 * Fully connect tw
315 public void connect(Context srcContext, Handler srcHandler, String dstPackageName, method in class:AsyncChannel
358 public void connect(Context srcContext, Handler srcHandler, Class<?> klass) { method in class:AsyncChannel
373 public void connect(Context srcContext, Handler srcHandler, Messenger dstMessenger) { method in class:AsyncChannel
417 public void connect(Context srcContext, Handler srcHandler, Handler dstHandler) { method in class:AsyncChannel
431 public void connect(AsyncService srcAsyncService, Messenger dstMessenger) { method in class:AsyncChannel
[all...]

Completed in 5943 milliseconds

123