Searched defs:bindService (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/test-runner/src/android/test/
H A DServiceTestCase.java58 * test methods calls {@link #startService} or {@link #bindService}. This gives you an
64 * or {@link #bindService ServiceTestCase.bindService()}, the test case calls
67 * {@link android.app.Service#bindService(Intent, ServiceConnection, int)
68 * Service.bindService(Intent, ServiceConnection, int)}, as appropriate. It also stores
92 * startService() or bindService(). The test framework provides a
124 * a test calls {@link #startService} or {@link #bindService}.
149 * by {@link #bindService}.
206 * {@link android.content.Context#bindService(Intent, ServiceConnection, int)
207 * Context.bindService(Inten
233 protected IBinder bindService(Intent intent) { method in class:ServiceTestCase
[all...]
H A DIsolatedContext.java80 public boolean bindService(Intent service, ServiceConnection conn, int flags) { method in class:IsolatedContext
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHost.java140 bindService();
143 private static void bindService() { method in class:AppWidgetHost
216 bindService();
262 bindService();
/frameworks/base/core/java/android/content/
H A DContextWrapper.java471 public boolean bindService(Intent service, ServiceConnection conn, method in class:ContextWrapper
473 return mBase.bindService(service, conn, flags);
478 public boolean bindService(Intent service, ServiceConnection conn, int flags, int userHandle) { method in class:ContextWrapper
479 return mBase.bindService(service, conn, flags, userHandle);
H A DContext.java134 * Flag for {@link #bindService}: automatically create the service as long
157 * Flag for {@link #bindService}: include debugging help for mismatched
167 * Flag for {@link #bindService}: don't allow this binding to raise
179 * Flag for {@link #bindService}: indicates that the client application
188 * Flag for {@link #bindService}: allow the process hosting the bound
198 * Flag for {@link #bindService}: don't impact the scheduling or
206 * Flag for {@link #bindService}: this service is very important to
214 * Flag for {@link #bindService}: If binding from an activity, allow the
224 * Flag for {@link #bindService}: If binding from an activity, consider
236 * Flag for {@link #bindService}
1672 public abstract boolean bindService(Intent service, ServiceConnection conn, method in class:Context
1680 public boolean bindService(Intent service, ServiceConnection conn, int flags, int userHandle) { method in class:Context
[all...]
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContext.java408 public boolean bindService(Intent service, ServiceConnection conn, int flags) { method in class:MockContext
414 public boolean bindService(Intent service, ServiceConnection conn, int flags, int userId) { method in class:MockContext
/frameworks/base/core/java/android/app/
H A DContextImpl.java160 public boolean bindService(Intent service, ServiceConnection conn, int flags) { method in class:ReceiverRestrictedContext
1404 public boolean bindService(Intent service, ServiceConnection conn, method in class:ContextImpl
1407 return bindService(service, conn, flags, UserHandle.getUserId(Process.myUid()));
1412 public boolean bindService(Intent service, ServiceConnection conn, int flags, int userHandle) { method in class:ContextImpl
1431 int res = ActivityManagerNative.getDefault().bindService(
H A DActivityManagerNative.java784 int res = bindService(app, token, service, resolvedType, conn, fl, userId);
2706 public int bindService(IApplicationThread caller, IBinder token, method in class:ActivityManagerProxy
H A DIActivityManager.java140 public int bindService(IApplicationThread caller, IBinder token, method in interface:IActivityManager
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeContext.java861 public boolean bindService(Intent arg0, ServiceConnection arg1, int arg2) { method in class:BridgeContext
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java11059 public int bindService(IApplicationThread caller, IBinder token, method in class:ActivityManagerService
11062 enforceNotIsolatedCaller("bindService");

Completed in 1878 milliseconds