/aosp14/frameworks/base/packages/Shell/src/com/android/shell/ |
H A D | BugreportStorageProvider.java | 29 import android.provider.DocumentsContract.Root; 41 Root.COLUMN_ROOT_ID, Root.COLUMN_FLAGS, Root.COLUMN_ICON, Root.COLUMN_TITLE, 42 Root.COLUMN_DOCUMENT_ID, 63 row.add(Root.COLUMN_ROOT_ID, DOC_ID_ROOT); in queryRoots() 64 row.add(Root.COLUMN_FLAGS, Root.FLAG_LOCAL_ONLY); in queryRoots() 65 row.add(Root.COLUMN_ICON, android.R.mipmap.sym_def_app_icon); in queryRoots() 66 row.add(Root.COLUMN_TITLE, getContext().getString(R.string.bugreport_storage_title)); in queryRoots() 67 row.add(Root.COLUMN_DOCUMENT_ID, DOC_ID_ROOT); in queryRoots()
|
/aosp14/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/ |
H A D | TestDocumentsProvider.java | 41 import android.provider.DocumentsContract.Root; 83 Root.COLUMN_ROOT_ID, Root.COLUMN_FLAGS, Root.COLUMN_ICON, 84 Root.COLUMN_TITLE, Root.COLUMN_SUMMARY, Root.COLUMN_DOCUMENT_ID, 85 Root.COLUMN_AVAILABLE_BYTES, 134 row.add(Root.COLUMN_ROOT_ID, MY_ROOT_ID); in queryRoots() 135 row.add(Root.COLUMN_FLAGS, Root.FLAG_SUPPORTS_RECENTS | Root.FLAG_SUPPORTS_CREATE); in queryRoots() 136 row.add(Root.COLUMN_TITLE, "_Test title which is really long"); in queryRoots() 137 row.add(Root.COLUMN_SUMMARY, in queryRoots() 139 row.add(Root.COLUMN_DOCUMENT_ID, MY_DOC_ID); in queryRoots() 140 row.add(Root.COLUMN_AVAILABLE_BYTES, 1024); in queryRoots()
|
H A D | ExternalStorageProvider.java | 43 import android.provider.DocumentsContract.Root; 100 Root.COLUMN_ROOT_ID, Root.COLUMN_FLAGS, Root.COLUMN_ICON, Root.COLUMN_TITLE, 101 Root.COLUMN_DOCUMENT_ID, Root.COLUMN_AVAILABLE_BYTES, Root.COLUMN_QUERY_ARGS 247 root.flags = Root.FLAG_LOCAL_ONLY in updateVolumesLocked() 248 | Root.FLAG_SUPPORTS_SEARCH in updateVolumesLocked() 249 | Root.FLAG_SUPPORTS_IS_CHILD; in updateVolumesLocked() 254 root.flags |= Root.FLAG_REMOVABLE_SD; in updateVolumesLocked() 256 root.flags |= Root.FLAG_REMOVABLE_USB; in updateVolumesLocked() 261 root.flags |= Root.FLAG_SUPPORTS_EJECT; in updateVolumesLocked() 265 root.flags |= Root.FLAG_ADVANCED; in updateVolumesLocked() [all …]
|
/aosp14/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | EventLogTags.logtags | 15 30004 wm_create_task (User|1|5),(Task ID|1|5),(Root Task ID|1|5),(Display Id|1|5) 42 # Root task focus 43 …wm_focused_root_task (User|1|5),(Display Id|1|5),(Focused Root Task Id|1|5),(Last Focused Root Tas… 59 31002 wm_task_moved (TaskId|1|5),(Root Task ID|1|5),(Display Id|1|5),(ToTop|1),(Index|1) 61 31003 wm_task_removed (TaskId|1|5),(Root Task ID|1|5),(Display Id|1|5),(Reason|3)
|
/aosp14/frameworks/base/tools/preload/ |
H A D | Root.java | 38 public class Root implements Serializable { class 151 static Root fromFile(String fileName) in fromFile() 157 Root root = (Root) oin.readObject(); in fromFile()
|
H A D | PrintPsTree.java | 38 Root root = (Root) oin.readObject(); in main()
|
H A D | WritePreloadedClassFile.java | 49 Root root = Root.fromFile(rootFile); in main() 133 private static void addAllClassesFrom(String processName, Root root, in addAllClassesFrom()
|
H A D | Compile.java | 39 Root root = new Root(); in main()
|
H A D | PrintCsv.java | 40 Root root = Root.fromFile(args[0]); in main()
|
H A D | PrintHtmlDiff.java | 36 Root root = Root.fromFile(args[0]); in main()
|
H A D | Android.bp | 24 "Root.java",
|
H A D | MemoryUsage.java | 289 Root root = Root.fromFile(args[0]); in main()
|
/aosp14/frameworks/base/core/java/android/window/ |
H A D | TransitionInfo.java | 199 private final ArrayList<Root> mRoots = new ArrayList<>(); 216 in.readTypedList(mRoots, Root.CREATOR); in TransitionInfo() 261 public void addRoot(Root other) { in addRoot() 293 public Root getRoot(int idx) { in getRoot() 1269 private Root(Parcel in) { in Root() method in TransitionInfo.Root 1277 private Root localRemoteCopy() { in localRemoteCopy() 1308 public static final Creator<Root> CREATOR = 1309 new Creator<Root>() { 1312 return new Root(in); 1316 public Root[] newArray(int size) { [all …]
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/activityembedding/ |
H A D | ActivityEmbeddingAnimationAdapter.java | 76 @NonNull TransitionInfo.Change change, @NonNull TransitionInfo.Root root) { in ActivityEmbeddingAnimationAdapter() 88 @NonNull Rect wholeAnimationBounds, @NonNull TransitionInfo.Root root) { in ActivityEmbeddingAnimationAdapter() 195 @NonNull SurfaceControl snapshotLeash, @NonNull TransitionInfo.Root root) { in SnapshotAdapter() 223 @NonNull TransitionInfo.Root root) { in BoundsChangeAdapter()
|
H A D | ActivityEmbeddingAnimationRunner.java | 428 final TransitionInfo.Root root = TransitionUtil.getRootFor(change, info); in createChangeAnimationAdapters() 571 final TransitionInfo.Root root = TransitionUtil.getRootFor(change, info); in prepareForJumpCut()
|
/aosp14/frameworks/base/core/java/android/provider/ |
H A D | DocumentsProvider.java | 64 import android.provider.DocumentsContract.Root; 967 return DocumentsContract.Root.MIME_TYPE_ITEM; in getType() 988 return DocumentsContract.Root.MIME_TYPE_ITEM; in getTypeAnonymous()
|
H A D | DocumentsContract.java | 595 public final static class Root { class in DocumentsContract 596 private Root() { in Root() method in DocumentsContract.Root
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/util/ |
H A D | TransitionUtil.java | 360 public static TransitionInfo.Root getRootFor(@NonNull TransitionInfo.Change change, in getRootFor()
|
/aosp14/frameworks/base/core/java/android/os/storage/ |
H A D | VolumeInfo.java | 513 intent.setDataAndType(uri, DocumentsContract.Root.MIME_TYPE_ITEM); in buildBrowseIntentForUser()
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/ |
H A D | PipTransition.java | 569 final TransitionInfo.Root root = TransitionUtil.getRootFor(pipChange, info); in startExitAnimation()
|
/aosp14/frameworks/base/proto/src/metrics_constants/ |
H A D | metrics_constants.proto | 449 // OPEN: Settings (Root page)
|
/aosp14/frameworks/base/core/api/ |
H A D | system-current.txt | 11472 public static final class DocumentsContract.Root {
|
H A D | current.txt | 36915 public static final class DocumentsContract.Root {
|
/aosp14/frameworks/base/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o.txt | 41838 Landroid/provider/DocumentsContract$Root;-><init>()V 41839 Landroid/provider/DocumentsContract$Root;->FLAG_EMPTY:I 41840 Landroid/provider/DocumentsContract$Root;->FLAG_HAS_SETTINGS:I 41841 Landroid/provider/DocumentsContract$Root;->FLAG_REMOVABLE_SD:I 41842 Landroid/provider/DocumentsContract$Root;->FLAG_REMOVABLE_USB:I
|
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
H A D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |