Home
last modified time | relevance | path

Searched refs:bindIntent (Results 1 – 8 of 8) sorted by relevance

/external/connectedappssdk/sdk/src/main/java/com/google/android/enterprise/connectedapps/
DDefaultProfileBinder.java32 Intent bindIntent = new Intent(); in createIntent() local
33 bindIntent.setComponent(bindToService); in createIntent()
34 return bindIntent; in createIntent()
DDpcProfileBinder.java58 Intent bindIntent = new Intent(); in tryBind() local
59 bindIntent.setComponent(bindToService); in tryBind()
62 deviceAdminReceiver, bindIntent, connection, Context.BIND_AUTO_CREATE, otherUserHandle); in tryBind()
DReflectionUtilities.java75 Context context, Intent bindIntent, ServiceConnection connection, UserHandle otherUserHandle) in bindServiceAsUser() argument
87 .invoke(context, bindIntent, connection, Context.BIND_AUTO_CREATE, otherUserHandle); in bindServiceAsUser()
DAbstractProfileBinder.java69 Intent bindIntent = createIntent(context, bindToService); in tryBind() local
72 ReflectionUtilities.bindServiceAsUser(context, bindIntent, connection, otherUserHandle); in tryBind()
/external/libchrome/base/android/junit/src/org/chromium/base/process_launcher/
DChildProcessConnectionTest.java56 Intent bindIntent, ChildProcessConnection.ChildServiceConnectionDelegate delegate) { in ChildServiceConnectionMock() argument
57 mBindIntent = bindIntent; in ChildServiceConnectionMock()
94 Intent bindIntent, int bindFlags,
97 spy(new ChildServiceConnectionMock(bindIntent, delegate));
187 Intent bindIntent = mFirstServiceConnection.getBindIntent(); in testServiceBundle() local
188 assertNotNull(bindIntent); in testServiceBundle()
189 assertEquals(intValue, bindIntent.getIntExtra(intKey, defaultValue)); in testServiceBundle()
190 assertEquals(stringValue, bindIntent.getStringExtra(stringKey)); in testServiceBundle()
/external/libchrome/base/android/java/src/org/chromium/base/process_launcher/
DChildProcessConnection.java89 Intent bindIntent, int bindFlags, ChildServiceConnectionDelegate delegate); in createConnection() argument
109 private ChildServiceConnectionImpl(Context context, Intent bindIntent, int bindFlags, in ChildServiceConnectionImpl() argument
112 mBindIntent = bindIntent; in ChildServiceConnectionImpl()
279 Intent bindIntent, int bindFlags, ChildServiceConnectionDelegate delegate) { in ChildProcessConnection()
280 return new ChildServiceConnectionImpl(context, bindIntent, bindFlags, delegate); in ChildProcessConnection()
/external/connectedappssdk/tests/robotests/src/test/java/com/google/android/enterprise/connectedapps/
DRobolectricTestUtilities.java261 Intent bindIntent = new Intent(); in setBinding() local
262 bindIntent.setComponent(serviceClassComponentName); in setBinding()
268 bindIntent, serviceClassComponentName, actualServiceStub); in setBinding()
/external/libchrome/base/test/android/javatests/src/org/chromium/base/test/
DTestChildProcessConnection.java49 public ChildServiceConnection createConnection(Intent bindIntent, int bindFlags, in TestChildProcessConnection()