HomeSort by relevance Sort by last modified time
    Searched full:transportbinder (Results 1 - 3 of 3) sorted by null

  /frameworks/base/services/robotests/src/com/android/server/backup/testing/
TransportTestUtils.java 167 IBackupTransport transportBinder = mock(IBackupTransport.class);
169 when(transportBinder.name()).thenReturn(transport.transportName);
170 when(transportBinder.transportDirName()).thenReturn(transport.transportDirName);
171 when(transportBinder.configurationIntent()).thenReturn(transport.configurationIntent);
172 when(transportBinder.currentDestinationString())
174 when(transportBinder.dataManagementIntent()).thenReturn(transport.dataManagementIntent);
175 when(transportBinder.dataManagementLabel()).thenReturn(transport.dataManagementLabel);
179 return transportBinder;
  /frameworks/base/services/robotests/src/com/android/server/backup/transport/
TransportClientTest.java 320 IBackupTransport transportBinder =
323 assertThat(transportBinder).isNotNull();
333 IBackupTransport transportBinder =
336 assertThat(transportBinder).isNull();
345 IBackupTransport transportBinder =
348 assertThat(transportBinder).isNull();
368 IBackupTransport transportBinder =
371 assertThat(transportBinder).isNotNull();
  /frameworks/base/services/robotests/src/com/android/server/backup/
PerformBackupTaskTest.java 289 IBackupTransport transportBinder = transportMock.transport;
304 when(transportBinder.performBackup(argThat(packageInfo(PACKAGE_1)), any(), anyInt()))
310 verify(transportBinder).performBackup(argThat(packageInfo(PACKAGE_1)), any(), anyInt());
346 IBackupTransport transportBinder = transportMock.transport;
354 when(transportBinder.performBackup(argThat(packageInfo(PACKAGE_1)), any(), anyInt()))
359 verify(transportBinder).finishBackup();
428 IBackupTransport transportBinder = transportMock.transport;
430 when(transportBinder.performBackup(argThat(packageInfo(PACKAGE_1)), any(), anyInt()))
432 when(transportBinder.performBackup(argThat(packageInfo(PACKAGE_2)), any(), anyInt()))
452 IBackupTransport transportBinder = transportMock.transport
    [all...]

Completed in 90 milliseconds