Home | History | Annotate | Download | only in vr

Lines Matching defs:mCurrentVrService

145     private ManagedApplicationService mCurrentVrService;
187 component = ((mCurrentVrService == null) ? null : mCurrentVrService.getComponent());
241 mPendingState = (mVrModeEnabled && mCurrentVrService != null)
242 ? new VrState(mVrModeEnabled, mRunning2dInVr, mCurrentVrService.getComponent(),
243 mCurrentVrService.getUserId(), mVrAppProcessId, mCurrentVrModeComponent)
524 if (mCurrentVrService == null) {
530 mCurrentVrService.getComponent(), mCurrentVrService.getUserId(),
643 + ((mCurrentVrService == null)
644 ? "None" : mCurrentVrService.getComponent().flattenToString()));
923 String oldVrServicePackage = mCurrentVrService != null
924 ? mCurrentVrService.getComponent().getPackageName() : null;
933 if (mCurrentVrService != null) {
935 + mCurrentVrService.getComponent() + " for user "
936 + mCurrentVrService.getUserId());
937 mCurrentVrService.disconnect();
939 mCurrentVrService = null;
945 if (mCurrentVrService != null) {
948 if (mCurrentVrService.disconnectIfNotMatching(component, userId)) {
950 + ", disconnecting " + mCurrentVrService.getComponent()
951 + " for user " + mCurrentVrService.getUserId());
981 String newVrServicePackage = mCurrentVrService != null
982 ? mCurrentVrService.getComponent().getPackageName() : null;
990 if (mCurrentVrService != null && sendUpdatedCaller) {
1008 mCurrentVrService.sendEvent(new PendingEvent() {
1148 mCurrentVrService = createVrListenerService(component, userId);
1149 mCurrentVrService.connect();
1233 ComponentName currentBoundService = (mCurrentVrService == null) ? null :
1234 mCurrentVrService.getComponent();
1298 if (!targetEnabledState && mCurrentVrService != null) {
1402 if (mCurrentVrService == null) {
1405 return mCurrentVrService.getComponent().getPackageName().equals(packageName) &&
1406 userId == mCurrentVrService.getUserId();