HomeSort by relevance Sort by last modified time
    Searched defs:Volume (Results 1 - 25 of 39) sorted by null

1 2

  /bootable/recovery/
roots.h 22 typedef struct fstab_rec Volume;
24 // Load and parse volume data from /etc/recovery.fstab.
27 // Return the Volume* record for this mount point (or nullptr).
28 Volume* volume_for_mount_point(const std::string& mount_point);
30 // Make sure that the volume 'path' is on is mounted. Returns 0 on
31 // success (volume is mounted).
37 // Make sure that the volume 'path' is on is unmounted. Returns 0 on
38 // success (volume is unmounted);
41 // Reformat the given volume (must be the mount point only, eg
42 // "/cache"), no paths permitted. Attempts to unmount the volume i
    [all...]
  /device/linaro/bootloader/edk2/FatPkg/EnhancedFatDxe/
OpenVolume.c 22 @param File - the Root Directory of the volume.
26 @retval EFI_SUCCESS - Open the volume successfully.
37 FAT_VOLUME *Volume;
40 Volume = VOLUME_FROM_VOL_INTERFACE (This);
46 Status = FatOpenDirEnt (NULL, &Volume->RootDirEnt);
53 Status = FatAllocateIFile (Volume->Root, &IFile);
60 Status = FatCleanupVolume (Volume, Volume->Root, Status, NULL);
DirectoryCache.c 80 Volume will cache this directory if the OFile does not represent a deleted file.
91 FAT_VOLUME *Volume;
93 Volume = OFile->Volume;
101 InsertHeadList (&Volume->DirCacheList, &ODir->DirCacheLink);
102 if (Volume->DirCacheCount == FAT_MAX_DIR_CACHE_COUNT) {
106 ODir = ODIR_FROM_DIRCACHELINK (Volume->DirCacheList.BackLink);
112 Volume->DirCacheCount++;
128 If the directory structure is cached by volume, then just return this directory;
140 FAT_VOLUME *Volume;
    [all...]
Open.c 37 ASSERT_VOLUME_LOCKED (OFile->Volume);
54 if (OFile->Volume->DiskIo2 != NULL) {
84 @retval EFI_WRITE_PROTECTED - Can't open for write if the volume is read only.
99 FAT_VOLUME *Volume;
107 Volume = OFile->Volume;
108 ASSERT_VOLUME_LOCKED (Volume);
110 if (Volume->ReadOnly && WriteMode) {
282 Status = FatCleanupVolume (OFile->Volume, NULL, Status, Task);
Fat.c 420 // Allocate Volume structure. In FatAllocateVolume(), Resources
489 FAT_VOLUME *Volume;
506 Volume = VOLUME_FROM_VOL_INTERFACE (FileSystem);
507 DiskIo2 = Volume->DiskIo2;
508 Status = FatAbandonVolume (Volume);
Flush.c 26 @retval EFI_WRITE_PROTECTED - The volume is read only.
40 FAT_VOLUME *Volume;
46 Volume = OFile->Volume;
56 if (Volume->ReadOnly) {
87 Status = FatCleanupVolume (OFile->Volume, OFile, Status, Task);
108 @retval EFI_WRITE_PROTECTED - The volume is read only.
139 FAT_VOLUME *Volume;
143 Volume = OFile->Volume;
    [all...]
Init.c 19 Allocates volume structure, detects FAT file system, installs protocol,
27 @retval EFI_SUCCESS - Allocate a new volume successfully.
29 @return Others - Allocating a new volume failed.
41 FAT_VOLUME *Volume;
44 // Allocate a volume structure
46 Volume = AllocateZeroPool (sizeof (FAT_VOLUME));
47 if (Volume == NULL) {
54 Volume->Signature = FAT_VOLUME_SIGNATURE;
55 Volume->Handle = Handle;
56 Volume->DiskIo = DiskIo;
    [all...]
Info.c 2 Routines dealing with setting/getting file/volume info
21 Get the volume's info into Buffer.
23 @param Volume - FAT file system volume.
25 @param Buffer - Buffer containing volume info.
27 @retval EFI_SUCCESS - Get the volume info successfully.
33 IN FAT_VOLUME *Volume,
40 Set the volume's info.
42 @param Volume - FAT file system volume.
    [all...]
ReadWrite.c 165 Status = FatGetDirEntInfo (OFile->Volume, DirEnt, BufferSize, Buffer);
212 FAT_VOLUME *Volume;
218 Volume = OFile->Volume;
243 if (Volume->ReadOnly) {
331 // 2) The volume dirty bit is probably set already, and is expected to be
337 Status = FatCleanupVolume (Volume, OFile, Status, NULL);
470 FAT_VOLUME *Volume;
476 Volume = OFile->Volume;
    [all...]
FileSpace.c 22 Get the FAT entry of the volume, which is identified with the Index.
24 @param Volume - FAT file system volume.
25 @param Index - The index of the FAT entry of the volume.
33 IN FAT_VOLUME *Volume,
40 if (Index > (Volume->MaxCluster + 1)) {
41 Volume->FatEntryBuffer = (UINT32) -1;
42 return &Volume->FatEntryBuffer;
47 switch (Volume->FatType) {
62 Volume->FatEntryPos = Volume->FatPos + Pos;
    [all...]
DirectoryManage.c 391 if (OFile->Volume->FatType != Fat32) {
438 @param Volume - FAT file system volume.
449 IN FAT_VOLUME *Volume,
464 ASSERT_VOLUME_LOCKED (Volume);
478 Info->PhysicalSize = FatPhysicalDirSize (Volume, Cluster);
482 Info->PhysicalSize = FatPhysicalFileSize (Volume, Entry->FileSize);
711 return FatExpandOFile (OFile, OFile->FileSize + OFile->Volume->ClusterSize);
716 Search the Root OFile for the possible volume label.
719 @param DirEnt - The returned directory entry of volume label.
    [all...]
  /development/vndk/tools/header-checker/tests/integration/cpp/gold/include/
abstract_class.h 40 enum Volume {
53 Volume SpeakLoud();
  /device/linaro/bootloader/edk2/DuetPkg/FvbRuntimeService/
FileIo.c 17 File operation for Firmware volume block driver
112 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL *Volume;
128 &Volume
155 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL *Volume;
173 &Volume
181 // Open the root directory of the volume
184 Status = Volume->OpenVolume (
185 Volume,
  /frameworks/av/media/libeffects/lvm/lib/Bass/src/
LVDBE_Control.c 224 /* Converts the input volume demand from dBs to linear. */
231 /* 1. The volume should have the following settings: */
233 /* DBE Vol Control Volume setting */
248 LVM_INT16 Volume = 0; /* Required volume in dBs */
254 * Apply the volume if enabled
263 Volume = VOLUME_MAX;
267 Volume = pParams->VolumedB;
275 dBOffset = (LVM_UINT16)(6 + Volume % 6); /* Get the dBs 0-5 */
276 dBShifts = (LVM_UINT16)(Volume / -6); /* Get the 6dB shifts *
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
AGC.h 45 LVM_INT32 Volume; /* The current volume setting */
46 LVM_INT32 Target; /* The target volume setting */
51 LVM_INT16 VolumeShift; /* Volume shift scaling */
52 LVM_INT16 VolumeTC; /* Volume update time constant */
60 LVM_FLOAT Volume; /* The current volume setting */
61 LVM_FLOAT Target; /* The target volume setting */
65 LVM_FLOAT VolumeTC; /* Volume update time constant */
  /device/linaro/bootloader/edk2/DuetPkg/FSVariable/
FileStorage.c 147 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL *Volume;
163 (VOID **) &Volume
383 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL *Volume;
401 (VOID **) &Volume
408 // Open the root directory of the volume
411 Status = Volume->OpenVolume (
412 Volume,
  /device/linaro/bootloader/edk2/FatPkg/FatPei/
FatLiteApi.c 44 Discover all the block I/O devices to find the FAT volume.
68 PEI_FAT_VOLUME Volume;
176 // Build up file system volume array
180 Volume.BlockDeviceNo = Index;
181 Status = FatGetBpbInfo (PrivateData, &Volume);
184 // Add the detected volume to the volume array
187 (UINT8 *) &(PrivateData->Volume[PrivateData->VolumeCount]),
188 (UINT8 *) &Volume,
369 // Search each volume in the root directory for the Recovery capsule
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/
BmLib.c 19 Function opens and returns a file handle to the root directory of a volume.
32 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL *Volume;
43 (VOID *) &Volume
47 // Open the root directory of the volume
50 Status = Volume->OpenVolume (
51 Volume,
  /frameworks/av/services/audiopolicy/common/include/
Volume.h 23 // Absolute min volume in dB (can be represented in single precision normal float value)
34 * device categories used for volume curve management.
45 class Volume
49 * 4 points to define the volume attenuation curve, each characterized by the volume
51 * we use 100 steps to avoid rounding errors when computing the volume in volIndexToDb()
65 * extract one device relevant for volume control from multiple device selection
67 * @param[in] device for which the volume category is associated
69 * @return subset of device required to limit the number of volume category per device
99 /*SPEAKER_SAFE is an alias of SPEAKER for purposes of volume control*
    [all...]
  /external/eigen/unsupported/Eigen/src/BVH/
KdBVH.h 55 * \brief A simple bounding volume hierarchy based on AlignedBox
62 * This class provides a simple (as opposed to optimized) implementation of a bounding volume hierarchy analogous to a Kd-tree.
74 typedef AlignedBox<Scalar, Dim> Volume;
75 typedef std::vector<Volume, aligned_allocator<Volume> > VolumeList;
82 /** Given an iterator range over \a Object references, constructs the BVH. Requires that bounding_box(Object) return a Volume. */
89 * Requires that bounding_box(Object) return a Volume. */
130 /** Given an \a index of a node, on exit, \a outVBegin and \a outVEnd range over the indices of the volume children of the node
155 } else { //if the first child is a volume and the second is an object
164 inline const Volume &getVolume(Index index) cons
    [all...]
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
hand.c 305 EFI_FILE_IO_INTERFACE *Volume;
313 Status = uefi_call_wrapper(BS->HandleProtocol, 3, DeviceHandle, &FileSystemProtocol, (VOID*)&Volume);
316 // Open the root directory of the volume
320 Status = uefi_call_wrapper(Volume->OpenVolume, 2, Volume, &File);
  /frameworks/av/media/libeffects/lvm/lib/Bundle/src/
LVM_Control.c 173 * Volume Control parameters
358 /* Converts the input volume demand from dBs to linear. */
371 LVM_INT16 Volume = 0; /* Required volume in dBs */
381 Volume = 0;
385 Volume = pParams->VC_EffectLevel;
388 /* Compensate this volume in PSA plot */
389 if(Volume > -60) /* Limit volume loss to PSA Limits*/
390 pInstance->PSA_GainOffset=(LVM_INT16)(-Volume);/* Loss is compensated by Gain*
    [all...]
  /frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
Volume.java 26 * Defines a simple volume to be used in the volume renderer
28 public class Volume {
29 private static final String LOGTAG = "Volume";
31 public Allocation mVolumeAllocation; // one big volume
40 String ret = "Volume[" + mDimx + "," + mDimy + "," + mDimz + "]";
  /device/linaro/bootloader/edk2/MdePkg/Library/DxeServicesLib/
DxeServicesLib.c 33 GetSectionFromFv as the identifier for a Firmware Volume, an EFI_FIRMWARE_VOLUME2_PROTOCOL
71 Section type and instance number from the specified Firmware Volume.
74 carry out the Firmware Volume read operation. The function then reads the Firmware Section found sepcifed
108 Firmware Volume.
109 @retval EFI_ACCESS_DENIED The firmware volume containing the searched
222 the firmware volume that
275 // Use Firmware Volume 2 Protocol to search for a file of type FileType in all FVs.
362 firmware volume that
447 Searches the firmware volume that the currently executing module was loaded from and returns the first matching FFS section.
449 This function searches the firmware volume that the currently executing module was loaded
    [all...]
  /external/swiftshader/src/D3D8/
Capabilities.hpp 91 struct Volume

Completed in 331 milliseconds

1 2