Searched refs:volumes (Results 1 - 11 of 11) sorted by relevance

/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DAudioPolicyConfig.h43 VolumeCurvesCollection *volumes = nullptr)
48 mVolumeCurves(volumes),
52 void setVolumes(const VolumeCurvesCollection &volumes) argument
55 *mVolumeCurves = volumes;
/frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/examples/
H A DAndroid.mk101 $(LOCAL_PATH)/Settings/volumes.pfw
128 $(LOCAL_PATH)/Settings/volumes.pfw
158 $(LOCAL_PATH)/Settings/volumes.pfw
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/
H A DVrActivity.java63 String dir = "/sdcard/Download/volumes";
174 String[] volumes = mLoader.getNames();
178 for (int i = 0; i < volumes.length; i++) {
179 menu.add(0, Menu.FIRST + i, Menu.NONE, volumes[i]);
/frameworks/base/core/java/android/os/
H A DEnvironment.java87 final StorageVolume[] volumes = StorageManager.getVolumeList(mUserId,
89 final File[] files = new File[volumes.length];
90 for (int i = 0; i < volumes.length; i++) {
91 files[i] = volumes[i].getPathFile();
/frameworks/base/core/java/android/os/storage/
H A DStorageManager.java745 // SAF to write to transient volumes.)
843 private static @Nullable StorageVolume getStorageVolume(StorageVolume[] volumes, File file) { argument
853 for (StorageVolume volume : volumes) {
882 * Return the list of shared/external storage volumes available to the
884 * any attached external volumes including SD cards and USB drives.
941 * Returns list of paths for all mountable volumes.
946 StorageVolume[] volumes = getVolumeList();
947 int count = volumes.length;
950 paths[i] = volumes[i].getPath();
961 public static @NonNull StorageVolume getPrimaryVolume(StorageVolume[] volumes) { argument
[all...]
H A DIMountService.java1954 VolumeInfo[] volumes = getVolumes(_flags);
1956 reply.writeTypedArray(volumes, android.os.Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
1962 VolumeRecord[] volumes = getVolumeRecords(_flags);
1964 reply.writeTypedArray(volumes, android.os.Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
2349 * Decrypts any encrypted volumes.
2371 * Returns list of all mountable volumes.
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DOpenExternalDirectoryActivity.java202 final List<VolumeInfo> volumes = sm.getVolumes();
203 if (DEBUG) Log.d(TAG, "Number of volumes: " + volumes.size());
206 for (VolumeInfo volume : volumes) {
227 // using reflection or the list of mounted volumes changed.
228 Log.e(TAG, "Didn't find right volume for '" + storageVolume.dump() + "' on " + volumes);
/frameworks/wilhelm/src/android/
H A DMediaPlayer_to_android.cpp585 float volumes[2]; local
587 android_player_volumeUpdate(volumes, &mp->mVolume, mp->mNumChannels, 1.0f, NULL);
588 float leftVol = volumes[0], rightVol = volumes[1];
H A DAudioPlayer_to_android.cpp234 // compute volumes without setting
236 float volumes[2]; local
237 android_player_volumeUpdate(volumes, &ap->mVolume, channelCount, ap->mAmplFromDirectLevel,
239 float leftVol = volumes[0], rightVol = volumes[1];
267 // volumes, but setting volumes is handled by the caller.
336 // return the computed volumes
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DSerializer.cpp513 const char *const VolumeTraits::collectionTag = "volumes";
630 VolumeTraits::Collection volumes; local
631 deserializeCollection<VolumeTraits>(doc, cur, volumes, &config);
632 config.setVolumes(volumes);
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
H A DExternalStorageProvider.java133 final List<VolumeInfo> volumes = mStorageManager.getVolumes();
134 for (VolumeInfo volume : volumes) {
231 // Only report bytes on *volumes*...as a matter of policy.
253 Log.d(TAG, "After updating volumes, found " + mRoots.size() + " active roots");

Completed in 573 milliseconds