Searched refs:token (Results 226 - 250 of 317) sorted by relevance

1234567891011>>

/frameworks/native/services/inputflinger/
H A DInputReader.h376 ssize_t repeat, int32_t token) = 0;
377 virtual void cancelVibrate(int32_t deviceId, int32_t token) = 0;
475 ssize_t repeat, int32_t token);
476 virtual void cancelVibrate(int32_t deviceId, int32_t token);
619 void vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat, int32_t token);
620 void cancelVibrate(int32_t token);
1035 int32_t token);
1036 virtual void cancelVibrate(int32_t token);
1089 int32_t token);
1090 virtual void cancelVibrate(int32_t token);
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DAccessibilityController.java1058 addedWindows.add(window.token);
1107 addedWindows.add(window.token);
1128 // Leave the child token list if empty.
1204 window.token = windowState.mClient.asBinder();
1258 if (oldWindow.token == null) {
1259 if (newWindow.token != null) {
1262 } else if (!oldWindow.token.equals(newWindow.token)) {
H A DBoundsAnimationController.java63 public void onAppTransitionFinishedLocked(IBinder token) { argument
H A DWindowState.java497 WindowState(WindowManagerService service, Session s, IWindow c, WindowToken token, argument
504 mToken = token;
530 + " token=" + token + " (" + mAttrs.token + ")" + " params=" + a);
609 WindowToken parent = mService.mTokenMap.get(appToken.token);
645 TAG, "Attaching " + this + " token=" + mToken
1159 * methods as they perform additional checks on the app token.
1169 * of running an exit animation that will remove the surface, or its app token has been hidden.
1196 * Is this window visible, ignoring its app token
[all...]
/frameworks/native/libs/binder/
H A DIPCThreadState.cpp366 int64_t token = ((int64_t)mCallingUid<<32) | mCallingPid; local
368 return token;
391 void IPCThreadState::restoreCallingIdentity(int64_t token) argument
393 mCallingUid = (int)(token>>32);
394 mCallingPid = (int)token;
/frameworks/base/cmds/content/src/com/android/commands/content/
H A DContent.java410 IBinder token = new Binder();
413 providerName, mUserId, token);
421 activityManager.removeContentProviderExternal(providerName, token);
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStoreCipherSpiBase.java259 // Store operation token and handle regardless of the error code returned by KeyStore to
261 mOperationToken = opResult.token;
278 throw new ProviderException("Keystore returned null operation token");
285 mMainDataStreamer = createMainDataStreamer(mKeyStore, opResult.token);
287 createAdditionalAuthenticationDataStreamer(mKeyStore, opResult.token);
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java370 * Take care of attaching the given window token provided by the system.
372 public void attachToken(IBinder token) { argument
374 mToken = token;
375 mWindow.setToken(token);
500 public void updateExtractedText(int token, ExtractedText text) { argument
504 onUpdateExtractedText(token, text);
1841 public void onUpdateExtractedText(int token, ExtractedText text) { argument
1842 if (mExtractedToken != token) {
2525 req.token = mExtractedToken;
/frameworks/base/core/java/android/transition/
H A DTransition.java295 String token = st.nextToken().trim();
296 if (MATCH_ID_STR.equalsIgnoreCase(token)) {
298 } else if (MATCH_INSTANCE_STR.equalsIgnoreCase(token)) {
300 } else if (MATCH_NAME_STR.equalsIgnoreCase(token)) {
302 } else if (MATCH_VIEW_NAME_STR.equalsIgnoreCase(token)) {
304 } else if (MATCH_ITEM_ID_STR.equalsIgnoreCase(token)) {
306 } else if (token.isEmpty()) {
312 throw new InflateException("Unknown match type in matchOrder: '" + token + "'");
/frameworks/base/core/java/android/widget/
H A DZoomButtonsController.java164 * If setVisible(true) is called and the owner view's window token is null,
347 * We need a window token to show ourselves, maybe the owner's
366 if (mContainerLayoutParams.token == null) {
367 mContainerLayoutParams.token = mOwnerView.getWindowToken();
H A DPopupWindow.java1113 * @param parent a parent view to get the {@link android.view.View#getWindowToken()} token from
1125 * @param token Window token to use for creating the new window
1133 public void showAtLocation(IBinder token, int gravity, int x, int y) { argument
1145 final WindowManager.LayoutParams p = createPopupLayoutParams(token);
1407 * @param token the window token used to bind the popup's window
1411 private WindowManager.LayoutParams createPopupLayoutParams(IBinder token) { argument
1421 p.token = token;
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DMmsServiceBroker.java506 long token = Binder.clearCallingIdentity();
520 Binder.restoreCallingIdentity(token);
H A DNetworkScoreService.java345 long token = Binder.clearCallingIdentity();
378 Binder.restoreCallingIdentity(token);
H A DBluetoothManagerService.java502 public int updateBleAppCount(IBinder token, boolean enable) { argument
504 ClientDeathRecipient r = mBleApps.get(token);
508 token.linkToDeath(deathRec, 0);
512 mBleApps.put(token, deathRec);
520 ClientDeathRecipient r = mBleApps.get(token);
523 token.unlinkToDeath(r, 0);
524 mBleApps.remove(token);
/frameworks/base/services/core/java/com/android/server/input/
H A DInputManagerService.java216 int repeat, int token);
217 private static native void nativeCancelVibrate(long ptr, int deviceId, int token); argument
1629 public void vibrate(int deviceId, long[] pattern, int repeat, IBinder token) { argument
1636 v = mVibratorTokens.get(token);
1638 v = new VibratorToken(deviceId, token, mNextVibratorTokenValue++);
1640 token.linkToDeath(v, 0);
1645 mVibratorTokens.put(token, v);
1657 public void cancelVibrate(int deviceId, IBinder token) { argument
1660 v = mVibratorTokens.get(token);
2217 public VibratorToken(int deviceId, IBinder token, in argument
215 nativeVibrate(long ptr, int deviceId, long[] pattern, int repeat, int token) argument
[all...]
/frameworks/av/media/libstagefright/foundation/
H A DAMessage.cpp375 sp<AReplyToken> token = looper->createReplyToken(); local
376 if (token == NULL) {
377 ALOGE("failed to create reply token");
380 setObject("replyID", token);
383 return looper->awaitResponse(token, response);
388 ALOGW("failed to post reply to a NULL token");
/frameworks/base/core/java/android/os/storage/
H A DStorageManager.java1032 public void unlockUserKey(int userId, int serialNumber, byte[] token, byte[] secret) { argument
1034 mMountService.unlockUserKey(userId, serialNumber, token, secret);
1077 final long token = Binder.clearCallingIdentity();
1083 Binder.restoreCallingIdentity(token);
/frameworks/base/core/java/android/service/quicksettings/
H A DTileService.java216 dialog.getWindow().getAttributes().token = mToken;
/frameworks/base/core/jni/
H A Dandroid_util_Binder.cpp779 static void android_os_Binder_restoreCallingIdentity(JNIEnv* env, jobject clazz, jlong token) argument
782 int uid = (int)(token>>32);
786 sprintf(buf, "Restoring bad calling ident: 0x%" PRIx64, token);
790 IPCThreadState::self()->restoreCallingIdentity(token);
/frameworks/base/services/core/java/com/android/server/media/
H A DMediaSessionRecord.java1157 final long token = Binder.clearCallingIdentity();
1161 Binder.restoreCallingIdentity(token);
1169 final long token = Binder.clearCallingIdentity();
1173 Binder.restoreCallingIdentity(token);
/frameworks/base/services/core/java/com/android/server/trust/
H A DTrustManagerService.java719 long token = Binder.clearCallingIdentity();
726 Binder.restoreCallingIdentity(token);
735 long token = Binder.clearCallingIdentity();
742 Binder.restoreCallingIdentity(token);
/frameworks/native/include/input/
H A DKeyCharacterMap.h221 status_t parseModifier(const String8& token, int32_t* outMetaState);
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncStorageEngine.java1981 int token;
1982 while ((token=in.readInt()) != STATUS_FILE_END) {
1983 if (token == STATUS_FILE_ITEM) {
1994 Slog.w(TAG, "Unknown status token: " + token);
2082 int token;
2084 while ((token=in.readInt()) != STATISTICS_FILE_END) {
2085 if (token == STATISTICS_FILE_ITEM
2086 || token == STATISTICS_FILE_ITEM_OLD) {
2088 if (token
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DShortcutService.java1066 final long token = injectClearCallingIdentity();
1137 injectRestoreCallingIdentity(token);
2076 final long token = injectClearCallingIdentity();
2085 injectRestoreCallingIdentity(token);
2093 final long token = injectClearCallingIdentity();
2103 injectRestoreCallingIdentity(token);
2114 final long token = injectClearCallingIdentity();
2122 injectRestoreCallingIdentity(token);
2585 void injectRestoreCallingIdentity(long token) { argument
2586 Binder.restoreCallingIdentity(token);
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiNative.java1348 for (String token : tokens) {
1349 if (token.startsWith("p2p_device_address=")) {
1350 String[] nameValue = token.split("=");
1369 for (String token : tokens) {
1370 if (token.startsWith("group_capab=")) {
1371 String[] nameValue = token.split("=");
1395 for (String token : tokens) {
1396 if (token.startsWith(key)) {
1397 String[] nameValue = token.split("=");

Completed in 705 milliseconds

1234567891011>>