/packages/apps/Settings/src/com/android/settings/deviceinfo/ |
D | StorageSettings.java | 121 public void onVolumeStateChanged(VolumeInfo vol, int oldState, int newState) { 122 if (isInteresting(vol)) { 133 private static boolean isInteresting(VolumeInfo vol) { in isInteresting() argument 134 switch (vol.getType()) { in isInteresting() 161 for (VolumeInfo vol : volumes) { in refresh() 162 if (vol.getType() == VolumeInfo.TYPE_PRIVATE) { in refresh() 164 if (vol.getState() == VolumeInfo.STATE_UNMOUNTABLE) { in refresh() 166 new StorageVolumePreference(context, vol, 0)); in refresh() 168 final long volumeTotalBytes = PrivateStorageInfo.getTotalSize(vol, in refresh() 171 new StorageVolumePreference(context, vol, volumeTotalBytes)); in refresh() [all …]
|
D | StorageUnmountReceiver.java | 36 final VolumeInfo vol = storage.findVolumeById(volId); in onReceive() local 37 if (vol != null) { in onReceive() 38 new UnmountTask(context, vol).execute(); in onReceive()
|
D | StorageWizardBase.java | 251 for (VolumeInfo vol : vols) { in findFirstVolume() 252 if (Objects.equals(mDisk.getId(), vol.getDiskId()) && (vol.getType() == type) in findFirstVolume() 253 && (vol.getState() == VolumeInfo.STATE_MOUNTED)) { in findFirstVolume() 254 return vol; in findFirstVolume()
|
D | PublicVolumeSettings.java | 246 public void onVolumeStateChanged(VolumeInfo vol, int oldState, int newState) { 247 if (Objects.equals(mVolume.getId(), vol.getId())) { 248 mVolume = vol;
|
D | PrivateVolumeSettings.java | 677 public void onVolumeStateChanged(VolumeInfo vol, int oldState, int newState) { 678 if (Objects.equals(mVolume.getId(), vol.getId())) { 679 mVolume = vol; 697 public static void show(PrivateVolumeSettings parent, VolumeInfo vol) { in show() argument 703 args.putString(VolumeRecord.EXTRA_FS_UUID, vol.getFsUuid()); in show() 719 final VolumeInfo vol = storageManager.findVolumeByUuid(fsUuid); in onCreateDialog() local
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/deviceinfo/ |
D | StorageSettings.java | 121 public void onVolumeStateChanged(VolumeInfo vol, int oldState, int newState) { 122 if (isInteresting(vol)) { 133 private static boolean isInteresting(VolumeInfo vol) { in isInteresting() argument 134 switch (vol.getType()) { in isInteresting() 161 for (VolumeInfo vol : volumes) { in refresh() 162 if (vol.getType() == VolumeInfo.TYPE_PRIVATE) { in refresh() 164 if (vol.getState() == VolumeInfo.STATE_UNMOUNTABLE) { in refresh() 166 new StorageVolumePreference(context, vol, 0)); in refresh() 168 final long volumeTotalBytes = PrivateStorageInfo.getTotalSize(vol, in refresh() 171 new StorageVolumePreference(context, vol, volumeTotalBytes)); in refresh() [all …]
|
D | StorageWizardBase.java | 243 for (VolumeInfo vol : vols) { in findFirstVolume() 244 if (Objects.equals(mDisk.getId(), vol.getDiskId()) && (vol.getType() == type) in findFirstVolume() 245 && (vol.getState() == VolumeInfo.STATE_MOUNTED)) { in findFirstVolume() 246 return vol; in findFirstVolume()
|
D | StorageUnmountReceiver.java | 36 final VolumeInfo vol = storage.findVolumeById(volId); in onReceive() local 37 if (vol != null) { in onReceive() 38 new UnmountTask(context, vol).execute(); in onReceive()
|
D | PublicVolumeSettings.java | 246 public void onVolumeStateChanged(VolumeInfo vol, int oldState, int newState) { 247 if (Objects.equals(mVolume.getId(), vol.getId())) { 248 mVolume = vol;
|
D | PrivateVolumeSettings.java | 677 public void onVolumeStateChanged(VolumeInfo vol, int oldState, int newState) { 678 if (Objects.equals(mVolume.getId(), vol.getId())) { 679 mVolume = vol; 697 public static void show(PrivateVolumeSettings parent, VolumeInfo vol) { in show() argument 703 args.putString(VolumeRecord.EXTRA_FS_UUID, vol.getFsUuid()); in show() 719 final VolumeInfo vol = storageManager.findVolumeByUuid(fsUuid); in onCreateDialog() local
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/ |
D | StorageSummaryFragment.java | 125 for (final VolumeInfo vol : volumes) { in refresh() 126 if (vol.getType() == VolumeInfo.TYPE_PRIVATE) { in refresh() 127 privateVolumes.add(vol); in refresh() 128 } else if (vol.getType() == VolumeInfo.TYPE_PUBLIC) { in refresh() 129 publicVolumes.add(vol); in refresh() 131 Log.d(TAG, "Skipping volume " + vol.toString()); in refresh() 254 private String getSizeString(VolumeInfo vol) { in getSizeString() argument 255 final File path = vol.getPath(); in getSizeString() 256 if (vol.isMountedReadable() && path != null) { in getSizeString() 304 public void onVolumeStateChanged(VolumeInfo vol, int oldState, int newState) { in onVolumeStateChanged() argument
|
/packages/apps/Car/SystemUpdater/src/com/android/car/systemupdater/ |
D | DeviceListFragment.java | 70 public void onVolumeStateChanged(VolumeInfo vol, int oldState, int newState) { 73 "onVolumeMetadataChanged %d %d %s", oldState, newState, vol.toString())); 155 for (VolumeInfo vol : vols) { in showMountedVolumes() 156 File path = vol.getPathForUser(getActivity().getUserId()); in showMountedVolumes() 157 if (vol.getState() == VolumeInfo.STATE_MOUNTED in showMountedVolumes() 158 && vol.getType() == VolumeInfo.TYPE_PUBLIC in showMountedVolumes()
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/ |
D | SettingsStorageService.java | 174 for (final VolumeInfo vol : vols) { in findPrivateVolume() 175 if (TextUtils.equals(diskId, vol.getDiskId()) in findPrivateVolume() 176 && (vol.getType() == VolumeInfo.TYPE_PRIVATE)) { in findPrivateVolume() 177 return vol; in findPrivateVolume()
|
D | FormatActivity.java | 143 for (final VolumeInfo vol : vols) { in findVolume() 144 if (TextUtils.equals(diskId, vol.getDiskId()) in findVolume() 145 && (vol.getType() == VolumeInfo.TYPE_PRIVATE)) { in findVolume() 146 return vol; in findVolume()
|
D | StorageFragment.java | 254 public void onVolumeStateChanged(VolumeInfo vol, int oldState, int newState) { in onVolumeStateChanged() argument 255 mVolumeInfo = vol; in onVolumeStateChanged()
|
D | NewStorageActivity.java | 119 public void onVolumeStateChanged(VolumeInfo vol, int oldState, int newState) {
|
/packages/modules/ExtServices/src/android/ext/services/storage/ |
D | CacheQuotaServiceImpl.java | 127 final VolumeInfo vol = storageManager.findVolumeByUuid(uuid); in getReservedCacheSize() local 128 freeBytes = vol.getPath().getUsableSpace(); in getReservedCacheSize()
|
/packages/providers/MediaProvider/src/com/android/providers/media/ |
D | MediaProvider.java | 727 final StorageVolume vol = mStorageManager.getStorageVolume(path); in ensureDefaultFolders() local 729 if (VolumeInfo.ID_EMULATED_INTERNAL.equals(vol.getId())) { in ensureDefaultFolders() 732 key = "created_default_folders_" + vol.getNormalizedUuid(); in ensureDefaultFolders() 739 final File folder = new File(vol.getPathFile(), folderName); in ensureDefaultFolders() 802 public void onVolumeStateChanged(VolumeInfo vol, int oldState, int newState) { in onCreate() 902 final VolumeInfo vol = mStorageManager.findVolumeByUuid(rec.fsUuid); in onIdleMaintenance() local 903 if (vol != null && vol.isMountedReadable()) continue; in onIdleMaintenance()
|
/packages/inputmethods/LatinIME/dictionaries/ |
D | sl_wordlist.combined.gz | 1dictionary=main:sl,locale=sl,description=Slovenščina,date=1393228152, ... |
D | cs_wordlist.combined.gz | 1dictionary=main:cs,locale=cs,description=Čeština,date=1393228134, ... |
D | fr_wordlist.combined.gz | 1dictionary=main:fr,locale=fr,description=Français,date=1414726264, ... |
D | es_wordlist.combined.gz | 1dictionary=main:es,locale=es,description=Español,date=1414726268, ... |
D | pt_BR_wordlist.combined.gz | 1dictionary=main:pt_br,locale=pt_BR,description=Português (Brasil),date ... |
D | pt_PT_wordlist.combined.gz |
|
D | lv_wordlist.combined.gz |
|