Home | History | Annotate | Download | only in comp

Lines Matching refs:serviceIntent

112         final Intent serviceIntent = new Intent(mContext, UnprotectedCrossUserService.class);
115 bind(serviceIntent, EMPTY_SERVICE_CONNECTION, targetUser);
128 final Intent serviceIntent = new Intent();
129 serviceIntent.setClassName(NON_MANAGING_PACKAGE, ProtectedCrossUserService.class.getName());
132 bind(serviceIntent, EMPTY_SERVICE_CONNECTION, targetUser);
145 final Intent serviceIntent = new Intent(mContext, ProtectedCrossUserService.class);
146 bind(serviceIntent, EMPTY_SERVICE_CONNECTION, Process.myUserHandle());
202 final Intent serviceIntent = new Intent(mContext, ProtectedCrossUserService.class);
203 assertTrue(bind(serviceIntent, serviceConnection, targetUserHandle));
217 private boolean bind(Intent serviceIntent, ServiceConnection serviceConnection,
220 serviceIntent, serviceConnection, Context.BIND_AUTO_CREATE, userHandle);