HomeSort by relevance Sort by last modified time
    Searched refs:reconnect (Results 1 - 25 of 125) sorted by null

1 2 3 4 5

  /frameworks/av/media/libstagefright/httplive/
HTTPDownloader.h 39 void reconnect();
60 bool reconnect /* force connect http */
HTTPDownloader.cpp 46 void HTTPDownloader::reconnect() { function in class:android::HTTPDownloader
85 bool reconnect /* force connect HTTP when resuing source */) {
92 if (reconnect) {
216 ssize_t err = fetchBlock(url, out, 0, -1, 0, actualUrl, true /* reconnect */);
  /frameworks/av/media/libstagefright/include/media/stagefright/
SurfaceUtils.h 31 * If |reconnect| is true, reconnects to the native window before hand.
36 int width, int height, int format, int rotation, int usage, bool reconnect);
  /frameworks/base/core/java/android/nfc/tech/
TagTechnology.java 198 public void reconnect() throws IOException; method in interface:TagTechnology
BasicTagTechnology.java 95 public void reconnect() throws IOException { method in class:BasicTagTechnology
101 int errorCode = mTag.getTagService().reconnect(mTag.getServiceHandle());
120 * but just reconnect to it to reset its state
123 mTag.getTagService().reconnect(mTag.getServiceHandle());
  /frameworks/base/core/java/android/nfc/
INfcTag.aidl 29 int reconnect(int nativeHandle);
  /external/fsck_msdos/
ext.h 132 * Try to reconnect a lost cluster chain
134 int reconnect(int, struct bootblock *, struct fatEntry *, cl_t);
  /packages/services/Car/tests/obd2_test/src/com/android/car/obd2/test/
MockObd2UnderlyingTransport.java 75 public boolean reconnect() { method in class:MockObd2UnderlyingTransport
  /system/chre/host/common/include/chre_host/
socket_client.h 76 * thread to automatically reconnect if disconnected by the remote end.
137 //! to disconnect, but it's trying to reconnect automatically
147 bool reconnect();
  /external/autotest/server/cros/multimedia/
remote_facade_factory.py 93 self._start_chrome(reconnect=False, retry=True,
175 # Reconnect the RPC server in case connection lost, e.g. reboot.
179 reconnect=True, retry=False,
251 def _start_chrome(self, reconnect, retry=False, extra_browser_args=None):
254 @param reconnect: True for reconnection, False for the first-time.
266 reconnect, extra_browser_args)
278 reconnect, extra_browser_args)
  /prebuilts/go/darwin-x86/src/log/syslog/
doc.go 10 // the syslog client will attempt to reconnect to the server
  /prebuilts/go/linux-x86/src/log/syslog/
doc.go 10 // the syslog client will attempt to reconnect to the server
  /system/chre/host/common/
socket_client.cc 146 while (!mGracefulShutdown && (mSockFd != INVALID_SOCKET || reconnect())) {
181 bool SocketClient::reconnect() { function in class:android::chre::SocketClient
  /cts/tests/tests/permission/src/android/permission/cts/
NoWifiStatePermissionTest.java 128 * Verify that WifiManager#reconnect() requires permissions.
134 mWifiManager.reconnect();
135 fail("WifiManager.reconnect didn't throw SecurityException as expected");
  /packages/services/Car/obd2-lib/src/com/android/car/obd2/connections/
BluetoothConnection.java 97 public boolean reconnect() { method in class:BluetoothConnection
  /packages/apps/Dialer/java/com/android/dialer/simulator/impl/
SimulatorConferenceCreator.java 40 private static final String RECONNECT = "reconnect";
69 * @param reconnect whether all connections should reconnect once (connections are reconnected
72 private void addNextCall(int callCount, boolean reconnect) {
76 if (reconnect) {
88 extras.putBoolean(RECONNECT, reconnect);
161 return connection.getExtras().getBoolean(RECONNECT);
  /packages/services/Car/obd2-lib/src/com/android/car/obd2/
Obd2Connection.java 41 boolean reconnect(); method in interface:Obd2Connection.UnderlyingTransport
73 public boolean reconnect() { method in class:Obd2Connection
74 if (!mConnection.reconnect()) return false;
  /tools/test/connectivity/acts/tests/google/wifi/
WifiManagerTest.py 349 """Connect to multiple networks, turn off/on wifi, then reconnect to
356 4. Reconnect to the non-current network.
364 reconnect = self.connect_to_wifi_network_with_id(
367 if not reconnect:
373 reconnect a previously connected network.
379 4. Reconnect to the non-current network.
387 reconnect = self.connect_to_wifi_network_with_id(
390 if not reconnect:
395 """Connect to multiple networks, reboot then reconnect to previously
403 5. Reconnect to the non-current network
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowCamera.java 50 public void reconnect() { method in class:ShadowCamera
  /packages/apps/Nfc/src/com/android/nfc/
DeviceHost.java 56 boolean reconnect(); method in interface:DeviceHost.TagEndpoint
  /packages/services/Car/tests/obd2_app/src/com/google/android/car/obd2app/
Obd2CollectionTask.java 73 if (!mConnection.reconnect()) {
  /frameworks/av/media/libstagefright/
SurfaceUtils.cpp 29 int width, int height, int format, int rotation, int usage, bool reconnect) {
32 // In some cases we need to reconnect so that we can dequeue all buffers
33 if (reconnect) {
171 // We need to reconnect to the ANativeWindow as a CPU client to ensure that
189 false /* reconnect */);
  /hardware/interfaces/wifi/supplicant/1.0/
ISupplicantStaIface.hal 94 * Reconnect to the currently active network, even if we are already
107 * Reconnect to the currently active network, if we are currently
118 reconnect() generates (SupplicantStatus status);
465 * Enable/Disable auto reconnect to networks.
  /packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/task/
AddWifiNetworkTaskTest.java 243 // GIVEN reconnect fail after adding network
244 when(mWifiManager.reconnect()).thenReturn(false);
279 // GIVEN reconnect ok after adding network
280 when(mWifiManager.reconnect()).thenReturn(true);
  /tools/tradefederation/core/util-apps/WifiUtil/src/com/android/tradefed/utils/wifi/
WifiMonitorService.java 48 * Additionally, tests can reconnect wifi during test runs to ensure connectivity by sending
49 * <code>com.android.tradefed.utils.wifi.RECONNECT</code> action. Once the reconnection is done,
58 public static final String ACTION_RECONNECT = PACKAGE_NAME + ".RECONNECT";
81 reconnect(intent);
115 private void reconnect(Intent intent) { method in class:WifiMonitorService
131 Log.e(TAG, "failed to reconnect", e);

Completed in 586 milliseconds

1 2 3 4 5