Changeset 33540 in vbox for trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxFsDxe
- Timestamp:
- Oct 28, 2010 9:27:05 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 67140
- Location:
- trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxFsDxe
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxFsDxe/fsw_core.h
r29125 r33540 337 337 fsw_u64 used_bytes; //!< Bytes actually used by the file on disk 338 338 void (*store_time_posix)(struct fsw_dnode_stat *sb, int which, fsw_u32 posix_time); //!< Callback for storing a Posix-style timestamp 339 void (*store_attr_posix)(struct fsw_dnode_stat *sb, fsw_u16 posix_mode); //!< Callb ock for storing a Posix-style file mode339 void (*store_attr_posix)(struct fsw_dnode_stat *sb, fsw_u16 posix_mode); //!< Callback for storing a Posix-style file mode 340 340 void *host_data; //!< Hook for a host-specific data structure 341 341 }; -
trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxFsDxe/fsw_efi.h
r29125 r33540 88 88 EFI_FILE FileHandle; //!< Published EFI protocol interface structure 89 89 90 UINTN Type; //!< File type used for dispatchin ng90 UINTN Type; //!< File type used for dispatching 91 91 struct fsw_shandle shand; //!< FSW handle for this file 92 92 -
trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxFsDxe/fsw_hfs.c
r29125 r33540 7 7 * Current limitations: 8 8 * - Doesn't support permissions 9 * - Complete Unicode case-insens tivness disabled (large tables)9 * - Complete Unicode case-insensitiveness disabled (large tables) 10 10 * - No links 11 11 * - Only supports pure HFS+ (i.e. no HFS, or HFS+ embedded to HFS) -
trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxFsDxe/fsw_iso9660.c
r29125 r33540 537 537 // has opened a storage handle to the directory's storage and keeps it around between 538 538 // calls. 539 /* (vasily) direc ory nodes are 4096 bytes that is two logical blocks so read dir operation539 /* (vasily) directory nodes are 4096 bytes that is two logical blocks so read dir operation 540 540 * should read both blocks. 541 541 */ -
trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxFsDxe/fsw_lib.c
r29125 r33540 325 325 #if 0 326 326 /* 327 * Uncomment this along with above hu uuge table (fsw_lower_case_table)327 * Uncomment this along with above huge table (fsw_lower_case_table) 328 328 * for full UTF-16 case insensitivity 329 329 */ … … 459 459 460 460 /** 461 * Splits a string at the first occur ence of the separator character.461 * Splits a string at the first occurrence of the separator character. 462 462 * The buffer string is searched for the separator character. If it is found, the 463 463 * element string descriptor is filled to point at the part of the buffer string -
trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxFsDxe/hfs_format.h
r29125 r33540 64 64 * 65 65 * This file describes the on-disk format for HFS and HFS Plus volumes. 66 * The HFS Plus volume format is desc iibed in detail in Apple Technote 1150.66 * The HFS Plus volume format is described in detail in Apple Technote 1150. 67 67 * 68 68 * http://developer.apple.com/technotes/tn/tn1150.html … … 517 517 518 518 /* 519 * At rributes B-tree Data Record519 * Attributes B-tree Data Record 520 520 * 521 521 * For small attributes, whose entire value is stored
Note:
See TracChangeset
for help on using the changeset viewer.