Changeset 57358 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Aug 14, 2015 3:16:38 PM (9 years ago)
- Location:
- trunk/src/VBox/Main/src-server
- Files:
-
- 21 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/HostPower.cpp
r55401 r57358 18 18 19 19 20 /******************************************************************************* 21 * Header Files *22 ******************************************************************************* /20 /********************************************************************************************************************************* 21 * Header Files * 22 *********************************************************************************************************************************/ 23 23 24 24 #include "HostPower.h" -
trunk/src/VBox/Main/src-server/HostUSBDeviceImpl.cpp
r57034 r57358 350 350 name = "<unknown>"; 351 351 LogRel(("USB: Unknown USB device detected ( idVendor: 0x%04x, idProduct: 0x%04x ). \ 352 Please, report the idVendor and idProduct to vbox.org.\n", vendorName, productName)); 352 Please, report the idVendor and idProduct to vbox.org.\n", vendorName, productName)); 353 353 } 354 354 } -
trunk/src/VBox/Main/src-server/USBIdDatabaseGenerator.cpp
r57338 r57358 54 54 const size_t AliasDictionary::vendors_size = sizeof(AliasDictionary::vendorArray) / sizeof(Vendor);"; 55 55 56 const char* start_block = "# interface interface_name<-- two tabs";56 const char* start_block = "# interface interface_name <-- two tabs"; 57 57 const char* end_block = "# List of known device classes, subclasses and protocols"; 58 58 -
trunk/src/VBox/Main/src-server/USBIdDatabaseStub.cpp
r57034 r57358 20 20 Product AliasDictionary::productArray[] = {0}; 21 21 22 const size_t AliasDictionary::products_size = sizeof(AliasDictionary::productArray) / sizeof(Product); 22 const size_t AliasDictionary::products_size = sizeof(AliasDictionary::productArray) / sizeof(Product); 23 23 24 24 Vendor AliasDictionary::vendorArray[] = {0}; -
trunk/src/VBox/Main/src-server/darwin/NetIf-darwin.cpp
r49674 r57358 18 18 19 19 20 /******************************************************************************* 21 * Header Files *22 ******************************************************************************* /20 /********************************************************************************************************************************* 21 * Header Files * 22 *********************************************************************************************************************************/ 23 23 /* 24 24 * Deal with conflicts first. -
trunk/src/VBox/Main/src-server/darwin/USBProxyServiceDarwin.cpp
r49963 r57358 17 17 18 18 19 /******************************************************************************* 20 * Header Files *21 ******************************************************************************* /19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 22 22 #include "USBProxyService.h" 23 23 #include "Logging.h" -
trunk/src/VBox/Main/src-server/darwin/iokit.cpp
r56941 r57358 21 21 22 22 23 /******************************************************************************* 24 * Header Files *25 ******************************************************************************* /23 /********************************************************************************************************************************* 24 * Header Files * 25 *********************************************************************************************************************************/ 26 26 #define LOG_GROUP LOG_GROUP_MAIN 27 27 #ifdef STANDALONE_TESTCASE … … 63 63 64 64 65 /******************************************************************************* 66 * Defined Constants And Macros *67 ******************************************************************************* /65 /********************************************************************************************************************************* 66 * Defined Constants And Macros * 67 *********************************************************************************************************************************/ 68 68 /** An attempt at catching reference leaks. */ 69 69 #define MY_CHECK_CREFS(cRefs) do { AssertMsg(cRefs < 25, ("%ld\n", cRefs)); NOREF(cRefs); } while (0) … … 77 77 78 78 79 /******************************************************************************* 80 * Global Variables *81 ******************************************************************************* /79 /********************************************************************************************************************************* 80 * Global Variables * 81 *********************************************************************************************************************************/ 82 82 /** The IO Master Port. */ 83 83 static mach_port_t g_MasterPort = NULL; -
trunk/src/VBox/Main/src-server/freebsd/HostHardwareFreeBSD.cpp
r56854 r57358 18 18 #define LOG_GROUP LOG_GROUP_MAIN 19 19 20 /******************************************************************************* 21 * Header Files * 22 *******************************************************************************/ 20 21 /********************************************************************************************************************************* 22 * Header Files * 23 *********************************************************************************************************************************/ 23 24 24 25 #include <HostHardwareLinux.h> … … 48 49 #include <vector> 49 50 50 /****************************************************************************** 51 * Typedefs and Defines * 52 ******************************************************************************/ 51 52 /********************************************************************************************************************************* 53 * Typedefs and Defines * 54 *********************************************************************************************************************************/ 53 55 54 56 static int getDriveInfoFromEnv(const char *pcszVar, DriveInfoList *pList, -
trunk/src/VBox/Main/src-server/freebsd/NetIf-freebsd.cpp
r54959 r57358 21 21 */ 22 22 23 /******************************************************************************* 24 * Header Files * 25 *******************************************************************************/ 23 24 /********************************************************************************************************************************* 25 * Header Files * 26 *********************************************************************************************************************************/ 26 27 #define LOG_GROUP LOG_GROUP_MAIN 27 28 #include <sys/types.h> -
trunk/src/VBox/Main/src-server/freebsd/USBProxyServiceFreeBSD.cpp
r55095 r57358 17 17 18 18 19 /******************************************************************************* 20 * Header Files *21 ******************************************************************************* /19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 22 22 #include "USBProxyService.h" 23 23 #include "Logging.h" … … 47 47 #include <dev/usb/usb_ioctl.h> 48 48 49 /******************************************************************************* 50 * Structures and Typedefs * 51 *******************************************************************************/ 52 53 54 /******************************************************************************* 55 * Global Variables * 56 *******************************************************************************/ 49 50 /********************************************************************************************************************************* 51 * Structures and Typedefs * 52 *********************************************************************************************************************************/ 53 54 55 /********************************************************************************************************************************* 56 * Global Variables * 57 *********************************************************************************************************************************/ 57 58 58 59 /** -
trunk/src/VBox/Main/src-server/linux/HostHardwareLinux.cpp
r50783 r57358 20 20 #define LOG_GROUP LOG_GROUP_MAIN 21 21 22 /******************************************************************************* 23 * Header Files * 24 *******************************************************************************/ 22 23 /********************************************************************************************************************************* 24 * Header Files * 25 *********************************************************************************************************************************/ 25 26 26 27 #include <HostHardwareLinux.h> … … 65 66 #include <sys/types.h> 66 67 67 /****************************************************************************** 68 * Global Variables * 69 ******************************************************************************/ 68 69 /********************************************************************************************************************************* 70 * Global Variables * 71 *********************************************************************************************************************************/ 70 72 71 73 #ifdef TESTCASE … … 80 82 #endif 81 83 82 /****************************************************************************** 83 * Typedefs and Defines * 84 ******************************************************************************/ 84 85 /********************************************************************************************************************************* 86 * Typedefs and Defines * 87 *********************************************************************************************************************************/ 85 88 86 89 static int getDriveInfoFromEnv(const char *pcszVar, DriveInfoList *pList, -
trunk/src/VBox/Main/src-server/linux/NetIf-linux.cpp
r48955 r57358 18 18 19 19 20 /******************************************************************************* 21 * Header Files *22 ******************************************************************************* /20 /********************************************************************************************************************************* 21 * Header Files * 22 *********************************************************************************************************************************/ 23 23 #define LOG_GROUP LOG_GROUP_MAIN 24 24 -
trunk/src/VBox/Main/src-server/linux/USBGetDevices.cpp
r54051 r57358 17 17 18 18 19 /******************************************************************************* 20 * Header Files *21 ******************************************************************************* /19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 22 22 23 23 #include "USBGetDevices.h" … … 58 58 #include <unistd.h> 59 59 60 /******************************************************************************* 61 * Structures and Typedefs * 62 *******************************************************************************/ 60 61 /********************************************************************************************************************************* 62 * Structures and Typedefs * 63 *********************************************************************************************************************************/ 63 64 /** Suffix translation. */ 64 65 typedef struct USBSUFF … … 83 84 } USBDeviceInfo; 84 85 85 /******************************************************************************* 86 * Global Variables * 87 *******************************************************************************/ 86 87 /********************************************************************************************************************************* 88 * Global Variables * 89 *********************************************************************************************************************************/ 88 90 /** 89 91 * Suffixes for the endpoint polling interval. -
trunk/src/VBox/Main/src-server/linux/USBProxyServiceLinux.cpp
r51092 r57358 17 17 18 18 19 /******************************************************************************* 20 * Header Files *21 ******************************************************************************* /19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 22 22 #include "USBProxyService.h" 23 23 #include "USBGetDevices.h" -
trunk/src/VBox/Main/src-server/os2/NetIf-os2.cpp
r50196 r57358 18 18 19 19 20 /******************************************************************************* 21 * Header Files *22 ******************************************************************************* /20 /********************************************************************************************************************************* 21 * Header Files * 22 *********************************************************************************************************************************/ 23 23 #define LOG_GROUP LOG_GROUP_MAIN 24 24 -
trunk/src/VBox/Main/src-server/os2/USBProxyServiceOs2.cpp
r51092 r57358 17 17 18 18 19 /******************************************************************************* 20 * Header Files *21 ******************************************************************************* /19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 22 22 #define INCL_BASE 23 23 #define INCL_ERRORS -
trunk/src/VBox/Main/src-server/solaris/NetIf-solaris.cpp
r54870 r57358 18 18 19 19 20 /******************************************************************************* 21 * Header Files *22 ******************************************************************************* /20 /********************************************************************************************************************************* 21 * Header Files * 22 *********************************************************************************************************************************/ 23 23 #define LOG_GROUP LOG_GROUP_MAIN 24 24 -
trunk/src/VBox/Main/src-server/solaris/USBProxyServiceSolaris.cpp
r53112 r57358 17 17 18 18 19 /******************************************************************************* 20 * Header Files *21 ******************************************************************************* /19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 22 22 #include "USBProxyService.h" 23 23 #include "Logging.h" … … 32 32 #include <syslog.h> 33 33 34 /******************************************************************************* 35 * Internal Functions * 36 *******************************************************************************/ 34 35 /********************************************************************************************************************************* 36 * Internal Functions * 37 *********************************************************************************************************************************/ 37 38 static int solarisWalkDeviceNode(di_node_t Node, void *pvArg); 38 39 static void solarisFreeUSBDevice(PUSBDEVICE pDevice); … … 40 41 41 42 42 /******************************************************************************* 43 * Structures and Typedefs *44 ******************************************************************************* /43 /********************************************************************************************************************************* 44 * Structures and Typedefs * 45 *********************************************************************************************************************************/ 45 46 typedef struct USBDEVICELIST 46 47 { -
trunk/src/VBox/Main/src-server/win/HostPowerWin.cpp
r55401 r57358 17 17 */ 18 18 19 /******************************************************************************* 20 * Header Files * 21 *******************************************************************************/ 19 20 /********************************************************************************************************************************* 21 * Header Files * 22 *********************************************************************************************************************************/ 22 23 #include <windows.h> 23 24 /* Some SDK versions lack the extern "C" and thus cause linking failures. -
trunk/src/VBox/Main/src-server/win/NetIf-win.cpp
r53318 r57358 18 18 19 19 20 /******************************************************************************* 21 * Header Files *22 ******************************************************************************* /20 /********************************************************************************************************************************* 21 * Header Files * 22 *********************************************************************************************************************************/ 23 23 #define LOG_GROUP LOG_GROUP_MAIN 24 24 -
trunk/src/VBox/Main/src-server/win/USBProxyServiceWindows.cpp
r51743 r57358 17 17 18 18 19 /******************************************************************************* 20 * Header Files *21 ******************************************************************************* /19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 22 22 #include "USBProxyService.h" 23 23 #include "Logging.h"
Note:
See TracChangeset
for help on using the changeset viewer.