Home
last modified time | relevance | path

Searched refs:iBinder (Results 1 – 10 of 10) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/app/servertransaction/
DTransactionParcelTests.java404 public void scheduleCreateService(IBinder iBinder, ServiceInfo serviceInfo, in scheduleCreateService() argument
409 public void scheduleStopService(IBinder iBinder) throws RemoteException { in scheduleStopService() argument
428 public void scheduleServiceArgs(IBinder iBinder, ParceledListSlice parceledListSlice) in scheduleServiceArgs() argument
441 public void scheduleBindService(IBinder iBinder, Intent intent, boolean b, int i) in scheduleBindService() argument
446 public void scheduleUnbindService(IBinder iBinder, Intent intent) throws RemoteException { in scheduleUnbindService() argument
450 public void dumpService(ParcelFileDescriptor parcelFileDescriptor, IBinder iBinder, in dumpService() argument
465 public void scheduleSleeping(IBinder iBinder, boolean b) throws RemoteException { in scheduleSleeping() argument
488 public void scheduleOnNewActivityOptions(IBinder iBinder, Bundle bundle) in scheduleOnNewActivityOptions() argument
505 public void dumpActivity(ParcelFileDescriptor parcelFileDescriptor, IBinder iBinder, in dumpActivity() argument
548 public void dumpProvider(ParcelFileDescriptor parcelFileDescriptor, IBinder iBinder, in dumpProvider() argument
[all …]
/frameworks/opt/car/services/src/com/android/internal/car/
DCarServiceHelperService.java100 public void onServiceConnected(ComponentName componentName, IBinder iBinder) {
102 Slog.d(TAG, "onServiceConnected:" + iBinder);
104 handleCarServiceConnection(iBinder);
205 IBinder iBinder = ServiceManager.checkService("car_service"); in checkForCarServiceConnection() local
206 if (iBinder != null) { in checkForCarServiceConnection()
208 Slog.d(TAG, "Car service found through ServiceManager:" + iBinder); in checkForCarServiceConnection()
210 handleCarServiceConnection(iBinder); in checkForCarServiceConnection()
214 private void handleCarServiceConnection(IBinder iBinder) { in handleCarServiceConnection() argument
218 if (mCarService == iBinder) { in handleCarServiceConnection()
223 + " new:" + iBinder); in handleCarServiceConnection()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
DTileLifecycleManager.java394 public void onClick(IBinder iBinder) { in onClick() argument
395 if (DEBUG) Log.d(TAG, "onClick " + iBinder + " " + mUser); in onClick()
396 if (mWrapper == null || !mWrapper.onClick(iBinder)) { in onClick()
397 mClickBinder = iBinder; in onClick()
/frameworks/base/core/java/android/os/
DBinderProxy.java398 private static BinderProxy getInstance(long nativeData, long iBinder) { in getInstance() argument
402 result = sProxyMap.get(iBinder); in getInstance()
415 sProxyMap.set(iBinder, result); in getInstance()
/frameworks/base/services/core/java/com/android/server/utils/
DManagedApplicationService.java330 public void onServiceConnected(ComponentName componentName, IBinder iBinder) { in connect()
349 mBoundInterface = mChecker.asInterface(iBinder); in connect()
/frameworks/base/core/java/android/view/accessibility/
DAccessibilityManager.java1269 IBinder iBinder = ServiceManager.getService(Context.ACCESSIBILITY_SERVICE); in tryConnectToServiceLocked() local
1270 if (iBinder == null) { in tryConnectToServiceLocked()
1273 service = IAccessibilityManager.Stub.asInterface(iBinder); in tryConnectToServiceLocked()
/frameworks/native/libs/gui/include/gui/
DSurfaceComposerClient.h554 std::size_t operator()(const sp<IBinder>& iBinder) const { in operator()
555 return std::hash<IBinder*>{}(iBinder.get()); in operator()
/frameworks/base/services/net/java/android/net/
DConnectivityModuleConnector.java134 void onModuleServiceConnected(@NonNull IBinder iBinder); in onModuleServiceConnected() argument
/frameworks/base/core/java/android/app/
DSystemServiceRegistry.java1009 IBinder iBinder = ServiceManager.getServiceOrThrow(Context.TV_INPUT_SERVICE); in registerService()
1010 ITvInputManager service = ITvInputManager.Stub.asInterface(iBinder); in registerService()
1025 IBinder iBinder = ServiceManager.getServiceOrThrow(Context.USAGE_STATS_SERVICE); in registerService()
1026 IUsageStatsManager service = IUsageStatsManager.Stub.asInterface(iBinder); in registerService()
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DDevicePolicyManagerService.java9236 IBinder iBinder = ServiceManager.getService(Context.ACCESSIBILITY_SERVICE); in getAccessibilityManagerForUser() local
9237 IAccessibilityManager service = iBinder == null in getAccessibilityManagerForUser()
9238 ? null : IAccessibilityManager.Stub.asInterface(iBinder); in getAccessibilityManagerForUser()