Searched defs:token (Results 1 - 25 of 221) sorted by last modified time

123456789

/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/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 DNotificationCompat.java76 MediaSessionCompat.Token token =
79 return token;
589 public MediaStyle setMediaSession(MediaSessionCompat.Token token) { argument
590 mToken = token;
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/support/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DBackgroundHelper.java59 * Get cached bitmap by token, returns null if missing cache.
61 public Bitmap getCache(Object token) { argument
62 if (token == null ? mLastToken == null : token.equals(mLastToken)) {
63 if (DEBUG) Log.v(TAG, "hitCache token:" + token + " " + mLastBitmap);
72 public void putCache(Object token, Bitmap bitmap) { argument
73 if (DEBUG) Log.v(TAG, "putCache token:" + token + " " + bitmap);
74 mLastToken = token;
[all...]
/frameworks/support/media-compat/api21/android/support/v4/media/
H A DMediaBrowserServiceCompatApi21.java47 public static void setSessionToken(Object serviceObj, Object token) { argument
48 ((MediaBrowserService) serviceObj).setSessionToken((MediaSession.Token) token);
/frameworks/support/media-compat/api21/android/support/v4/media/session/
H A DMediaSessionCompatApi21.java55 public static Object verifyToken(Object token) { argument
56 if (token instanceof MediaSession.Token) {
57 return token;
59 throw new IllegalArgumentException("token is not a valid MediaSession.Token object");
/frameworks/support/media-compat/java/android/support/v4/media/
H A DMediaBrowserServiceCompat.java167 void setSessionToken(MediaSessionCompat.Token token); argument
189 public void setSessionToken(final MediaSessionCompat.Token token) { argument
197 connection.callbacks.onConnect(connection.root.getRootId(), token,
260 public void setSessionToken(final MediaSessionCompat.Token token) { argument
265 IMediaSession extraBinder = token.getExtraBinder();
274 MediaBrowserServiceCompatApi21.setSessionToken(mServiceObj, token.getToken());
780 public void addSubscription(final String id, final IBinder token, final Bundle options, argument
795 MediaBrowserServiceCompat.this.addSubscription(id, connection, token, options);
800 public void removeSubscription(final String id, final IBinder token, argument
814 id, connection, token)) {
1163 setSessionToken(MediaSessionCompat.Token token) argument
1258 addSubscription(String id, ConnectionRecord connection, IBinder token, Bundle options) argument
1280 removeSubscription(String id, ConnectionRecord connection, IBinder token) argument
[all...]
/frameworks/support/media-compat/java/android/support/v4/media/session/
H A DMediaControllerCompat.java64 * If MediaControllerCompat is created with a {@link MediaSessionCompat.Token session token}
66 * {@link MediaSessionCompat.Token session token} is not passed through a
219 * Creates a media controller from a session token which may have
222 * @param sessionToken The token of the session to be controlled.
472 * Get the token for the session this controller is connected to.
474 * @return The session's token.
1278 public MediaControllerImplBase(MediaSessionCompat.Token token) { argument
1279 mBinder = IMediaSession.Stub.asInterface((IBinder) token.getToken());
H A DMediaSessionCompat.java77 * {@link #getSessionToken() session token} to other processes to allow them to
588 * Retrieve a token object that can be used by apps to create a
594 * {@link android.os.Build.VERSION_CODES#LOLLIPOP} this token may only be
598 * @return A token that can be used to create a media controller for this
1462 * @param token The framework token object.
1465 public static Token fromToken(Object token) { argument
1466 return fromToken(token, null);
1477 * @param token The framework token objec
1483 fromToken(Object token, IMediaSession extraBinder) argument
[all...]
/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DBackgroundHelper.java59 * Get cached bitmap by token, returns null if missing cache.
61 public Bitmap getCache(Object token) { argument
62 if (token == null ? mLastToken == null : token.equals(mLastToken)) {
63 if (DEBUG) Log.v(TAG, "hitCache token:" + token + " " + mLastBitmap);
72 public void putCache(Object token, Bitmap bitmap) { argument
73 if (DEBUG) Log.v(TAG, "putCache token:" + token + " " + bitmap);
74 mLastToken = token;
[all...]
/frameworks/rs/script_api/
H A DGenerateStubsWhiteList.cpp34 const char* token[3]; // The last two entries can be nullptr member in struct:BuiltInMangling
100 // Try to substitue each token.
104 // No substitution possible, just go to the next token.
130 // Replace the token with the substitution. Don't advance, as the new substitution
162 if (!a.token[i]) {
166 if (t == end || *t++ != a.token[i]) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DAppSmsManager.java42 * that is triggered when an incoming SMS is received that contains the provided token.
66 * This method returns a token that if included in a subsequent incoming SMS message the
81 String token = generateNonce();
88 AppRequestInfo info = new AppRequestInfo(callingPkg, intent, token);
91 return token;
107 // The message didn't contain a token -- nothing to do.
141 for (String token : mTokenMap.keySet()) {
142 if (fullMessage.contains(token)) {
143 return mTokenMap.get(token);
156 mTokenMap.remove(info.token);
168 public final String token; field in class:AppSmsManager.AppRequestInfo
170 AppRequestInfo(String packageName, PendingIntent pendingIntent, String token) argument
[all...]
H A DClientWakelockAccountant.java40 int token, int concurrentRequests, long time) {
42 RilWakelockInfo wlInfo = new RilWakelockInfo(request, token, concurrentRequests, time);
49 public void stopAttributingWakelock(int request, int token, long time) { argument
50 RilWakelockInfo wlInfo = removePendingWakelock(request, token);
106 private RilWakelockInfo removePendingWakelock(int request, int token) { argument
110 if ((wlInfo.getTokenNumber() == token) &&
120 Rlog.w(LOG_TAG, "Looking for Request<" + request + "," + token + "> in "
39 startAttributingWakelock(int request, int token, int concurrentRequests, long time) argument
H A DClientWakelockTracker.java38 public void startTracking(String clientId, int requestId, int token, int numRequestsInQueue) { argument
41 client.startAttributingWakelock(requestId, token, numRequestsInQueue, uptime);
51 public void stopTracking(String clientId, int requestId, int token, int numRequestsInQueue) { argument
54 client.stopAttributingWakelock(requestId, token, uptime);
H A DPhone.java2830 private void sendIncomingCallRingNotification(int token) { argument
2832 (token == mCallRingContinueToken)) {
2836 obtainMessage(EVENT_CALL_RING_CONTINUE, token, 0), mCallRingDelay);
2840 + " token=" + token
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java764 // This token was already tokenized, so skip past the ending token.
769 // and commit the whole token.
1364 // When we have a valid token, include it with the token
1460 String token = editable.toString().substring(tokenStart, tokenEnd);
1461 final String trimmedToken = token.trim();
1464 token = trimmedToken.substring(0, trimmedToken.length() - 1);
1466 RecipientEntry entry = createTokenizedEntry(token);
1482 chip.setOriginalText(token);
1489 createTokenizedEntry(final String token) argument
[all...]
/frameworks/native/cmds/atrace/
H A Datrace.cpp752 String8 token = tokenizer->nextToken(" "); local
753 if (token.isEmpty()) {
757 ok &= setCategoryEnable(token.string(), true);
/frameworks/native/cmds/dumpstate/tests/
H A Ddumpstate_test.cpp561 sp<IDumpstateToken> token; local
562 EXPECT_TRUE(dss.setListener("", listener, &token).isOk());
563 ASSERT_THAT(token, IsNull());
567 sp<IDumpstateToken> token; local
568 EXPECT_TRUE(dss.setListener("whatever", nullptr, &token).isOk());
569 ASSERT_THAT(token, IsNull());
574 sp<IDumpstateToken> token; local
575 EXPECT_TRUE(dss.setListener("whatever", listener, &token).isOk());
576 ASSERT_THAT(token, NotNull());
579 token
[all...]
/frameworks/native/cmds/servicemanager/
H A Dbctest.c57 unsigned token; variable
96 svcmgr_publish(bs, svcmgr, argv[1], &token);

Completed in 265 milliseconds

123456789