Changeset 49744 in vbox
- Timestamp:
- Dec 2, 2013 7:03:40 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/HostImpl.cpp
r49743 r49744 2592 2592 * @retval list drives found will be attached to this list 2593 2593 */ 2594 bool Host:: getFloppyInfoFromHal(std::list< ComObjPtr<Medium> > &list)2594 bool Host::i_getFloppyInfoFromHal(std::list< ComObjPtr<Medium> > &list) 2595 2595 { 2596 2596 bool halSuccess = false; … … 2750 2750 * Helper function to parse the given mount file and add found entries 2751 2751 */ 2752 void Host:: parseMountTable(char *mountTable, std::list< ComObjPtr<Medium> > &list)2752 void Host::i_parseMountTable(char *mountTable, std::list< ComObjPtr<Medium> > &list) 2753 2753 { 2754 2754 #ifdef RT_OS_LINUX … … 2798 2798 { 2799 2799 /** @todo check whether we've already got the drive in our list! */ 2800 if ( validateDevice(mnt_dev, true))2800 if (i_validateDevice(mnt_dev, true)) 2801 2801 { 2802 2802 ComObjPtr<Medium> hostDVDDriveObj; … … 2830 2830 { 2831 2831 char *rawDevName = getfullrawname((char *)mountName); 2832 if ( validateDevice(rawDevName, true))2832 if (i_validateDevice(rawDevName, true)) 2833 2833 { 2834 2834 ComObjPtr<Medium> hostDVDDriveObj; … … 2850 2850 * Helper function to check whether the given device node is a valid drive 2851 2851 */ 2852 bool Host:: validateDevice(const char *deviceNode, bool isCDROM)2852 bool Host::i_validateDevice(const char *deviceNode, bool isCDROM) 2853 2853 { 2854 2854 struct stat statInfo;
Note:
See TracChangeset
for help on using the changeset viewer.