Home
last modified time | relevance | path

Searched refs:bindService (Results 1 – 9 of 9) sorted by relevance

/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DApplicationTest.java119 …assertTrue(Robolectric.application.bindService(new Intent(""), service, Context.BIND_AUTO_CREATE)); in bindServiceShouldCallOnServiceConnectedWhenNotPaused()
136 Robolectric.application.bindService(new Intent(""), service, Context.BIND_AUTO_CREATE); in unbindServiceShouldCallOnServiceDisconnectedWhenNotPaused()
152 Robolectric.application.bindService(new Intent(""), service, Context.BIND_AUTO_CREATE); in unbindServiceAddsEntryToUnboundServicesCollection()
167 …assertFalse(Robolectric.application.bindService(new Intent("refuseToBind"), service, Context.BIND_… in declaringServiceUnbindableMakesBindServiceReturnFalse()
DContextWrapperTest.java180 contextWrapper.bindService(new Intent("foo"), new TestService(), Context.BIND_AUTO_CREATE); in bindServiceDelegatesToShadowApplication()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowContextWrapper.java249 public boolean bindService(Intent intent, final ServiceConnection serviceConnection, int i) { in bindService() method in ShadowContextWrapper
250 return getShadowApplication().bindService(intent, serviceConnection, i); in bindService()
DShadowApplication.java197 public boolean bindService(Intent intent, final ServiceConnection serviceConnection, int i) { in bindService() method in ShadowApplication
/external/opencv3/platforms/android/service/engine/src/org/opencv/engine/manager/
DManagerActivity.java70 if (!bindService(new Intent(this, c), in onCreate()
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
DScriptProcessMonitor.java88 bindService(new Intent(this, ScriptingLayerService.class), mConnection, 0); in onCreate()
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/
DMockContext.java324 public boolean bindService(Intent intent, ServiceConnection serviceConnection, int i) { in bindService() method in MockContext.MockContext2
/external/opencv3/modules/java/generator/src/java/
Dandroid+AsyncServiceHelper.java26 if (AppContext.bindService(intent, helper.mServiceConnection, Context.BIND_AUTO_CREATE)) in initOpenCV()
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/
DConsoleActivity.java735 bindService(new Intent(this, ScriptingLayerService.class), mConnection, 0); in onStart()