Searched defs:serviceIntent (Results 1 - 3 of 3) sorted by relevance

/packages/services/Car/car-lib/src/android/car/
H A DCarProjectionManager.java116 * @param serviceIntent
119 public void registerProjectionRunner(Intent serviceIntent) throws CarNotConnectedException { argument
120 if (serviceIntent == null) {
121 throw new IllegalArgumentException("null serviceIntent");
125 mService.registerProjectionRunner(serviceIntent);
135 * @param serviceIntent
138 public void unregisterProjectionRunner(Intent serviceIntent) throws CarNotConnectedException { argument
139 if (serviceIntent == null) {
140 throw new IllegalArgumentException("null serviceIntent");
144 mService.unregisterProjectionRunner(serviceIntent);
[all...]
/packages/services/Car/service/src/com/android/car/
H A DCarProjectionService.java92 public void registerProjectionRunner(Intent serviceIntent) { argument
95 if (serviceIntent.filterEquals(mRegisteredService)) {
99 Log.w(CarLog.TAG_PROJECTION, "Registering new service[" + serviceIntent
104 bindToService(serviceIntent);
108 public void unregisterProjectionRunner(Intent serviceIntent) { argument
110 if (!serviceIntent.filterEquals(mRegisteredService)) {
112 + serviceIntent + "]. Registered service[" + mRegisteredService + "]");
120 private void bindToService(Intent serviceIntent) { argument
122 mRegisteredService = serviceIntent;
125 mContext.startServiceAsUser(serviceIntent, userHandl
[all...]
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
H A DComponentContextFixture.java124 Intent serviceIntent,
129 return bindService(serviceIntent, connection, flags);
134 Intent serviceIntent,
140 IInterface service = mServiceByComponentName.get(serviceIntent.getComponent());
143 + serviceIntent.getComponent());
146 connection.onServiceConnected(serviceIntent.getComponent(), service.asBinder());
123 bindServiceAsUser( Intent serviceIntent, ServiceConnection connection, int flags, UserHandle userHandle) argument
133 bindService( Intent serviceIntent, ServiceConnection connection, int flags) argument

Completed in 223 milliseconds