VirtualBox

Ignore:
Timestamp:
Dec 3, 2018 9:52:50 PM (6 years ago)
Author:
vboxsync
Message:

Main,Frontends: s/FileName/Filename/g (API); Took a shot a completing the code for populating IGuestFsObjInfo. bugref:9320

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/idl/VirtualBox.xidl

    r75920 r75926  
    48704870  <interface
    48714871    name="IRecordingScreenSettings" extends="$unknown"
    4872     uuid="B036627B-9922-4056-8A95-94C60D3BA48A"
     4872    uuid="678fbd9a-93af-42a7-7f13-79ad6ef1a18d"
    48734873    wsmap="managed"
    48744874    >
     
    49134913    </attribute>
    49144914
    4915     <attribute name="fileName" type="wstring">
     4915    <attribute name="filename" type="wstring">
    49164916      <desc>
    49174917        This setting determines the filename VirtualBox uses to save
     
    1394713947  <interface
    1394813948    name="IFile" extends="$unknown"
    13949     uuid="5395b543-0ee9-4d6a-9ecd-580e3a1d0dbb"
     13949    uuid="59a235ac-2f1a-4d6c-81fc-e3fa843f49ae"
    1395013950    wsmap="managed"
    1395113951    reservedMethods="4" reservedAttributes="8"
     
    1399213992    <!-- The following attributes just remembers the fileOpen parameters for you.
    1399313993         Nice for introspection and probably doesn't cost us much. -->
    13994     <attribute name="fileName" type="wstring" readonly="yes">
     13994    <attribute name="filename" type="wstring" readonly="yes">
    1399513995      <desc>Full path of the actual file name of this file.
    1399613996        <!-- r=bird: The 'actual' file name is too tough, we cannot guarentee
     
    1420514205  <interface
    1420614206    name="IFsObjInfo" extends="$unknown"
    14207     uuid="ae34e3d5-f884-4141-8d62-618300658805"
     14207    uuid="081fc833-c6fa-430e-6020-6a505d086387"
    1420814208    wsmap="managed"
    1420914209    reservedAttributes="8"
     
    1421314213      This can be information about a file or a directory, for example.
    1421414214    </desc>
    14215 
    14216     <attribute name="accessTime" type="long long" readonly="yes">
    14217       <desc>
    14218         Time of last access (st_atime).
    14219       </desc>
    14220     </attribute>
    14221     <attribute name="allocatedSize" type="long long" readonly="yes">
    14222       <desc>
    14223         Disk allocation size (st_blocks * DEV_BSIZE).
    14224       </desc>
    14225     </attribute>
    14226     <attribute name="birthTime" type="long long" readonly="yes">
    14227       <desc>
    14228         Time of file birth (st_birthtime).
    14229       </desc>
    14230     </attribute>
    14231         <attribute name="changeTime" type="long long" readonly="yes">
    14232       <desc>
    14233         Time of last status change (st_ctime).
    14234       </desc>
    14235     </attribute>
    14236     <attribute name="deviceNumber" type="unsigned long" readonly="yes">
    14237       <desc>
    14238         The device number of a character or block device type object (st_rdev).
     14215    <attribute name="name" type="wstring" readonly="yes">
     14216      <desc>
     14217        The object's name.
     14218      </desc>
     14219    </attribute>
     14220    <attribute name="type" type="FsObjType" readonly="yes">
     14221      <desc>
     14222        The object type. See <link to="FsObjType" /> for more.
    1423914223      </desc>
    1424014224    </attribute>
     
    1424214226      <desc>
    1424314227        File attributes. Not implemented yet.
    14244       </desc>
    14245     </attribute>
    14246     <attribute name="generationId" type="unsigned long" readonly="yes">
    14247       <desc>
    14248         The current generation number (st_gen).
    14249       </desc>
    14250     </attribute>
    14251     <attribute name="GID" type="unsigned long" readonly="yes">
    14252       <desc>
    14253         The group the filesystem object is assigned (st_gid).
    14254       </desc>
    14255     </attribute>
    14256     <attribute name="groupName" type="wstring" readonly="yes">
    14257       <desc>
    14258         The group name.
    14259       </desc>
    14260     </attribute>
    14261     <attribute name="hardLinks" type="unsigned long" readonly="yes">
    14262       <desc>
    14263         Number of hard links to this filesystem object (st_nlink).
    14264       </desc>
    14265     </attribute>
    14266     <attribute name="modificationTime" type="long long" readonly="yes">
    14267       <desc>
    14268         Time of last data modification (st_mtime).
    14269       </desc>
    14270     </attribute>
    14271     <attribute name="name" type="wstring" readonly="yes">
    14272       <desc>
    14273         The object's name.
    14274       </desc>
    14275     </attribute>
    14276     <attribute name="nodeId" type="long long" readonly="yes">
    14277       <desc>
    14278         The unique identifier (within the filesystem) of this filesystem object (st_ino).
    14279       </desc>
    14280     </attribute>
    14281     <attribute name="nodeIdDevice" type="unsigned long" readonly="yes">
    14282       <desc>
    14283         The device number of the device which this filesystem object resides on (st_dev).
    1428414228      </desc>
    1428514229    </attribute>
     
    1429114235      </desc>
    1429214236    </attribute>
    14293     <attribute name="type" type="FsObjType" readonly="yes">
    14294       <desc>
    14295         The object type. See <link to="FsObjType" /> for more.
    14296       </desc>
    14297     </attribute>
    14298     <attribute name="UID" type="unsigned long" readonly="yes">
    14299       <desc>
    14300         The user owning the filesystem object (st_uid).
     14237    <attribute name="allocatedSize" type="long long" readonly="yes">
     14238      <desc>
     14239        Disk allocation size (st_blocks * DEV_BSIZE).
     14240      </desc>
     14241    </attribute>
     14242    <!-- Time attributes: -->
     14243    <attribute name="accessTime" type="long long" readonly="yes">
     14244      <desc>
     14245        Time of last access (st_atime).
     14246      </desc>
     14247    </attribute>
     14248    <attribute name="birthTime" type="long long" readonly="yes">
     14249      <desc>
     14250        Time of file birth (st_birthtime).
     14251      </desc>
     14252    </attribute>
     14253    <attribute name="changeTime" type="long long" readonly="yes">
     14254      <desc>
     14255        Time of last status change (st_ctime).
     14256      </desc>
     14257    </attribute>
     14258    <attribute name="modificationTime" type="long long" readonly="yes">
     14259      <desc>
     14260        Time of last data modification (st_mtime).
     14261      </desc>
     14262    </attribute>
     14263    <!-- Ownership attributes: -->
     14264    <attribute name="UID" type="long" readonly="yes">
     14265      <desc>
     14266        The user owning the filesystem object (st_uid).  This is -1 if not available.
     14267      </desc>
     14268    </attribute>
     14269    <attribute name="userName" type="wstring" readonly="yes">
     14270      <desc>
     14271        The user name.
     14272      </desc>
     14273    </attribute>
     14274    <attribute name="GID" type="long" readonly="yes">
     14275      <desc>
     14276        The group the filesystem object is assigned (st_gid).  This is -1 if not available.
     14277      </desc>
     14278    </attribute>
     14279    <attribute name="groupName" type="wstring" readonly="yes">
     14280      <desc>
     14281        The group name.
     14282      </desc>
     14283    </attribute>
     14284    <!-- More esoteric attributes: -->
     14285    <attribute name="nodeId" type="long long" readonly="yes">
     14286      <desc>
     14287        The unique identifier (within the filesystem) of this filesystem object (st_ino).
     14288        This is zero if not availalbe.
     14289      </desc>
     14290    </attribute>
     14291    <attribute name="nodeIdDevice" type="unsigned long" readonly="yes">
     14292      <desc>
     14293        The device number of the device which this filesystem object resides on (st_dev).
     14294      </desc>
     14295    </attribute>
     14296    <attribute name="hardLinks" type="unsigned long" readonly="yes">
     14297      <desc>
     14298        Number of hard links to this filesystem object (st_nlink).
     14299      </desc>
     14300    </attribute>
     14301    <attribute name="deviceNumber" type="unsigned long" readonly="yes">
     14302      <desc>
     14303        The device number of a character or block device type object (st_rdev).
     14304      </desc>
     14305    </attribute>
     14306    <attribute name="generationId" type="unsigned long" readonly="yes">
     14307      <desc>
     14308        The current generation number (st_gen).
    1430114309      </desc>
    1430214310    </attribute>
     
    1430614314      </desc>
    1430714315    </attribute>
    14308     <attribute name="userName" type="wstring" readonly="yes">
    14309       <desc>
    14310         The user name.
    14311       </desc>
    14312     </attribute>
    14313 
    1431414316  </interface>
    1431514317
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette