/external/libchrome/base/android/java/src/org/chromium/base/process_launcher/ |
D | ChildConnectionAllocator.java | 35 boolean bindToCaller, boolean bindAsExternalService, Bundle serviceBundle); in createConnection() argument 42 boolean bindToCaller, boolean bindAsExternalService, Bundle serviceBundle) { in createConnection() argument 44 context, serviceName, bindToCaller, bindAsExternalService, serviceBundle); in createConnection() 79 String numChildServicesManifestKey, boolean bindToCaller, boolean bindAsExternalService, in create() argument 107 serviceClassName, bindToCaller, bindAsExternalService, useStrongBinding, in create() 117 String packageName, String serviceClassName, int serviceCount, boolean bindToCaller, in createForTest() argument 120 serviceClassName, bindToCaller, bindAsExternalService, useStrongBinding, in createForTest() 125 String packageName, String serviceClassName, boolean bindToCaller, in ChildConnectionAllocator() argument 132 mBindToCaller = bindToCaller; in ChildConnectionAllocator()
|
D | ChildProcessConnection.java | 258 public ChildProcessConnection(Context context, ComponentName serviceName, boolean bindToCaller, in ChildProcessConnection() argument 260 this(context, serviceName, bindToCaller, bindAsExternalService, serviceBundle, in ChildProcessConnection() 266 boolean bindToCaller, boolean bindAsExternalService, Bundle serviceBundle, in ChildProcessConnection() argument 272 mServiceBundle.putBoolean(ChildProcessConstants.EXTRA_BIND_TO_CALLER, bindToCaller); in ChildProcessConnection() 273 mBindToCaller = bindToCaller; in ChildProcessConnection() 446 if (!mService.bindToCaller()) { in onServiceConnectedOnLauncherThread()
|
D | IChildProcessService.aidl | 15 boolean bindToCaller(); in bindToCaller() method
|
D | ChildProcessService.java | 98 public boolean bindToCaller() {
|
/external/libchrome/base/test/android/javatests/src/org/chromium/base/test/ |
D | TestChildProcessConnection.java | 44 public TestChildProcessConnection(ComponentName serviceName, boolean bindToCaller, in TestChildProcessConnection() argument 46 super(null /* context */, serviceName, bindToCaller, bindAsExternalService, serviceBundle, in TestChildProcessConnection()
|
/external/libchrome/base/android/junit/src/org/chromium/base/process_launcher/ |
D | ChildProcessConnectionTest.java | 152 boolean bindToCaller, boolean bindAsExternalService, Bundle serviceBundle) { in createTestConnection() argument 156 new ComponentName(packageName, serviceName), bindToCaller, bindAsExternalService, in createTestConnection() 263 verify(mIChildProcessService, never()).bindToCaller(); in testNotBoundToCaller() 272 when(mIChildProcessService.bindToCaller()).thenReturn(true); in testBoundToCallerSuccess() 278 verify(mIChildProcessService, times(1)).bindToCaller(); in testBoundToCallerSuccess() 289 when(mIChildProcessService.bindToCaller()).thenReturn(false); in testBoundToCallerFailure() 295 verify(mIChildProcessService, times(1)).bindToCaller(); in testBoundToCallerFailure()
|
D | ChildConnectionAllocatorTest.java | 66 boolean bindToCaller, boolean bindAsExternalService, Bundle serviceBundle) { in createConnection() argument
|