Home
last modified time | relevance | path

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

/frameworks/opt/car/services/src/com/android/internal/car/
DCarServiceHelperService.java93 public void onServiceConnected(ComponentName componentName, IBinder iBinder) {
95 Slog.d(TAG, "onServiceConnected:" + iBinder);
97 handleCarServiceConnection(iBinder);
193 IBinder iBinder = ServiceManager.checkService("car_service"); in checkForCarServiceConnection() local
194 if (iBinder != null) { in checkForCarServiceConnection()
196 Slog.d(TAG, "Car service found through ServiceManager:" + iBinder); in checkForCarServiceConnection()
198 handleCarServiceConnection(iBinder); in checkForCarServiceConnection()
202 private void handleCarServiceConnection(IBinder iBinder) { in handleCarServiceConnection() argument
206 if (mCarService == iBinder) { in handleCarServiceConnection()
211 + " new:" + iBinder); in handleCarServiceConnection()
[all …]
/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
427 public void scheduleServiceArgs(IBinder iBinder, ParceledListSlice parceledListSlice) in scheduleServiceArgs() argument
440 public void scheduleBindService(IBinder iBinder, Intent intent, boolean b, int i) in scheduleBindService() argument
445 public void scheduleUnbindService(IBinder iBinder, Intent intent) throws RemoteException { in scheduleUnbindService() argument
449 public void dumpService(ParcelFileDescriptor parcelFileDescriptor, IBinder iBinder, in dumpService() argument
464 public void scheduleSleeping(IBinder iBinder, boolean b) throws RemoteException { in scheduleSleeping() argument
487 public void scheduleOnNewActivityOptions(IBinder iBinder, Bundle bundle) in scheduleOnNewActivityOptions() argument
504 public void dumpActivity(ParcelFileDescriptor parcelFileDescriptor, IBinder iBinder, in dumpActivity() argument
547 public void dumpProvider(ParcelFileDescriptor parcelFileDescriptor, IBinder iBinder, in dumpProvider() argument
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
DTileLifecycleManager.java391 public void onClick(IBinder iBinder) { in onClick() argument
392 if (DEBUG) Log.d(TAG, "onClick " + iBinder + " " + mUser); in onClick()
393 if (mWrapper == null || !mWrapper.onClick(iBinder)) { in onClick()
394 mClickBinder = iBinder; in onClick()
/frameworks/base/core/java/android/os/
DBinderProxy.java397 private static BinderProxy getInstance(long nativeData, long iBinder) { in getInstance() argument
401 result = sProxyMap.get(iBinder); in getInstance()
414 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.h555 std::size_t operator()(const sp<IBinder>& iBinder) const { in operator()
556 return std::hash<IBinder*>{}(iBinder.get()); in operator()
/frameworks/base/core/java/android/app/
DSystemServiceRegistry.java954 IBinder iBinder = ServiceManager.getServiceOrThrow(Context.TV_INPUT_SERVICE); in registerService()
955 ITvInputManager service = ITvInputManager.Stub.asInterface(iBinder); in registerService()
970 IBinder iBinder = ServiceManager.getServiceOrThrow(Context.USAGE_STATS_SERVICE); in registerService()
971 IUsageStatsManager service = IUsageStatsManager.Stub.asInterface(iBinder); in registerService()
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DDevicePolicyManagerService.java9227 IBinder iBinder = ServiceManager.getService(Context.ACCESSIBILITY_SERVICE); in getAccessibilityManagerForUser() local
9228 IAccessibilityManager service = iBinder == null in getAccessibilityManagerForUser()
9229 ? null : IAccessibilityManager.Stub.asInterface(iBinder); in getAccessibilityManagerForUser()