Searched defs:token (Results 1 - 25 of 221) sorted by relevance

123456789

/frameworks/support/transition/api14/android/support/transition/
H A DWindowIdApi14.java27 WindowIdApi14(IBinder token) { argument
28 mToken = token;
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DNotificationCompatImpl21.java29 Object token) {
34 if (token != null) {
35 style.setMediaSession((MediaSession.Token) token);
27 addMediaStyle(NotificationBuilderWithBuilderAccessor b, int[] actionsToShowInCompact, Object token) argument
/frameworks/av/media/libstagefright/foundation/
H A DAWakeLock.cpp61 int64_t token = IPCThreadState::self()->clearCallingIdentity(); local
65 IPCThreadState::self()->restoreCallingIdentity(token);
90 int64_t token = IPCThreadState::self()->clearCallingIdentity(); local
92 IPCThreadState::self()->restoreCallingIdentity(token);
/frameworks/base/core/java/android/app/
H A DEphemeralResolverService.java88 void _onGetInstantAppResolveInfo(int[] digestPrefix, String token, argument
104 void _onGetInstantAppIntentFilter(int[] digestPrefix, String token, argument
/frameworks/base/core/java/android/app/backup/
H A DRestoreSet.java48 public long token; field in class:RestoreSet
58 token = _token;
69 out.writeLong(token);
86 token = in.readLong();
/frameworks/base/core/java/android/content/pm/
H A DAuxiliaryResolveInfo.java42 /** Opaque token to track the instant application resolution */
43 public final String token; field in class:AuxiliaryResolveInfo
53 @NonNull String token,
60 this.token = token;
76 this.token = null;
50 AuxiliaryResolveInfo(@onNull InstantAppResolveInfo resolveInfo, @NonNull IntentFilter orig, @Nullable String splitName, @NonNull String token, boolean needsPhase2, @Nullable Intent failureIntent) argument
H A DKeySet.java31 private IBinder token; field in class:KeySet
34 public KeySet(IBinder token) { argument
35 if (token == null) {
36 throw new NullPointerException("null value for KeySet IBinder token");
38 this.token = token;
43 return token;
51 return token == ks.token;
59 return token
[all...]
/frameworks/base/core/java/android/security/keymaster/
H A DOperationResult.java30 public final IBinder token; field in class:OperationResult
50 int resultCode, IBinder token, long operationHandle, int inputConsumed, byte[] output,
53 this.token = token;
62 token = in.readStrongBinder();
77 out.writeStrongBinder(token);
49 OperationResult( int resultCode, IBinder token, long operationHandle, int inputConsumed, byte[] output, KeymasterArguments outParams) argument
/frameworks/base/core/java/android/view/inputmethod/
H A DExtractedTextRequest.java31 public int token; field in class:ExtractedTextRequest
57 dest.writeInt(token);
70 res.token = source.readInt();
H A DInputContentInfo.java186 void setUriToken(IInputContentUriToken token) { argument
188 throw new IllegalStateException("URI token is already set");
190 mUriToken = token;
/frameworks/base/services/core/java/com/android/server/fingerprint/
H A DInternalRemovalClient.java26 public InternalRemovalClient(Context context, long halDeviceId, IBinder token, argument
30 super(context, halDeviceId, token, receiver, fingerId, groupId, userId, restricted, owner);
/frameworks/native/cmds/servicemanager/
H A Dbctest.c57 unsigned token; variable
96 svcmgr_publish(bs, svcmgr, argv[1], &token);
/frameworks/native/opengl/libagl/
H A DTokenManager.cpp27 // token 0 is always reserved
47 const GLuint token = *tokens++; local
48 if (token) {
49 mTokenizer.release(token);
54 bool TokenManager::isTokenValid(GLuint token) const
57 return mTokenizer.isAcquired(token);
/frameworks/native/services/sensorservice/hidl/
H A DDirectReportChannel.cpp36 int token = mManager.configureDirectChannel(mId, local
38 _hidl_cb(token <= 0 ? 0 : token,
39 token <= 0 ? convertResult(token) : Result::OK);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
H A DQSTileServiceWrapper.java78 public boolean onClick(IBinder token) { argument
80 mService.onClick(token);
/frameworks/base/core/java/android/hardware/display/
H A DVirtualDisplay.java41 IVirtualDisplayCallback token, Surface surface) {
44 mToken = token;
109 return "VirtualDisplay{display=" + mDisplay + ", token=" + mToken
40 VirtualDisplay(DisplayManagerGlobal global, Display display, IVirtualDisplayCallback token, Surface surface) argument
/frameworks/base/core/java/android/os/
H A DTokenWatcher.java59 * Record that this token has been acquired. When acquire is called, and
63 * @param token An IBinder object. If this token has already been acquired,
68 public void acquire(IBinder token, String tag) argument
75 Death d = new Death(token, tag);
77 token.linkToDeath(d, 0);
81 mTokens.put(token, d);
90 public void cleanup(IBinder token, boolean unlink) argument
93 Death d = mTokens.remove(token);
95 d.token
106 release(IBinder token) argument
182 IBinder token; field in class:TokenWatcher.Death
185 Death(IBinder token, String tag) argument
[all...]
/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionSessionService.java47 public void newSession(IBinder token, Bundle args, int startFlags) {
49 startFlags, token, args));
117 void doNewSession(IBinder token, Bundle args, int startFlags) { argument
124 mSystemService.deliverNewSession(token, mSession.mSession, mSession.mInteractor);
125 mSession.doCreate(mSystemService, token);
/frameworks/base/core/java/android/view/
H A DWindowInfo.java42 public IBinder token; field in class:WindowInfo
67 window.token = other.token;
100 parcel.writeStrongBinder(token);
123 builder.append(", token=").append(token);
136 token = parcel.readStrongBinder();
156 token = null;
H A DWindowManagerImpl.java80 * Sets the window token to assign when none is specified by the client or
83 * @param token The default token to assign.
85 public void setDefaultToken(IBinder token) { argument
86 mDefaultToken = token;
102 // Only use the default token if we don't have a parent window.
108 // Only use the default token if we don't already have a token.
110 if (wparams.token == null) {
111 wparams.token
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DContextMenuBuilder.java72 * @param token Optional, the window token that should be set on the context
77 public MenuDialogHelper showDialog(View originalView, IBinder token) { argument
88 helper.show(token);
/frameworks/base/core/jni/
H A Dandroid_util_StringBlock.cpp63 jlong token)
65 ResStringPool* osb = reinterpret_cast<ResStringPool*>(token);
75 jlong token, jint idx)
77 ResStringPool* osb = reinterpret_cast<ResStringPool*>(token);
99 jlong token, jint idx)
101 ResStringPool* osb = reinterpret_cast<ResStringPool*>(token);
142 jlong token)
144 ResStringPool* osb = reinterpret_cast<ResStringPool*>(token);
62 android_content_StringBlock_nativeGetSize(JNIEnv* env, jobject clazz, jlong token) argument
74 android_content_StringBlock_nativeGetString(JNIEnv* env, jobject clazz, jlong token, jint idx) argument
98 android_content_StringBlock_nativeGetStyle(JNIEnv* env, jobject clazz, jlong token, jint idx) argument
141 android_content_StringBlock_nativeDestroy(JNIEnv* env, jobject clazz, jlong token) argument
/frameworks/base/media/java/android/media/midi/
H A DMidiOutputPort.java94 /* package */ MidiOutputPort(IMidiDeviceServer server, IBinder token, argument
97 mToken = token;
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
H A DRingtonePlayer.java82 public Client(IBinder token, Uri uri, UserHandle user, AudioAttributes aa) { argument
83 mToken = token;
92 if (LOGD) Log.d(TAG, "binderDied() token=" + mToken);
102 public void play(IBinder token, Uri uri, AudioAttributes aa, float volume, boolean looping)
105 Log.d(TAG, "play(token=" + token + ", uri=" + uri + ", uid="
110 client = mClients.get(token);
113 client = new Client(token, uri, user, aa);
114 token.linkToDeath(client, 0);
115 mClients.put(token, clien
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DUpdateLockService.java90 public void acquireUpdateLock(IBinder token, String tag) throws RemoteException { argument
92 Slog.d(TAG, "acquire(" + token + ") by " + makeTag(tag));
96 mLocks.acquire(token, makeTag(tag));
100 public void releaseUpdateLock(IBinder token) throws RemoteException { argument
102 Slog.d(TAG, "release(" + token + ')');
106 mLocks.release(token);

Completed in 749 milliseconds

123456789