Searched defs:thumbnail (Results 1 - 6 of 6) sorted by relevance
/frameworks/base/core/java/android/app/ |
H A D | ActivityManager.java | 208 public Bitmap thumbnail; field in class:ActivityManager.RunningTaskInfo 237 if (thumbnail != null) { 239 thumbnail.writeToParcel(dest, 0); 254 thumbnail = Bitmap.CREATOR.createFromParcel(source); 256 thumbnail = null;
|
H A D | ActivityManagerNative.java | 395 Bitmap thumbnail = data.readInt() != 0 398 activityStopped(token, thumbnail, description); 559 Bitmap thumbnail = data.readInt() != 0 562 reportThumbnail(token, thumbnail, description); 1581 Bitmap thumbnail, CharSequence description) throws RemoteException 1587 if (thumbnail != null) { 1589 thumbnail.writeToParcel(data, 0); 1814 Bitmap thumbnail, CharSequence description) throws RemoteException 1820 if (thumbnail != null) { 1822 thumbnail 1580 activityStopped(IBinder token, Bitmap thumbnail, CharSequence description) argument 1813 reportThumbnail(IBinder token, Bitmap thumbnail, CharSequence description) argument [all...] |
H A D | IActivityManager.java | 125 Bitmap thumbnail, CharSequence description) throws RemoteException; 145 Bitmap thumbnail, CharSequence description) throws RemoteException; 124 activityStopped(IBinder token, Bitmap thumbnail, CharSequence description) argument 144 reportThumbnail(IBinder token, Bitmap thumbnail, CharSequence description) argument
|
H A D | ActivityThread.java | 3243 Bitmap thumbnail = null; 3259 thumbnail = Bitmap.createBitmap(w, h, Bitmap.Config.RGB_565); 3260 thumbnail.eraseColor(0); 3261 Canvas cv = new Canvas(thumbnail); 3262 if (!r.activity.onCreateThumbnail(thumbnail, cv)) { 3263 thumbnail = null; 3268 "Unable to create thumbnail of " 3272 thumbnail = null; 3275 return thumbnail; 3364 Bitmap thumbnail; field in class:ActivityThread.StopInfo [all...] |
/frameworks/base/services/java/com/android/server/am/ |
H A D | HistoryRecord.java | 81 Bitmap thumbnail; // icon representation of paused screen field in class:HistoryRecord 100 boolean thumbnailNeeded;// has someone requested a thumbnail?
|
H A D | ActivityManagerService.java | 718 * still report back to a pending thumbnail receiver. 2297 next.thumbnail = null; 5779 // We are now idle. If someone is waiting for a thumbnail from 5821 // Send thumbnail if requested. 5826 Slog.w(TAG, "Exception thrown when requesting thumbnail", e); 5853 // Report back to any thumbnail receivers. 5973 public final void activityStopped(IBinder token, Bitmap thumbnail, argument 5986 r.thumbnail = thumbnail; 6866 ci.thumbnail 7663 reportThumbnail(IBinder token, Bitmap thumbnail, CharSequence description) argument 7671 sendPendingThumbnail(HistoryRecord r, IBinder token, Bitmap thumbnail, CharSequence description, boolean always) argument [all...] |
Completed in 93 milliseconds