Searched refs:mToken (Results 1 - 25 of 56) sorted by relevance

123

/frameworks/base/core/java/android/hardware/display/
H A DVirtualDisplay.java37 private IVirtualDisplayCallback mToken; field in class:VirtualDisplay
44 mToken = token;
76 mGlobal.setVirtualDisplaySurface(mToken, surface);
90 mGlobal.resizeVirtualDisplay(mToken, width, height, densityDpi);
101 if (mToken != null) {
102 mGlobal.releaseVirtualDisplay(mToken);
103 mToken = null;
109 return "VirtualDisplay{display=" + mDisplay + ", token=" + mToken
/frameworks/base/core/java/android/os/
H A DUpdateLock.java41 IBinder mToken; field in class:UpdateLock
77 mToken = new Binder();
94 synchronized (mToken) {
107 synchronized (mToken) {
116 sService.acquireUpdateLock(mToken, mTag);
131 synchronized (mToken) {
140 sService.releaseUpdateLock(mToken);
154 synchronized (mToken) {
159 sService.releaseUpdateLock(mToken);
H A DSystemVibrator.java32 private final Binder mToken = new Binder(); field in class:SystemVibrator
68 mService.vibrate(uid, opPkg, milliseconds, usageForAttributes(attributes), mToken);
90 mToken);
109 mService.cancelVibrate(mToken);
H A DPowerManager.java1015 private final IBinder mToken; field in class:PowerManager.WakeLock
1033 mToken = new Binder();
1039 synchronized (mToken) {
1044 mService.releaseWakeLock(mToken, 0);
1065 synchronized (mToken) {
1078 synchronized (mToken) {
1094 synchronized (mToken) {
1111 mService.acquireWakeLock(mToken, mFlags, mTag, mPackageName, mWorkSource,
1144 synchronized (mToken) {
1150 mService.releaseWakeLock(mToken, flag
[all...]
/frameworks/base/core/java/android/view/
H A DWindowId.java38 private final IWindowId mToken; field in class:WindowId
122 return mToken.isFocused();
133 if (observer.mRegistrations.containsKey(mToken.asBinder())) {
137 observer.mRegistrations.put(mToken.asBinder(), this);
139 mToken.registerFocusObserver(observer.mIObserver);
150 if (observer.mRegistrations.remove(mToken.asBinder()) == null) {
154 mToken.unregisterFocusObserver(observer.mIObserver);
168 return mToken.asBinder().equals(((WindowId) otherObj)
169 .mToken.asBinder());
176 return mToken
[all...]
H A DInputQueue.java108 e.mCallback.onFinishedInputEvent(e.mToken, handled);
119 e.mToken = token;
130 public Object mToken; field in class:InputQueue.ActiveInputEvent
134 mToken = null;
/frameworks/base/core/java/android/app/
H A DService.java570 new ComponentName(this, mClassName), mToken, startId);
602 new ComponentName(this, mClassName), mToken, startId);
654 new ComponentName(this, mClassName), mToken, id,
671 new ComponentName(this, mClassName), mToken, 0, null,
707 mToken = token;
721 private IBinder mToken = null; field in class:Service
H A DKeyguardManager.java94 private final IBinder mToken = new Binder(); field in class:KeyguardManager.KeyguardLock
119 mWM.disableKeyguard(mToken, mTag);
141 mWM.reenableKeyguard(mToken);
H A DActivity.java705 private IBinder mToken; field in class:Activity
1255 && ActivityManagerNative.getDefault().isRootVoiceInteraction(mToken);
1591 return ActivityManagerNative.getDefault().showAssistFromActivity(mToken, args);
1707 ActivityManagerNative.getDefault().reportActivityFullyDrawn(mToken);
3931 this, mMainThread.getApplicationThread(), mToken, this,
3935 mToken, mEmbeddedID, requestCode, ar.getResultCode(),
3993 this, mMainThread.getApplicationThread(), mToken, this, intent, requestCode,
3997 mToken, mEmbeddedID, requestCode, ar.getResultCode(), ar.getResultData());
4029 this, mMainThread.getApplicationThread(), mToken, this,
4033 mToken, mEmbeddedI
[all...]
H A DStatusBarManager.java98 private IBinder mToken = new Binder(); field in class:StatusBarManager
123 svc.disable(what, mToken, mContext.getPackageName());
141 svc.disable2(what, mToken, mContext.getPackageName());
/frameworks/base/nfc-extras/java/com/android/nfc_extras/
H A DNfcExecutionEnvironment.java29 private final Binder mToken; field in class:NfcExecutionEnvironment
124 mToken = new Binder();
168 Bundle b = mExtras.getService().open(mExtras.mPackageName, mToken);
186 throwBundle(mExtras.getService().close(mExtras.mPackageName, mToken));
/frameworks/base/media/java/android/media/midi/
H A DMidiInputPort.java39 private final IBinder mToken; field in class:MidiInputPort
55 mToken = token;
125 return mToken;
150 mDeviceServer.closePort(mToken);
H A DMidiManager.java62 private final IBinder mToken = new Binder(); field in class:MidiManager
187 mService.registerListener(mToken, deviceListener);
204 mService.unregisterListener(mToken, deviceListener);
259 device = new MidiDevice(deviceInfoF, server, mService, mToken, deviceToken);
268 mService.openDevice(mToken, deviceInfo, callback);
297 device = new MidiDevice(deviceInfo, server, mService, mToken, deviceToken);
307 mService.openBluetoothDevice(mToken, bluetoothDevice, callback);
H A DMidiOutputPort.java41 private final IBinder mToken; field in class:MidiOutputPort
96 mToken = token;
135 mDeviceServer.closePort(mToken);
/frameworks/base/media/java/android/media/tv/
H A DTvInputManager.java1339 private IBinder mToken; field in class:TvInputManager.Session
1363 mToken = token;
1375 if (mToken == null) {
1380 mService.releaseSession(mToken, mUserId);
1395 if (mToken == null) {
1400 mService.setMainSession(mToken, mUserId);
1412 if (mToken == null) {
1418 mService.setSurface(mToken, surface, mUserId);
1435 if (mToken == null) {
1440 mService.dispatchSurfaceChanged(mToken, forma
[all...]
/frameworks/base/services/core/java/com/android/server/audio/
H A DPlayerRecord.java67 private IBinder mToken; field in class:PlayerRecord
226 mToken = token;
236 if (mToken != null) {
238 mToken.linkToDeath(this, 0);
264 if (mToken != null) {
344 if (mToken != null) {
345 mToken.unlinkToDeath(this, 0);
346 mToken = null;
/frameworks/base/core/java/android/content/
H A DBroadcastReceiver.java239 final IBinder mToken; field in class:BroadcastReceiver.PendingResult
258 mToken = token;
384 "Finishing broadcast after work to component " + mToken);
390 "Finishing broadcast to component " + mToken);
395 "Finishing broadcast to " + mToken);
421 am.finishReceiver(mToken, mResultCode, mResultData, mResultExtras,
426 am.finishReceiver(mToken, 0, null, null, false, mFlags);
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DNotificationCompat.java41 mediaStyle.mToken != null ? mediaStyle.mToken.getToken() : null);
171 MediaSessionCompat.Token mToken; field in class:NotificationCompat.MediaStyle
198 mToken = token;
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
H A DRingtonePlayer.java72 private final IBinder mToken; field in class:RingtonePlayer.Client
76 mToken = token;
85 if (LOGD) Log.d(TAG, "binderDied() token=" + mToken);
87 mClients.remove(mToken);
124 client.mToken.unlinkToDeath(client, 0);
198 pw.print(" mToken=");
199 pw.print(client.mToken);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DChronograph.java18 private final Object mToken; field in class:Chronograph.AlarmEntry
23 mToken = token;
27 mAlarmHandler.wake(mToken);
/frameworks/base/packages/BackupRestoreConfirmation/src/com/android/backupconfirm/
H A DBackupRestoreConfirmation.java69 int mToken; field in class:BackupRestoreConfirmation
153 mToken = intent.getIntExtra(FullBackup.CONF_TOKEN_INTENT_EXTRA, -1);
154 if (mToken < 0) {
187 sendAcknowledgement(mToken, true, mObserver);
196 sendAcknowledgement(mToken, false, mObserver);
261 mBackupManager.acknowledgeFullBackupOrRestore(mToken,
/frameworks/base/services/core/java/com/android/server/am/
H A DContentProviderRecord.java237 private final IBinder mToken; field in class:ContentProviderRecord.ExternalProcessHandle
241 mToken = token;
245 Slog.e(LOG_TAG, "Couldn't register for death for token: " + mToken, re);
250 mToken.unlinkToDeath(this, 0);
257 externalProcessTokenToHandle.get(mToken) != null) {
258 removeExternalProcessHandleInternalLocked(mToken);
/frameworks/base/services/core/java/com/android/server/dreams/
H A DDreamController.java103 pw.println(" mToken=" + mCurrentDream.mToken);
234 mIWindowManager.removeWindowToken(oldDream.mToken);
242 mListener.onDreamStopped(oldDream.mToken);
253 service.attach(mCurrentDream.mToken, mCurrentDream.mCanDoze);
276 public final Binder mToken; field in class:DreamController.DreamRecord
291 mToken = token;
/frameworks/base/services/core/java/com/android/server/
H A DGraphicsStatsService.java211 final IBinder mToken; field in class:GraphicsStatsService.ActiveBuffer
220 mToken = token;
221 mToken.linkToDeath(this, 0);
231 mToken.unlinkToDeath(this, 0);
/frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
H A DVoiceInteractionManagerServiceImpl.java164 if (mActiveSession == null || token != mActiveSession.mToken) {
175 if (mActiveSession == null || token != mActiveSession.mToken) {
196 if (mActiveSession == null || token != mActiveSession.mToken) {
208 if (mActiveSession == null || token != mActiveSession.mToken) {
219 if (mActiveSession == null || token != mActiveSession.mToken) {
348 finishLocked(connection.mToken);

Completed in 593 milliseconds

123