HomeSort by relevance Sort by last modified time
    Searched defs:connect (Results 501 - 525 of 1359) sorted by null

<<21222324252627282930>>

  /frameworks/base/core/java/android/bluetooth/
BluetoothHidDevice.java 727 * is not registered, #connect(BluetoothDevice) will fail. The connection state should be
733 public boolean connect(BluetoothDevice device) { method in class:BluetoothHidDevice
739 result = service.connect(device);
BluetoothHidHost.java 109 * Return codes for the connect and disconnect Bluez / Dbus calls.
332 public boolean connect(BluetoothDevice device) { method in class:BluetoothHidHost
333 if (DBG) log("connect(" + device + ")");
337 return service.connect(device);
  /frameworks/base/core/java/android/net/
LocalSocketImpl.java 285 protected void connect(LocalSocketAddress address, int timeout) method in class:LocalSocketImpl
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
ConnectivityManagerTestBase.java 324 * Connect to Wi-Fi with the given configuration. Note the SSID in the configuration
339 // Save network configuration and connect to network without scanning
340 mWifiManager.connect(config,
348 logv("connect failure " + reason);
469 * Connect to the provided Wi-Fi network
471 * @throws AssertionError if fails to associate and connect to wifi ap
474 // step 1: connect to the test access point
  /frameworks/base/media/java/android/media/
MediaHTTPConnection.java 73 public IBinder connect(String uri, String headers) { method in class:MediaHTTPConnection
75 Log.d(TAG, "connect: uri=" + uri + ", headers=" + headers);
  /frameworks/base/obex/javax/obex/
ClientSession.java 100 public HeaderSet connect(final HeaderSet header) throws IOException { method in class:ClientSession
120 * Write the OBEX CONNECT packet to the server.
122 * Byte 1&2: Connect Packet Length
143 throw new IOException("Packet size exceeds max packet size for connect");
453 * if this is called on a CONNECT, SETPATH or DISCONNECT
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
A2dpProfile.java 134 public boolean connect(BluetoothDevice device) { method in class:A2dpProfile
150 return mService.connect(device);
  /frameworks/base/services/core/java/com/android/server/utils/
ManagedApplicationService.java 294 public void connect() { method in class:ManagedApplicationService
297 // We're already connected or are trying to connect
486 connect(); method
  /frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/
SourceActivity.java 119 connect(accessory);
130 private void connect(UsbAccessory accessory) { method in class:SourceActivity
  /frameworks/base/tests/net/java/android/net/nsd/
NsdManagerTest.java 378 chan.connect(context, this, msg.replyTo);
  /frameworks/native/libs/gui/bufferqueue/1.0/
H2BGraphicBufferProducer.cpp 1123 status_t H2BGraphicBufferProducer::connect( function in class:android::hardware::graphics::bufferqueue::V1_0::utils::H2BGraphicBufferProducer
    [all...]
  /frameworks/native/services/surfaceflinger/DisplayHardware/
VirtualDisplaySurface.cpp 111 mSource[SOURCE_SCRATCH]->connect(nullptr, NATIVE_WINDOW_API_EGL, false, &output);
533 status_t VirtualDisplaySurface::connect(const sp<IProducerListener>& listener, function in class:android::VirtualDisplaySurface
537 status_t result = mSource[SOURCE_SINK]->connect(listener, api,
  /frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/media/
BrowseFragment.java 50 * It uses a {@link MediaBrowserCompat} to connect to the {@link MediaBrowserServiceSupport}.
234 mMediaBrowser.connect();
QueueFragment.java 182 mMediaBrowser.connect();
  /frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/media/
RemotePlayer.java 103 public void connect(RouteInfo route) { method in class:RemotePlayer
  /hardware/google/av/codec2/vndk/bufferpool/
AccessorImpl.cpp 140 ResultStatus Accessor::Impl::connect( function in class:android::hardware::media::bufferpool::V1_0::implementation::Accessor::Impl
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
JarURLConnectionTest.java 104 connection.connect();
105 fail("Did not throw exception on connect");
112 fail("Did not throw exception after connect");
  /libcore/luni/src/test/java/libcore/java/net/
ServerSocketConcurrentCloseTest.java 125 * <p>Spawns a server and client thread that continuously connect to each
181 * Repeatedly tries to connect to and disconnect from a SocketAddress until
203 socket.connect(socketAddress, /* timeout (msec) */ 10);
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
HttpURLConnectionTest.java 209 connection.connect();
253 connection.connect();
295 connection.connect();
  /libcore/ojluni/src/main/java/sun/net/ftp/
FtpClient.java 50 * cl.connect("ftp.gnu.org").login("anonymous", "john.doe@mydomain.com".toCharArray())).changeDirectory("pub/gnu");
116 * @param dest the {@code InetSocketAddress} to connect to.
119 * @see #connect(java.net.SocketAddress)
124 client.connect(dest);
134 * to connect to.
145 * data connections are established by having the client connect to the server.
148 * <I>active</I> which means the server will connect back to the client
173 * @param timeout the timeout value, in milliseconds, to use for the connect
183 * @return the value, in milliseconds, of the current connect timeout.
238 * denied the authorization to connect to the destination
241 public abstract FtpClient connect(SocketAddress dest) throws FtpProtocolException, IOException; method in class:FtpClient
254 public abstract FtpClient connect(SocketAddress dest, int timeout) throws FtpProtocolException, IOException; method in class:FtpClient
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
DatagramSocketAdaptor.java 75 throw new IllegalArgumentException("connect: " + port);
77 throw new IllegalArgumentException("connect: null address");
81 dc.connect(remote);
97 public void connect(InetAddress address, int port) { method in class:DatagramSocketAdaptor
105 public void connect(SocketAddress remote) throws SocketException { method in class:DatagramSocketAdaptor
SocketAdaptor.java 78 public void connect(SocketAddress remote) throws IOException { method in class:SocketAdaptor
79 connect(remote, 0); method
82 public void connect(SocketAddress remote, int timeout) throws IOException { method in class:SocketAdaptor
84 throw new IllegalArgumentException("connect: The address can't be null");
86 throw new IllegalArgumentException("connect: timeout can't be negative");
97 sc.connect(remote);
107 if (sc.connect(remote))
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
PbapClientService.java 175 public boolean connect(BluetoothDevice device) { method in class:PbapClientService.BluetoothPbapClientBinder
178 Log.d(TAG, "PbapClient Binder connect ");
181 Log.e(TAG, "PbapClient Binder connect no service");
184 return service.connect(device);
264 public boolean connect(BluetoothDevice device) { method in class:PbapClientService
282 Log.w(TAG, "Received connect request while already connecting/connected.");
  /packages/apps/Car/LatinIME/src/com/android/inputmethod/latin/
CarLatinIME.java 153 mCar.connect();
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/
MailTransport.java 133 socket.connect(address, SOCKET_CONNECT_TIMEOUT);
138 direct SSL connection, we connect with a normal connection and upgrade it into

Completed in 973 milliseconds

<<21222324252627282930>>