Searched refs:bindIntent (Results 1 – 8 of 8) sorted by relevance
/external/connectedappssdk/sdk/src/main/java/com/google/android/enterprise/connectedapps/ |
D | DefaultProfileBinder.java | 32 Intent bindIntent = new Intent(); in createIntent() local 33 bindIntent.setComponent(bindToService); in createIntent() 34 return bindIntent; in createIntent()
|
D | DpcProfileBinder.java | 58 Intent bindIntent = new Intent(); in tryBind() local 59 bindIntent.setComponent(bindToService); in tryBind() 62 deviceAdminReceiver, bindIntent, connection, Context.BIND_AUTO_CREATE, otherUserHandle); in tryBind()
|
D | ReflectionUtilities.java | 75 Context context, Intent bindIntent, ServiceConnection connection, UserHandle otherUserHandle) in bindServiceAsUser() argument 87 .invoke(context, bindIntent, connection, Context.BIND_AUTO_CREATE, otherUserHandle); in bindServiceAsUser()
|
D | AbstractProfileBinder.java | 69 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/ |
D | ChildProcessConnectionTest.java | 56 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/ |
D | ChildProcessConnection.java | 89 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/ |
D | RobolectricTestUtilities.java | 261 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/ |
D | TestChildProcessConnection.java | 49 public ChildServiceConnection createConnection(Intent bindIntent, int bindFlags, in TestChildProcessConnection()
|