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

12345678

/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DNotificationCompatImpl21.java27 Object token) {
32 if (token != null) {
33 style.setMediaSession((MediaSession.Token) token);
25 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/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 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();
/frameworks/native/cmds/installd/
H A Dstring_helpers.h41 std::string token; local
43 while (std::getline(strstr, token, separator)) {
44 ret.push_back(token);
/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/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/services/core/java/com/android/server/fingerprint/
H A DEnumerateClient.java31 public EnumerateClient(Context context, long halDeviceId, IBinder token, argument
34 super(context, halDeviceId, token, receiver, userId, groupId, restricted, owner);
H A DAuthenticationClient.java41 public AuthenticationClient(Context context, long halDeviceId, IBinder token, argument
44 super(context, halDeviceId, token, receiver, callingUserId, groupId, restricted, owner);
H A DEnrollClient.java40 public EnrollClient(Context context, long halDeviceId, IBinder token, argument
43 super(context, halDeviceId, token, receiver, userId, groupId, restricted, owner);
H A DRemovalClient.java34 public RemovalClient(Context context, long halDeviceId, IBinder token, argument
37 super(context, halDeviceId, token, receiver, userId, groupId, restricted, owner);
/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
66 window.token = other.token;
98 parcel.writeStrongBinder(token);
120 builder.append(", token=").append(token);
133 token = parcel.readStrongBinder();
152 token = null;
H A DWindowManagerImpl.java81 * Sets the window token to assign when none is specified by the client or
84 * @param token The default token to assign.
86 public void setDefaultToken(IBinder token) { argument
87 mDefaultToken = token;
103 // Only use the default token if we don't have a parent window.
109 // Only use the default token if we don't already have a token.
111 if (wparams.token == null) {
112 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.java93 /* package */ MidiOutputPort(IMidiDeviceServer server, IBinder token, argument
96 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.java88 public void acquireUpdateLock(IBinder token, String tag) throws RemoteException { argument
90 Slog.d(TAG, "acquire(" + token + ") by " + makeTag(tag));
94 mLocks.acquire(token, makeTag(tag));
98 public void releaseUpdateLock(IBinder token) throws RemoteException { argument
100 Slog.d(TAG, "release(" + token + ')');
104 mLocks.release(token);
/frameworks/base/services/core/java/com/android/server/am/
H A DUriPermissionOwner.java56 static UriPermissionOwner fromExternalToken(IBinder token) { argument
57 if (token instanceof ExternalToken) {
58 return ((ExternalToken)token).getOwner();

Completed in 924 milliseconds

12345678