Searched refs:token (Results 201 - 225 of 249) sorted by relevance

12345678910

/frameworks/base/services/core/java/com/android/server/content/
H A DSyncStorageEngine.java2370 int token;
2371 while ((token=in.readInt()) != STATUS_FILE_END) {
2372 if (token == STATUS_FILE_ITEM) {
2383 Log.w(TAG, "Unknown status token: " + token);
2731 int token;
2733 while ((token=in.readInt()) != STATISTICS_FILE_END) {
2734 if (token == STATISTICS_FILE_ITEM
2735 || token == STATISTICS_FILE_ITEM_OLD) {
2737 if (token
[all...]
/frameworks/base/media/java/android/media/
H A DMediaFocusControl.java1087 ComponentName target, IBinder token) {
1089 mPRStack.push(new PlayerRecord(mediaIntent, target, token));
1119 prse = new PlayerRecord(mediaIntent, target, token);
1401 IBinder token) {
1405 if (pushMediaButtonReceiver_syncPrs(mediaIntent, eventReceiver, token)) {
1086 pushMediaButtonReceiver_syncPrs(PendingIntent mediaIntent, ComponentName target, IBinder token) argument
1400 registerMediaButtonIntent(PendingIntent mediaIntent, ComponentName eventReceiver, IBinder token) argument
/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionSession.java447 void doCreate(IVoiceInteractionManagerService service, IBinder token, Bundle args) { argument
449 mToken = token;
/frameworks/base/core/java/android/view/
H A DSurfaceView.java221 mLayout.token = getWindowToken();
280 mLayout.token = null;
/frameworks/base/media/java/android/media/session/
H A DMediaController.java90 throw new IllegalArgumentException("Session token cannot be null");
102 * Create a new MediaController from a session's token.
105 * @param token The token for the session.
107 public MediaController(@NonNull Context context, @NonNull MediaSession.Token token) { argument
108 this(context, token.getBinder());
283 * Get the token for the session this is connected to.
285 * @return The token for the connected session.
/frameworks/base/services/core/java/com/android/server/notification/
H A DManagedServices.java177 final IBinder token = service.asBinder();
181 if (info.service.asBinder() == token) return info;
/frameworks/base/core/java/android/os/
H A DBinder.java41 * token that can be shared across processes.
120 * @return Returns an opaque token that can be used to restore the
135 * @param token The opaque token that was previously returned by
140 public static final native void restoreCallingIdentity(long token); argument
/frameworks/base/core/java/android/text/
H A DTextUtils.java298 for (Object token: tokens) {
304 sb.append(token);
317 for (Object token: tokens) {
323 sb.append(token);
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java779 final long token = Binder.clearCallingIdentity();
790 Binder.restoreCallingIdentity(token);
808 final long token = Binder.clearCallingIdentity();
826 Binder.restoreCallingIdentity(token);
/frameworks/base/services/core/java/com/android/server/wm/
H A DAppWindowToken.java47 // application token. Note this list is NOT sorted!
61 // The input dispatching timeout for this application token in nanoseconds.
77 // Is this token going to be hidden in a little while? If so, it
82 // it will sometimes be true a little earlier: when the token has
90 // Last visibility state we reported to the app token.
93 // Last drawn state we reported to the app token.
96 // Set to true when the token has been removed from the window mgr.
318 sb.append(" token="); sb.append(token); sb.append('}');
H A DWindowState.java327 WindowState(WindowManagerService service, Session s, IWindow c, WindowToken token, argument
334 mToken = token;
360 + " token=" + token + " (" + mAttrs.token + ")" + " params=" + a);
441 WindowToken parent = mService.mTokenMap.get(appToken.token);
471 TAG, "Attaching " + this + " token=" + mToken
834 * that will remove the surface, or its app token has been hidden.
869 * Is this window visible, ignoring its app token? It is not visible
882 * the associated app token, no
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiServiceImpl.java1041 final long token = Binder.clearCallingIdentity();
1045 Binder.restoreCallingIdentity(token);
1063 final long token = Binder.clearCallingIdentity();
1067 Binder.restoreCallingIdentity(token);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhoneBase.java1646 private void sendIncomingCallRingNotification(int token) { argument
1648 (token == mCallRingContinueToken)) {
1652 obtainMessage(EVENT_CALL_RING_CONTINUE, token, 0), mCallRingDelay);
1656 + " token=" + token
/frameworks/base/services/core/java/com/android/server/am/
H A DActiveServices.java510 boolean stopServiceTokenLocked(ComponentName className, IBinder token, argument
513 + " " + token + " startId=" + startId);
514 ServiceRecord r = findServiceLocked(className, token, UserHandle.getCallingUserId());
559 public void setServiceForegroundLocked(ComponentName className, IBinder token, argument
564 ServiceRecord r = findServiceLocked(className, token, userId);
671 int bindServiceLocked(IApplicationThread caller, IBinder token, argument
686 if (token != null) {
687 activity = ActivityRecord.isInStackLocked(token);
689 Slog.w(TAG, "Binding with unknown activity: " + token);
963 IBinder token, in
962 findServiceLocked(ComponentName name, IBinder token, int userId) argument
[all...]
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
H A DAppWidgetServiceImpl.java1436 long token = Binder.clearCallingIdentity();
1440 Binder.restoreCallingIdentity(token);
1490 final long token = Binder.clearCallingIdentity();
1495 Binder.restoreCallingIdentity(token);
1927 long token = Binder.clearCallingIdentity();
1932 Binder.restoreCallingIdentity(token);
2900 final long token = Binder.clearCallingIdentity();
2905 Binder.restoreCallingIdentity(token);
2910 final long token = Binder.clearCallingIdentity();
2914 Binder.restoreCallingIdentity(token);
[all...]
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkPolicyManagerService.java1631 final long token = Binder.clearCallingIdentity();
1635 Binder.restoreCallingIdentity(token);
1708 final long token = Binder.clearCallingIdentity();
1712 Binder.restoreCallingIdentity(token);
2189 final long token = Binder.clearCallingIdentity();
2196 Binder.restoreCallingIdentity(token);
/frameworks/base/services/core/java/com/android/server/
H A DAppOpsService.java679 public int startOperation(IBinder token, int code, int uid, String packageName) { argument
682 ClientState client = (ClientState)token;
718 public void finishOperation(IBinder token, int code, int uid, String packageName) { argument
721 ClientState client = (ClientState)token;
H A DConnectivityService.java1112 final long token = Binder.clearCallingIdentity();
1123 Binder.restoreCallingIdentity(token);
1130 final long token = Binder.clearCallingIdentity();
1134 Binder.restoreCallingIdentity(token);
1210 final long token = Binder.clearCallingIdentity();
1222 Binder.restoreCallingIdentity(token);
2552 final long token = Binder.clearCallingIdentity();
2560 Binder.restoreCallingIdentity(token);
H A DDropBoxManagerService.java269 final long token = Binder.clearCallingIdentity();
274 Binder.restoreCallingIdentity(token);
/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp1283 jint repeat, jint token) {
1303 im->getInputManager()->getReader()->vibrate(deviceId, pattern, patternSize, repeat, token);
1307 jclass clazz, jlong ptr, jint deviceId, jint token) {
1310 im->getInputManager()->getReader()->cancelVibrate(deviceId, token);
1281 nativeVibrate(JNIEnv* env, jclass clazz, jlong ptr, jint deviceId, jlongArray patternObj, jint repeat, jint token) argument
1306 nativeCancelVibrate(JNIEnv* env, jclass clazz, jlong ptr, jint deviceId, jint token) argument
/frameworks/base/services/print/java/com/android/server/print/
H A DUserState.java1173 IBinder token = mStartedPrinterDiscoveryTokens.get(i);
1174 stopPrinterDiscoveryLocked(IPrinterDiscoveryObserver.Stub.asInterface(token));
1302 IBinder token = mStartedPrinterDiscoveryTokens.get(i);
1303 pw.append(prefix).append(tab).append(tab).append(token.toString()).println();
/frameworks/native/services/inputflinger/
H A DInputReader.cpp688 ssize_t repeat, int32_t token) {
694 device->vibrate(pattern, patternSize, repeat, token);
698 void InputReader::cancelVibrate(int32_t deviceId, int32_t token) { argument
704 device->cancelVibrate(token);
1065 int32_t token) {
1069 mapper->vibrate(pattern, patternSize, repeat, token);
1073 void InputDevice::cancelVibrate(int32_t token) { argument
1077 mapper->cancelVibrate(token);
1783 int32_t token) {
1786 void InputMapper::cancelVibrate(int32_t token) { argument
687 vibrate(int32_t deviceId, const nsecs_t* pattern, size_t patternSize, ssize_t repeat, int32_t token) argument
1064 vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat, int32_t token) argument
1782 vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat, int32_t token) argument
1894 vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat, int32_t token) argument
1918 cancelVibrate(int32_t token) argument
[all...]
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp227 sp<BBinder> token = new DisplayToken(this); local
233 mCurrentState.displays.add(token, info);
235 return token;
243 ALOGW("destroyDisplay: invalid display token");
259 "Overwriting display token for display type %d", type);
420 wp<IBinder> token = mBuiltinDisplays[i]; local
431 type, hwcId, mHwc->getFormat(hwcId), isSecure, token,
441 mDisplays.add(token, hw);
2021 ssize_t dpyIdx = mCurrentState.displays.indexOfKey(s.token);
2246 d.token
[all...]
/frameworks/base/core/java/android/content/pm/
H A DIPackageManager.aidl212 void finishPackageInstall(int token);
/frameworks/native/libs/gui/
H A DBufferQueueProducer.cpp826 sp<IBinder> token = local
830 token->unlinkToDeath(

Completed in 705 milliseconds

12345678910