HomeSort by relevance Sort by last modified time
    Searched refs:volumes (Results 1 - 13 of 13) sorted by null

  /bootable/recovery/mtdutils/
mounts.c 34 MountedVolume *volumes; member in struct:__anon678
40 NULL, // volumes
67 if (g_mounts_state.volumes == NULL) {
69 MountedVolume *volumes = malloc(numv * sizeof(*volumes)); local
70 if (volumes == NULL) {
74 g_mounts_state.volumes = volumes;
76 memset(volumes, 0, numv * sizeof(*volumes));
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/macosx/
SDL_syscdrom.c 31 static FSVolumeRefNum* volumes; variable
71 if (ListTrackFiles (volumes[cdrom->id], tracks[cdrom->id], cdrom->numtracks) < 0)
160 volumes = NULL;
187 mounted audio CD volumes, rather than
192 /* Find out how many cd volumes are mounted */
196 If there are no volumes, fake a cd device
208 /* Allocate space for volumes */
209 volumes = (FSVolumeRefNum*) SDL_calloc (1, sizeof(*volumes) * SDL_numcds);
210 if (volumes == NULL)
    [all...]
CDPlayer.h 61 int DetectAudioCDVolumes (FSVolumeRefNum *volumes, int numVolumes);
CDPlayer.c 92 int DetectAudioCDVolumes(FSVolumeRefNum *volumes, int numVolumes)
117 if (volumes != NULL && cdVolumeCount < numVolumes)
118 volumes[cdVolumeCount] = actualVolume;
  /external/bluetooth/glib/gio/
gunixvolumemonitor.c 50 GList *volumes; member in struct:_GUnixVolumeMonitor
85 g_list_foreach (monitor->volumes, (GFunc)g_object_unref, NULL);
86 g_list_free (monitor->volumes);
99 g_list_foreach (monitor->volumes, (GFunc)g_object_unref, NULL);
100 g_list_free (monitor->volumes);
101 monitor->volumes = NULL;
132 l = g_list_copy (monitor->volumes);
208 /* Update both to make sure volumes are created before mounts */
219 /* Update both to make sure volumes are created before mounts */
314 for (l = monitor->volumes; l != NULL; l = l->next
    [all...]
gwin32volumemonitor.c 45 GList *volumes; member in struct:_GWin32VolumeMonitor
126 /* deliver accesible (aka 'mounted') volumes */
154 /* actually 'mounting' volumes is out of GIOs business on win32, so no volumes are delivered either */
194 * QueryDosDevice call below. Probably this code is confusing volumes
196 * to volumes.
  /packages/providers/MediaProvider/src/com/android/providers/media/
MtpService.java 112 StorageVolume[] volumes = mStorageManager.getVolumeList(); local
113 mVolumes = volumes;
114 for (int i = 0; i < volumes.length; i++) {
115 String path = volumes[i].getPath();
  /frameworks/base/core/java/android/os/
Environment.java 48 Parcelable[] volumes = mountService.getVolumeList(); local
49 mPrimaryVolume = (StorageVolume)volumes[0];
  /frameworks/base/core/java/android/os/storage/
StorageManager.java 546 * Returns list of all mountable volumes.
566 * Returns list of paths for all mountable volumes.
570 StorageVolume[] volumes = getVolumeList(); local
571 if (volumes == null) return null;
572 int count = volumes.length;
575 paths[i] = volumes[i].getPath();
  /system/media/wilhelm/src/android/
MediaPlayer_to_android.cpp 567 float volumes[2]; local
569 android_player_volumeUpdate(volumes, &mp->mVolume, mp->mNumChannels, 1.0f, NULL);
570 float leftVol = volumes[0], rightVol = volumes[1];
AudioPlayer_to_android.cpp 250 // compute volumes without setting
252 float volumes[2]; local
253 android_player_volumeUpdate(volumes, &ap->mVolume, channelCount, ap->mAmplFromDirectLevel,
255 float leftVol = volumes[0], rightVol = volumes[1];
283 // volumes, but setting volumes is handled by the caller.
352 // return the computed volumes
    [all...]
  /frameworks/base/services/java/com/android/server/usb/
UsbDeviceManager.java 164 StorageVolume[] volumes = storageManager.getVolumeList(); local
165 if (volumes.length > 0) {
166 massStorageSupported = volumes[0].allowMassStorage();
  /external/chromium/chrome/browser/resources/file_manager/js/
file_manager.js 109 * storage volumes.
    [all...]

Completed in 623 milliseconds