Home
last modified time | relevance | path

Searched refs:SERVICE_ACTION_TRANSPORT_HOST (Results 1 – 5 of 5) sorted by relevance

/aosp14/frameworks/base/services/robotests/backup/src/com/android/server/backup/transport/
H A DTransportConnectionManagerTest.java19 import static com.android.server.backup.TransportManager.SERVICE_ACTION_TRANSPORT_HOST;
66 mBindIntent = new Intent(SERVICE_ACTION_TRANSPORT_HOST).setComponent(mTransportComponent); in setUp()
H A DTransportConnectionTest.java19 import static com.android.server.backup.TransportManager.SERVICE_ACTION_TRANSPORT_HOST;
110 mBindIntent = new Intent(SERVICE_ACTION_TRANSPORT_HOST).setComponent(mTransportComponent); in setUp()
/aosp14/frameworks/base/services/backup/java/com/android/server/backup/transport/
H A DTransportConnectionManager.java19 import static com.android.server.backup.TransportManager.SERVICE_ACTION_TRANSPORT_HOST;
58 return new Intent(SERVICE_ACTION_TRANSPORT_HOST).setComponent(transportComponent); in getRealTransportIntent()
/aosp14/frameworks/base/services/backup/java/com/android/server/backup/
H A DTransportManager.java68 public static final String SERVICE_ACTION_TRANSPORT_HOST = "android.backup.TRANSPORT_HOST"; field in TransportManager
70 private final Intent mTransportServiceIntent = new Intent(SERVICE_ACTION_TRANSPORT_HOST);
/aosp14/frameworks/base/services/robotests/backup/src/com/android/server/backup/testing/
H A DTransportTestUtils.java73 return new Intent(TransportManager.SERVICE_ACTION_TRANSPORT_HOST); in transportIntent()