Searched refs:token (Results 176 - 200 of 249) sorted by relevance

12345678910

/frameworks/base/core/java/android/widget/
H A DQuickContactBadge.java335 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
341 switch(token) {
H A DPopupWindow.java845 * @param parent a parent view to get the {@link android.view.View#getWindowToken()} token from
857 * @param token Window token to use for creating the new window
865 public void showAtLocation(IBinder token, int gravity, int x, int y) { argument
875 WindowManager.LayoutParams p = createPopupLayout(token);
1073 * @param token the window token used to bind the popup's window
1077 private WindowManager.LayoutParams createPopupLayout(IBinder token) { argument
1095 p.token = token;
[all...]
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();
/frameworks/base/services/core/java/com/android/server/display/
H A DLocalDisplayAdapter.java228 final IBinder token = getDisplayTokenLocked();
242 SurfaceControl.setDisplayPowerMode(token, mode);
/frameworks/base/core/java/android/view/
H A DWindowManager.java54 * {@link LayoutParams} {@link LayoutParams#token}
151 * windows. For these types of windows, the {@link #token} must be
152 * set to the token of the activity they are a part of (this will
153 * normally be done for you if {@link #token} is null).
157 * window. For these types of windows, the {@link #token} must be
158 * the token of the window it is attached to.
242 * Window type: a normal application window. The {@link #token} must be
243 * an Activity token identifying who the window belongs to.
263 * Start of types of sub-windows. The {@link #token} of these windows
1403 public IBinder token field in class:WindowManager.LayoutParams
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowAnimator.java155 final WindowToken token = wallpaperTokens.get(i);
156 final int numWindows = token.windows.size();
158 final WindowState wallpaper = token.windows.get(j);
167 if (WindowManagerService.DEBUG_WALLPAPER_LIGHT && !token.hidden) Slog.d(TAG,
168 "Hiding wallpaper " + token + " from " + w
171 token.hidden = true;
470 // If this window's app token is running a detached wallpaper
517 // The token has now changed state to having all
H A DAccessibilityController.java1011 addedWindows.add(window.token);
1046 addedWindows.add(window.token);
1067 // Leave the child token list if empty.
1142 window.token = windowState.mClient.asBinder();
1194 if (oldWindow.token == null) {
1195 if (newWindow.token != null) {
1198 } else if (!oldWindow.token.equals(newWindow.token)) {
H A DAppWindowAnimator.java44 // Have we been asked to have this token keep the screen frozen?
53 // Offset to the window of all layers in the token, for use by
213 // token's anim layer.
321 mService.mActivityManager.notifyLaunchTaskBehindComplete(mAppToken.token);
330 mService.mActivityManager.notifyEnterAnimationComplete(mAppToken.token);
/frameworks/native/services/inputflinger/
H A DInputReader.h370 ssize_t repeat, int32_t token) = 0;
371 virtual void cancelVibrate(int32_t deviceId, int32_t token) = 0;
439 ssize_t repeat, int32_t token);
440 virtual void cancelVibrate(int32_t deviceId, int32_t token);
573 void vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat, int32_t token);
574 void cancelVibrate(int32_t token);
974 int32_t token);
975 virtual void cancelVibrate(int32_t token);
1023 int32_t token);
1024 virtual void cancelVibrate(int32_t token);
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DMountService.java268 IObbActionListener token, int nonce) {
277 this.token = token;
289 final IObbActionListener token; field in class:MountService.ObbState
291 // Identifier to pass back to the token
295 return token.asBinder();
320 sb.append(",token=").append(token);
2101 String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) {
2104 Preconditions.checkNotNull(token, "toke
267 ObbState(String rawPath, String canonicalPath, int callingUid, IObbActionListener token, int nonce) argument
2100 mountObb( String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) argument
2116 unmountObb(String rawPath, boolean force, IObbActionListener token, int nonce) argument
[all...]
/frameworks/native/libs/binder/
H A DIPCThreadState.cpp376 int64_t token = ((int64_t)mCallingUid<<32) | mCallingPid; local
378 return token;
401 void IPCThreadState::restoreCallingIdentity(int64_t token) argument
403 mCallingUid = (int)(token>>32);
404 mCallingPid = (int)token;
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityStack.java404 * @param token If non-null, any history records matching this token will be skipped.
409 final ActivityRecord topRunningActivityLocked(IBinder token, int taskId) { argument
419 if (!r.finishing && (token != r.appToken) && okToShowLocked(r)) {
458 ActivityRecord isInStackLocked(IBinder token) { argument
459 final ActivityRecord r = ActivityRecord.forToken(token);
913 final void activityPausedLocked(IBinder token, boolean timeout) { argument
915 TAG, "Activity paused: token=" + token + ", timeout=" + timeout);
917 final ActivityRecord r = isInStackLocked(token);
2570 requestFinishActivityLocked(IBinder token, int resultCode, Intent resultData, String reason, boolean oomAdj) argument
2895 navigateUpToLocked(IBinder token, Intent destIntent, int resultCode, Intent resultData) argument
3279 activityDestroyedLocked(IBinder token) argument
3325 backgroundResourcesReleased(IBinder token) argument
3817 willActivityBeVisibleLocked(IBinder token) argument
[all...]
/frameworks/base/cmds/content/src/com/android/commands/content/
H A DContent.java409 IBinder token = new Binder();
412 providerName, mUserId, token);
420 activityManager.removeContentProviderExternal(providerName, token);
/frameworks/base/media/java/android/media/tv/
H A DTvView.java136 public void onFinishedInputEvent(Object token, boolean handled) {
138 Log.d(TAG, "onFinishedInputEvent(token=" + token + ", handled=" + handled + ")");
144 InputEvent event = (InputEvent) token;
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkStatsService.java586 final long token = Binder.clearCallingIdentity();
591 Binder.restoreCallingIdentity(token);
656 final long token = Binder.clearCallingIdentity();
660 Binder.restoreCallingIdentity(token);
1265 final long token = Binder.clearCallingIdentity();
1272 Binder.restoreCallingIdentity(token);
/frameworks/base/core/java/android/transition/
H A DTransition.java294 String token = st.nextToken().trim();
295 if (MATCH_ID_STR.equalsIgnoreCase(token)) {
297 } else if (MATCH_INSTANCE_STR.equalsIgnoreCase(token)) {
299 } else if (MATCH_NAME_STR.equalsIgnoreCase(token)) {
301 } else if (MATCH_VIEW_NAME_STR.equalsIgnoreCase(token)) {
303 } else if (MATCH_ITEM_ID_STR.equalsIgnoreCase(token)) {
305 } else if (token.isEmpty()) {
311 throw new InflateException("Unknown match type in matchOrder: '" + token + "'");
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationManagerService.java1241 * @param token The binder for the listener, to check that the caller is allowed
1244 public void cancelNotificationsFromListener(INotificationListener token, String[] keys) {
1250 final ManagedServiceInfo info = mListeners.checkServiceTokenLocked(token);
1289 * @param token The binder for the listener, to check that the caller is allowed
1292 public void cancelNotificationFromListener(INotificationListener token, String pkg,
1299 final ManagedServiceInfo info = mListeners.checkServiceTokenLocked(token);
1319 * @param token The binder for the listener, to check that the caller is allowed
1326 INotificationListener token, String[] keys, int trim) {
1328 final ManagedServiceInfo info = mListeners.checkServiceTokenLocked(token);
1349 public void requestHintsFromListener(INotificationListener token, in
1499 getActiveNotificationKeys(INotificationListener token) argument
[all...]
/frameworks/testing/support/src/android/support/test/runner/
H A DAndroidJUnitRunner.java552 IBinder token,
571 token,
550 newActivity(Class<?> clazz, Context context, IBinder token, Application application, Intent intent, ActivityInfo info, CharSequence title, Activity parent, String id, Object lastNonConfigurationInstance) argument
/frameworks/base/core/java/com/android/internal/os/
H A DProcessCpuTracker.java591 String token = st.nextToken();
593 long val = Long.parseLong(token);
595 token = st.nextToken();
596 val = Long.parseLong(token);
/frameworks/base/core/jni/
H A Dandroid_util_Binder.cpp760 static void android_os_Binder_restoreCallingIdentity(JNIEnv* env, jobject clazz, jlong token) argument
763 int uid = (int)(token>>32);
767 sprintf(buf, "Restoring bad calling ident: 0x%" PRIx64, token);
771 IPCThreadState::self()->restoreCallingIdentity(token);
/frameworks/base/packages/BackupRestoreConfirmation/src/com/android/backupconfirm/
H A DBackupRestoreConfirmation.java154 Slog.e(TAG, "Backup/restore confirmation requested but no token passed!");
234 void sendAcknowledgement(int token, boolean allow, IFullBackupRestoreObserver observer) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarWindowView.java111 lp.token = windowToken;
/frameworks/base/services/core/java/com/android/server/media/
H A DMediaSessionRecord.java1061 final long token = Binder.clearCallingIdentity();
1065 Binder.restoreCallingIdentity(token);
1072 final long token = Binder.clearCallingIdentity();
1076 Binder.restoreCallingIdentity(token);
/frameworks/native/include/input/
H A DKeyCharacterMap.h210 status_t parseModifier(const String8& token, int32_t* outMetaState);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiMonitor.java1119 for (String token : dataTokens) {
1120 String[] nameValue = token.split("=");
1230 for (String token : dataTokens) {
1231 String[] nameValue = token.split("=");

Completed in 812 milliseconds

12345678910