Changeset 40282 in vbox
- Timestamp:
- Feb 28, 2012 9:02:40 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76511
- Location:
- trunk/src
- Files:
-
- 57 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/sharedfolders/mount.vboxsf.c
r39781 r40282 383 383 0, /* gid */ 384 384 0, /* ttl */ 385 ~0 ,/* dmode */386 ~0 ,/* fmode*/385 ~0U, /* dmode */ 386 ~0U, /* fmode*/ 387 387 0, /* dmask */ 388 388 0, /* fmask */ -
trunk/src/VBox/Debugger/DBGCCommands.cpp
r39612 r40282 88 88 { 89 89 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */ 90 { 1, ~0 ,DBGCVAR_CAT_STRING, 0, "strings", "One or more strings." },90 { 1, ~0U, DBGCVAR_CAT_STRING, 0, "strings", "One or more strings." }, 91 91 }; 92 92 … … 111 111 { 112 112 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */ 113 { 0, ~0 ,DBGCVAR_CAT_STRING, 0, "cmd/op", "Zero or more command or operator names." },113 { 0, ~0U, DBGCVAR_CAT_STRING, 0, "cmd/op", "Zero or more command or operator names." }, 114 114 }; 115 115 … … 225 225 { "bye", 0, 0, NULL, 0, 0, dbgcCmdQuit, "", "Exits the debugger." }, 226 226 { "cpu", 0, 1, &g_aArgCpu[0], RT_ELEMENTS(g_aArgCpu), 0, dbgcCmdCpu, "[idCpu]", "If no argument, display the current CPU, else change to the specified CPU." }, 227 { "echo", 1, ~0 ,&g_aArgMultiStr[0], RT_ELEMENTS(g_aArgMultiStr), 0, dbgcCmdEcho, "<str1> [str2..[strN]]", "Displays the strings separated by one blank space and the last one followed by a newline." },227 { "echo", 1, ~0U, &g_aArgMultiStr[0], RT_ELEMENTS(g_aArgMultiStr), 0, dbgcCmdEcho, "<str1> [str2..[strN]]", "Displays the strings separated by one blank space and the last one followed by a newline." }, 228 228 { "exit", 0, 0, NULL, 0, 0, dbgcCmdQuit, "", "Exits the debugger." }, 229 229 { "format", 1, 1, &g_aArgAny[0], RT_ELEMENTS(g_aArgAny), 0, dbgcCmdFormat, "", "Evaluates an expression and formats it." }, 230 230 { "detect", 0, 0, NULL, 0, 0, dbgcCmdDetect, "", "Detects or re-detects the guest os and starts the OS specific digger." }, 231 231 { "harakiri", 0, 0, NULL, 0, 0, dbgcCmdHarakiri, "", "Kills debugger process." }, 232 { "help", 0, ~0 ,&g_aArgHelp[0], RT_ELEMENTS(g_aArgHelp), 0, dbgcCmdHelp, "[cmd/op [..]]", "Display help. For help about info items try 'info help'." },232 { "help", 0, ~0U, &g_aArgHelp[0], RT_ELEMENTS(g_aArgHelp), 0, dbgcCmdHelp, "[cmd/op [..]]", "Display help. For help about info items try 'info help'." }, 233 233 { "info", 1, 2, &g_aArgInfo[0], RT_ELEMENTS(g_aArgInfo), 0, dbgcCmdInfo, "<info> [args]", "Display info register in the DBGF. For a list of info items try 'info help'." }, 234 234 { "loadimage", 2, 3, &g_aArgLoadImage[0], RT_ELEMENTS(g_aArgLoadImage), 0, dbgcCmdLoadImage, "<filename> <address> [name]", … … 255 255 { "showvars", 0, 0, NULL, 0, 0, dbgcCmdShowVars, "", "List all the defined variables." }, 256 256 { "stop", 0, 0, NULL, 0, 0, dbgcCmdStop, "", "Stop execution." }, 257 { "unloadplugin", 1, ~0 ,&g_aArgPlugIn[0], RT_ELEMENTS(g_aArgPlugIn), 0, dbgcCmdUnloadPlugIn, "<plugin1> [plugin2..N]", "Unloads one or more plugins." },258 { "unset", 1, ~0 ,&g_aArgMultiStr[0], RT_ELEMENTS(g_aArgMultiStr), 0, dbgcCmdUnset, "<var1> [var1..[varN]]", "Unsets (delete) one or more global variables." },257 { "unloadplugin", 1, ~0U, &g_aArgPlugIn[0], RT_ELEMENTS(g_aArgPlugIn), 0, dbgcCmdUnloadPlugIn, "<plugin1> [plugin2..N]", "Unloads one or more plugins." }, 258 { "unset", 1, ~0U, &g_aArgMultiStr[0], RT_ELEMENTS(g_aArgMultiStr), 0, dbgcCmdUnset, "<var1> [var1..[varN]]", "Unsets (delete) one or more global variables." }, 259 259 { "writecore", 1, 1, &g_aArgWriteCore[0], RT_ELEMENTS(g_aArgWriteCore), 0, dbgcCmdWriteCore, "<filename>", "Write core to file." }, 260 260 }; -
trunk/src/VBox/Debugger/DBGCEmulateCodeView.cpp
r38537 r40282 97 97 { 98 98 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */ 99 { 0, ~0 ,DBGCVAR_CAT_NUMBER, 0, "#bp", "Breakpoint number." },99 { 0, ~0U, DBGCVAR_CAT_NUMBER, 0, "#bp", "Breakpoint number." }, 100 100 { 0, 1, DBGCVAR_CAT_STRING, 0, "all", "All breakpoints." }, 101 101 }; … … 136 136 { 137 137 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */ 138 { 0, ~0 ,DBGCVAR_CAT_NUMBER, 0, "sel", "Selector or selector range." },139 { 0, ~0 ,DBGCVAR_CAT_POINTER, 0, "address", "Far address which selector should be dumped." },138 { 0, ~0U, DBGCVAR_CAT_NUMBER, 0, "sel", "Selector or selector range." }, 139 { 0, ~0U, DBGCVAR_CAT_POINTER, 0, "address", "Far address which selector should be dumped." }, 140 140 }; 141 141 … … 145 145 { 146 146 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */ 147 { 0, ~0 ,DBGCVAR_CAT_NUMBER, 0, "int", "The interrupt vector or interrupt vector range." },147 { 0, ~0U, DBGCVAR_CAT_NUMBER, 0, "int", "The interrupt vector or interrupt vector range." }, 148 148 }; 149 149 … … 206 206 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */ 207 207 { 1, 1, DBGCVAR_CAT_POINTER, 0, "address", "Address where to write." }, 208 { 1, ~0 ,DBGCVAR_CAT_NUMBER, 0, "value", "Value to write." },208 { 1, ~0U, DBGCVAR_CAT_NUMBER, 0, "value", "Value to write." }, 209 209 }; 210 210 … … 214 214 { 215 215 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */ 216 { 0, ~0 ,DBGCVAR_CAT_STRING, 0, "module", "Module name." },216 { 0, ~0U, DBGCVAR_CAT_STRING, 0, "module", "Module name." }, 217 217 }; 218 218 … … 222 222 { 223 223 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */ 224 { 0, ~0 ,DBGCVAR_CAT_POINTER, 0, "address", "Address of the symbol to look up." },225 { 0, ~0 ,DBGCVAR_CAT_SYMBOL, 0, "symbol", "Symbol to lookup." },224 { 0, ~0U, DBGCVAR_CAT_POINTER, 0, "address", "Address of the symbol to look up." }, 225 { 0, ~0U, DBGCVAR_CAT_SYMBOL, 0, "symbol", "Symbol to lookup." }, 226 226 }; 227 227 … … 264 264 { 0, 1, DBGCVAR_CAT_OPTION_NUMBER, 0, "-n <Hits>", "Maximum number of hits." }, 265 265 { 0, 1, DBGCVAR_CAT_GC_POINTER, 0, "range", "Register to show or set." }, 266 { 0, ~0 ,DBGCVAR_CAT_ANY, 0, "pattern", "Pattern to search for." },266 { 0, ~0U, DBGCVAR_CAT_ANY, 0, "pattern", "Pattern to search for." }, 267 267 }; 268 268 … … 273 273 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */ 274 274 { 1, 1, DBGCVAR_CAT_GC_POINTER, 0, "range", "Register to show or set." }, 275 { 1, ~0 ,DBGCVAR_CAT_ANY, 0, "pattern", "Pattern to search for." },275 { 1, ~0U, DBGCVAR_CAT_ANY, 0, "pattern", "Pattern to search for." }, 276 276 }; 277 277 … … 293 293 { "ba", 3, 6, &g_aArgBrkAcc[0], RT_ELEMENTS(g_aArgBrkAcc), 0, dbgcCmdBrkAccess, "<access> <size> <address> [passes [max passes]] [cmds]", 294 294 "Sets a data access breakpoint." }, 295 { "bc", 1, ~0 ,&g_aArgBrks[0], RT_ELEMENTS(g_aArgBrks), 0, dbgcCmdBrkClear, "all | <bp#> [bp# []]", "Enabled a set of breakpoints." },296 { "bd", 1, ~0 ,&g_aArgBrks[0], RT_ELEMENTS(g_aArgBrks), 0, dbgcCmdBrkDisable, "all | <bp#> [bp# []]", "Disables a set of breakpoints." },297 { "be", 1, ~0 ,&g_aArgBrks[0], RT_ELEMENTS(g_aArgBrks), 0, dbgcCmdBrkEnable, "all | <bp#> [bp# []]", "Enabled a set of breakpoints." },295 { "bc", 1, ~0U, &g_aArgBrks[0], RT_ELEMENTS(g_aArgBrks), 0, dbgcCmdBrkClear, "all | <bp#> [bp# []]", "Enabled a set of breakpoints." }, 296 { "bd", 1, ~0U, &g_aArgBrks[0], RT_ELEMENTS(g_aArgBrks), 0, dbgcCmdBrkDisable, "all | <bp#> [bp# []]", "Disables a set of breakpoints." }, 297 { "be", 1, ~0U, &g_aArgBrks[0], RT_ELEMENTS(g_aArgBrks), 0, dbgcCmdBrkEnable, "all | <bp#> [bp# []]", "Enabled a set of breakpoints." }, 298 298 { "bl", 0, 0, NULL, 0, 0, dbgcCmdBrkList, "", "Lists all the breakpoints." }, 299 299 { "bp", 1, 4, &g_aArgBrkSet[0], RT_ELEMENTS(g_aArgBrkSet), 0, dbgcCmdBrkSet, "<address> [passes [max passes]] [cmds]", … … 306 306 { "dd", 0, 1, &g_aArgDumpMem[0], RT_ELEMENTS(g_aArgDumpMem), 0, dbgcCmdDumpMem, "[addr]", "Dump memory in double words." }, 307 307 { "da", 0, 1, &g_aArgDumpMem[0], RT_ELEMENTS(g_aArgDumpMem), 0, dbgcCmdDumpMem, "[addr]", "Dump memory as ascii string." }, 308 { "dg", 0, ~0 ,&g_aArgDumpDT[0], RT_ELEMENTS(g_aArgDumpDT), 0, dbgcCmdDumpDT, "[sel [..]]", "Dump the global descriptor table (GDT)." },309 { "dga", 0, ~0 ,&g_aArgDumpDT[0], RT_ELEMENTS(g_aArgDumpDT), 0, dbgcCmdDumpDT, "[sel [..]]", "Dump the global descriptor table (GDT) including not-present entries." },310 { "di", 0, ~0 ,&g_aArgDumpIDT[0], RT_ELEMENTS(g_aArgDumpIDT), 0, dbgcCmdDumpIDT, "[int [..]]", "Dump the interrupt descriptor table (IDT)." },311 { "dia", 0, ~0 ,&g_aArgDumpIDT[0], RT_ELEMENTS(g_aArgDumpIDT), 0, dbgcCmdDumpIDT, "[int [..]]", "Dump the interrupt descriptor table (IDT) including not-present entries." },312 { "dl", 0, ~0 ,&g_aArgDumpDT[0], RT_ELEMENTS(g_aArgDumpDT), 0, dbgcCmdDumpDT, "[sel [..]]", "Dump the local descriptor table (LDT)." },313 { "dla", 0, ~0 ,&g_aArgDumpDT[0], RT_ELEMENTS(g_aArgDumpDT), 0, dbgcCmdDumpDT, "[sel [..]]", "Dump the local descriptor table (LDT) including not-present entries." },308 { "dg", 0, ~0U, &g_aArgDumpDT[0], RT_ELEMENTS(g_aArgDumpDT), 0, dbgcCmdDumpDT, "[sel [..]]", "Dump the global descriptor table (GDT)." }, 309 { "dga", 0, ~0U, &g_aArgDumpDT[0], RT_ELEMENTS(g_aArgDumpDT), 0, dbgcCmdDumpDT, "[sel [..]]", "Dump the global descriptor table (GDT) including not-present entries." }, 310 { "di", 0, ~0U, &g_aArgDumpIDT[0], RT_ELEMENTS(g_aArgDumpIDT), 0, dbgcCmdDumpIDT, "[int [..]]", "Dump the interrupt descriptor table (IDT)." }, 311 { "dia", 0, ~0U, &g_aArgDumpIDT[0], RT_ELEMENTS(g_aArgDumpIDT), 0, dbgcCmdDumpIDT, "[int [..]]", "Dump the interrupt descriptor table (IDT) including not-present entries." }, 312 { "dl", 0, ~0U, &g_aArgDumpDT[0], RT_ELEMENTS(g_aArgDumpDT), 0, dbgcCmdDumpDT, "[sel [..]]", "Dump the local descriptor table (LDT)." }, 313 { "dla", 0, ~0U, &g_aArgDumpDT[0], RT_ELEMENTS(g_aArgDumpDT), 0, dbgcCmdDumpDT, "[sel [..]]", "Dump the local descriptor table (LDT) including not-present entries." }, 314 314 { "dpd", 0, 1, &g_aArgDumpPD[0], RT_ELEMENTS(g_aArgDumpPD), 0, dbgcCmdDumpPageDir, "[addr] [index]", "Dumps page directory entries of the default context." }, 315 315 { "dpda", 0, 1, &g_aArgDumpPDAddr[0],RT_ELEMENTS(g_aArgDumpPDAddr), 0, dbgcCmdDumpPageDir, "[addr]", "Dumps specified page directory." }, … … 341 341 { "kg", 0, 0, NULL, 0, 0, dbgcCmdStack, "", "Callstack - guest." }, 342 342 { "kh", 0, 0, NULL, 0, 0, dbgcCmdStack, "", "Callstack - hypervisor." }, 343 { "lm", 0, ~0 ,&g_aArgListMods[0], RT_ELEMENTS(g_aArgListMods), 0, dbgcCmdListModules, "[module [..]]", "List modules." },344 { "lmo", 0, ~0 ,&g_aArgListMods[0], RT_ELEMENTS(g_aArgListMods), 0, dbgcCmdListModules, "[module [..]]", "List modules and their segments." },345 { "ln", 0, ~0 ,&g_aArgListNear[0], RT_ELEMENTS(g_aArgListNear), 0, dbgcCmdListNear, "[addr/sym [..]]", "List symbols near to the address. Default address is CS:EIP." },343 { "lm", 0, ~0U, &g_aArgListMods[0], RT_ELEMENTS(g_aArgListMods), 0, dbgcCmdListModules, "[module [..]]", "List modules." }, 344 { "lmo", 0, ~0U, &g_aArgListMods[0], RT_ELEMENTS(g_aArgListMods), 0, dbgcCmdListModules, "[module [..]]", "List modules and their segments." }, 345 { "ln", 0, ~0U, &g_aArgListNear[0], RT_ELEMENTS(g_aArgListNear), 0, dbgcCmdListNear, "[addr/sym [..]]", "List symbols near to the address. Default address is CS:EIP." }, 346 346 { "ls", 0, 1, &g_aArgListSource[0],RT_ELEMENTS(g_aArgListSource), 0, dbgcCmdListSource, "[addr]", "Source." }, 347 347 { "m", 1, 1, &g_aArgMemoryInfo[0],RT_ELEMENTS(g_aArgMemoryInfo), 0, dbgcCmdMemoryInfo, "<addr>", "Display information about that piece of memory." }, … … 352 352 { "rh", 0, 2, &g_aArgReg[0], RT_ELEMENTS(g_aArgReg), 0, dbgcCmdRegHyper, "[reg [newval]]", "Show or set register(s) - hypervisor reg set." }, 353 353 { "rt", 0, 0, NULL, 0, 0, dbgcCmdRegTerse, "", "Toggles terse / verbose register info." }, 354 { "s", 0, ~0 ,&g_aArgSearchMem[0], RT_ELEMENTS(g_aArgSearchMem), 0, dbgcCmdSearchMem, "[options] <range> <pattern>", "Continue last search." },355 { "sa", 2, ~0 ,&g_aArgSearchMemType[0], RT_ELEMENTS(g_aArgSearchMemType),0, dbgcCmdSearchMemType, "<range> <pattern>", "Search memory for an ascii string." },356 { "sb", 2, ~0 ,&g_aArgSearchMemType[0], RT_ELEMENTS(g_aArgSearchMemType),0, dbgcCmdSearchMemType, "<range> <pattern>", "Search memory for one or more bytes." },357 { "sd", 2, ~0 ,&g_aArgSearchMemType[0], RT_ELEMENTS(g_aArgSearchMemType),0, dbgcCmdSearchMemType, "<range> <pattern>", "Search memory for one or more double words." },358 { "sq", 2, ~0 ,&g_aArgSearchMemType[0], RT_ELEMENTS(g_aArgSearchMemType),0, dbgcCmdSearchMemType, "<range> <pattern>", "Search memory for one or more quad words." },359 { "su", 2, ~0 ,&g_aArgSearchMemType[0], RT_ELEMENTS(g_aArgSearchMemType),0, dbgcCmdSearchMemType, "<range> <pattern>", "Search memory for an unicode string." },360 { "sw", 2, ~0 ,&g_aArgSearchMemType[0], RT_ELEMENTS(g_aArgSearchMemType),0, dbgcCmdSearchMemType, "<range> <pattern>", "Search memory for one or more words." },354 { "s", 0, ~0U, &g_aArgSearchMem[0], RT_ELEMENTS(g_aArgSearchMem), 0, dbgcCmdSearchMem, "[options] <range> <pattern>", "Continue last search." }, 355 { "sa", 2, ~0U, &g_aArgSearchMemType[0], RT_ELEMENTS(g_aArgSearchMemType),0, dbgcCmdSearchMemType, "<range> <pattern>", "Search memory for an ascii string." }, 356 { "sb", 2, ~0U, &g_aArgSearchMemType[0], RT_ELEMENTS(g_aArgSearchMemType),0, dbgcCmdSearchMemType, "<range> <pattern>", "Search memory for one or more bytes." }, 357 { "sd", 2, ~0U, &g_aArgSearchMemType[0], RT_ELEMENTS(g_aArgSearchMemType),0, dbgcCmdSearchMemType, "<range> <pattern>", "Search memory for one or more double words." }, 358 { "sq", 2, ~0U, &g_aArgSearchMemType[0], RT_ELEMENTS(g_aArgSearchMemType),0, dbgcCmdSearchMemType, "<range> <pattern>", "Search memory for one or more quad words." }, 359 { "su", 2, ~0U, &g_aArgSearchMemType[0], RT_ELEMENTS(g_aArgSearchMemType),0, dbgcCmdSearchMemType, "<range> <pattern>", "Search memory for an unicode string." }, 360 { "sw", 2, ~0U, &g_aArgSearchMemType[0], RT_ELEMENTS(g_aArgSearchMemType),0, dbgcCmdSearchMemType, "<range> <pattern>", "Search memory for one or more words." }, 361 361 { "t", 0, 0, NULL, 0, 0, dbgcCmdTrace, "", "Instruction trace (step into)." }, 362 362 { "u", 0, 1, &g_aArgUnassemble[0],RT_ELEMENTS(g_aArgUnassemble), 0, dbgcCmdUnassemble, "[addr]", "Unassemble." }, -
trunk/src/VBox/Devices/Bus/DevPCI.cpp
r40280 r40282 2566 2566 PDM_DEVREG_CLASS_BUS_PCI, 2567 2567 /* cMaxInstances */ 2568 ~0 ,2568 ~0U, 2569 2569 /* cbInstance */ 2570 2570 sizeof(PCIBUS), -
trunk/src/VBox/Devices/Bus/DevPciIch9.cpp
r40280 r40282 2878 2878 PDM_DEVREG_CLASS_BUS_PCI, 2879 2879 /* cMaxInstances */ 2880 ~0 ,2880 ~0U, 2881 2881 /* cbInstance */ 2882 2882 sizeof(ICH9PCIBUS), -
trunk/src/VBox/Devices/Input/DrvKeyboardQueue.cpp
r35353 r40282 348 348 PDM_DRVREG_CLASS_KEYBOARD, 349 349 /* cMaxInstances */ 350 ~0 ,350 ~0U, 351 351 /* cbInstance */ 352 352 sizeof(DRVKBDQUEUE), -
trunk/src/VBox/Devices/Input/DrvMouseQueue.cpp
r35353 r40282 371 371 PDM_DRVREG_CLASS_MOUSE, 372 372 /* cMaxInstances */ 373 ~0 ,373 ~0U, 374 374 /* cbInstance */ 375 375 sizeof(DRVMOUSEQUEUE), -
trunk/src/VBox/Devices/Input/UsbKbd.cpp
r37795 r40282 1451 1451 0, 1452 1452 /* cMaxInstances */ 1453 ~0 ,1453 ~0U, 1454 1454 /* cbInstance */ 1455 1455 sizeof(USBHID), -
trunk/src/VBox/Devices/Input/UsbMouse.cpp
r37795 r40282 1331 1331 0, 1332 1332 /* cMaxInstances */ 1333 ~0 ,1333 ~0U, 1334 1334 /* cbInstance */ 1335 1335 sizeof(USBHID), -
trunk/src/VBox/Devices/Network/DevE1000.cpp
r40280 r40282 6201 6201 PDM_DEVREG_CLASS_NETWORK, 6202 6202 /* Maximum number of instances (per VM). */ 6203 ~0 ,6203 ~0U, 6204 6204 /* Size of the instance data. */ 6205 6205 sizeof(E1KSTATE), -
trunk/src/VBox/Devices/Network/DevPCNet.cpp
r40280 r40282 5379 5379 PDM_DEVREG_CLASS_NETWORK, 5380 5380 /* cMaxInstances */ 5381 ~0 ,5381 ~0U, 5382 5382 /* cbInstance */ 5383 5383 sizeof(PCNetState), -
trunk/src/VBox/Devices/Network/DevVirtioNet.cpp
r40280 r40282 2093 2093 PDM_DEVREG_CLASS_NETWORK, 2094 2094 /* Maximum number of instances (per VM). */ 2095 ~0 ,2095 ~0U, 2096 2096 /* Size of the instance data. */ 2097 2097 sizeof(VNETSTATE), -
trunk/src/VBox/Devices/Network/DrvDedicatedNic.cpp
r39059 r40282 527 527 PDM_DRVREG_CLASS_NETWORK, 528 528 /* cMaxInstances */ 529 ~0 ,529 ~0U, 530 530 /* cbInstance */ 531 531 sizeof(DRVDEDICATEDNIC), -
trunk/src/VBox/Devices/Network/DrvIntNet.cpp
r38630 r40282 1841 1841 PDM_DRVREG_CLASS_NETWORK, 1842 1842 /* cMaxInstances */ 1843 ~0 ,1843 ~0U, 1844 1844 /* cbInstance */ 1845 1845 sizeof(DRVINTNET), -
trunk/src/VBox/Devices/Network/DrvNAT.cpp
r39784 r40282 1462 1462 PDM_DRVREG_CLASS_NETWORK, 1463 1463 /* cMaxInstances */ 1464 ~0 ,1464 ~0U, 1465 1465 /* cbInstance */ 1466 1466 sizeof(DRVNAT), -
trunk/src/VBox/Devices/Network/DrvTAP.cpp
r39955 r40282 1011 1011 PDM_DRVREG_CLASS_NETWORK, 1012 1012 /* cMaxInstances */ 1013 ~0 ,1013 ~0U, 1014 1014 /* cbInstance */ 1015 1015 sizeof(DRVTAP), -
trunk/src/VBox/Devices/Network/DrvUDPTunnel.cpp
r37259 r40282 618 618 PDM_DRVREG_CLASS_NETWORK, 619 619 /* cMaxInstances */ 620 ~0 ,620 ~0U, 621 621 /* cbInstance */ 622 622 sizeof(DRVUDPTUNNEL), -
trunk/src/VBox/Devices/Network/DrvVDE.cpp
r37596 r40282 632 632 PDM_DRVREG_CLASS_NETWORK, 633 633 /* cMaxInstances */ 634 ~0 ,634 ~0U, 635 635 /* cbInstance */ 636 636 sizeof(DRVVDE), -
trunk/src/VBox/Devices/PC/DevACPI.cpp
r40280 r40282 3368 3368 PDM_DEVREG_CLASS_ACPI, 3369 3369 /* cMaxInstances */ 3370 ~0 ,3370 ~0U, 3371 3371 /* cbInstance */ 3372 3372 sizeof(ACPIState), -
trunk/src/VBox/Devices/PC/DrvACPI.cpp
r35353 r40282 1015 1015 PDM_DRVREG_CLASS_ACPI, 1016 1016 /* cMaxInstances */ 1017 ~0 ,1017 ~0U, 1018 1018 /* cbInstance */ 1019 1019 sizeof(DRVACPI), -
trunk/src/VBox/Devices/PC/DrvAcpiCpu.cpp
r35353 r40282 105 105 PDM_DRVREG_CLASS_ACPI, 106 106 /* cMaxInstances */ 107 ~0 ,107 ~0U, 108 108 /* cbInstance */ 109 109 sizeof(PDMDRVINS), -
trunk/src/VBox/Devices/Parallel/DrvHostParallel.cpp
r39684 r40282 490 490 PDM_DRVREG_CLASS_CHAR, 491 491 /* cMaxInstances */ 492 ~0 ,492 ~0U, 493 493 /* cbInstance */ 494 494 sizeof(DRVHOSTPARALLEL), -
trunk/src/VBox/Devices/Samples/DrvStorageFilter.cpp
r39857 r40282 365 365 PDM_DRVREG_CLASS_MEDIA, 366 366 /* cMaxInstances */ 367 ~0 ,367 ~0U, 368 368 /* cbInstance */ 369 369 sizeof(DRVSTORAGEFILTER), -
trunk/src/VBox/Devices/Serial/DrvChar.cpp
r37114 r40282 428 428 PDM_DRVREG_CLASS_CHAR, 429 429 /* cMaxInstances */ 430 ~0 ,430 ~0U, 431 431 /* cbInstance */ 432 432 sizeof(DRVCHAR), -
trunk/src/VBox/Devices/Serial/DrvHostSerial.cpp
r37597 r40282 1315 1315 PDM_DRVREG_CLASS_CHAR, 1316 1316 /* cMaxInstances */ 1317 ~0 ,1317 ~0U, 1318 1318 /* cbInstance */ 1319 1319 sizeof(DRVHOSTSERIAL), -
trunk/src/VBox/Devices/Serial/DrvNamedPipe.cpp
r39855 r40282 679 679 PDM_DRVREG_CLASS_STREAM, 680 680 /* cMaxInstances */ 681 ~0 ,681 ~0U, 682 682 /* cbInstance */ 683 683 sizeof(DRVNAMEDPIPE), -
trunk/src/VBox/Devices/Serial/DrvRawFile.cpp
r39855 r40282 212 212 PDM_DRVREG_CLASS_STREAM, 213 213 /* cMaxInstances */ 214 ~0 ,214 ~0U, 215 215 /* cbInstance */ 216 216 sizeof(DRVRAWFILE), -
trunk/src/VBox/Devices/Storage/DevAHCI.cpp
r40280 r40282 8253 8253 PDM_DEVREG_CLASS_STORAGE, 8254 8254 /* cMaxInstances */ 8255 ~0 ,8255 ~0U, 8256 8256 /* cbInstance */ 8257 8257 sizeof(AHCI), -
trunk/src/VBox/Devices/Storage/DevBusLogic.cpp
r40280 r40282 3230 3230 PDM_DEVREG_CLASS_STORAGE, 3231 3231 /* cMaxInstances */ 3232 ~0 ,3232 ~0U, 3233 3233 /* cbInstance */ 3234 3234 sizeof(BUSLOGIC), -
trunk/src/VBox/Devices/Storage/DevLsiLogicSCSI.cpp
r40280 r40282 5294 5294 PDM_DEVREG_CLASS_STORAGE, 5295 5295 /* cMaxInstances */ 5296 ~0 ,5296 ~0U, 5297 5297 /* cbInstance */ 5298 5298 sizeof(LSILOGICSCSI), … … 5350 5350 PDM_DEVREG_CLASS_STORAGE, 5351 5351 /* cMaxInstances */ 5352 ~0 ,5352 ~0U, 5353 5353 /* cbInstance */ 5354 5354 sizeof(LSILOGICSCSI), -
trunk/src/VBox/Devices/Storage/DrvBlock.cpp
r38878 r40282 1034 1034 PDM_DRVREG_CLASS_BLOCK, 1035 1035 /* cMaxInstances */ 1036 ~0 ,1036 ~0U, 1037 1037 /* cbInstance */ 1038 1038 sizeof(DRVBLOCK), -
trunk/src/VBox/Devices/Storage/DrvDiskIntegrity.cpp
r39518 r40282 1388 1388 PDM_DRVREG_CLASS_BLOCK, 1389 1389 /* cMaxInstances */ 1390 ~0 ,1390 ~0U, 1391 1391 /* cbInstance */ 1392 1392 sizeof(DRVDISKINTEGRITY), -
trunk/src/VBox/Devices/Storage/DrvHostDVD.cpp
r39731 r40282 854 854 PDM_DRVREG_CLASS_BLOCK, 855 855 /* cMaxInstances */ 856 ~0 ,856 ~0U, 857 857 /* cbInstance */ 858 858 sizeof(DRVHOSTBASE), -
trunk/src/VBox/Devices/Storage/DrvHostFloppy.cpp
r38566 r40282 250 250 PDM_DRVREG_CLASS_BLOCK, 251 251 /* cMaxInstances */ 252 ~0 ,252 ~0U, 253 253 /* cbInstance */ 254 254 sizeof(DRVHOSTFLOPPY), -
trunk/src/VBox/Devices/Storage/DrvMediaISO.cpp
r39855 r40282 287 287 PDM_DRVREG_CLASS_MEDIA, 288 288 /* cMaxInstances */ 289 ~0 ,289 ~0U, 290 290 /* cbInstance */ 291 291 sizeof(DRVMEDIAISO), -
trunk/src/VBox/Devices/Storage/DrvRawImage.cpp
r39855 r40282 339 339 PDM_DRVREG_CLASS_MEDIA, 340 340 /* cMaxInstances */ 341 ~0 ,341 ~0U, 342 342 /* cbInstance */ 343 343 sizeof(DRVRAWIMAGE), -
trunk/src/VBox/Devices/Storage/DrvSCSI.cpp
r39764 r40282 972 972 PDM_DRVREG_CLASS_SCSI, 973 973 /* cMaxInstances */ 974 ~0 ,974 ~0U, 975 975 /* cbInstance */ 976 976 sizeof(DRVSCSI), -
trunk/src/VBox/Devices/Storage/DrvSCSIHost.cpp
r39498 r40282 513 513 PDM_DRVREG_CLASS_SCSI, 514 514 /* cMaxInstances */ 515 ~0 ,515 ~0U, 516 516 /* cbInstance */ 517 517 sizeof(DRVSCSIHOST), -
trunk/src/VBox/Devices/Storage/DrvVD.cpp
r39855 r40282 2813 2813 PDM_DRVREG_CLASS_MEDIA, 2814 2814 /* cMaxInstances */ 2815 ~0 ,2815 ~0U, 2816 2816 /* cbInstance */ 2817 2817 sizeof(VBOXDISK), -
trunk/src/VBox/Devices/Storage/UsbMsd.cpp
r37795 r40282 1605 1605 0, 1606 1606 /* cMaxInstances */ 1607 ~0 ,1607 ~0U, 1608 1608 /* cbInstance */ 1609 1609 sizeof(USBMSD), -
trunk/src/VBox/Devices/USB/DevOHCI.cpp
r40280 r40282 5550 5550 PDM_DEVREG_CLASS_BUS_USB, 5551 5551 /* cMaxInstances */ 5552 ~0 ,5552 ~0U, 5553 5553 /* cbInstance */ 5554 5554 sizeof(OHCI), -
trunk/src/VBox/Devices/USB/DrvVUSBRootHub.cpp
r35353 r40282 1116 1116 PDM_DRVREG_CLASS_USB, 1117 1117 /* cMaxInstances */ 1118 ~0 ,1118 ~0U, 1119 1119 /* cbInstance */ 1120 1120 sizeof(VUSBROOTHUB), -
trunk/src/VBox/Devices/USB/USBProxyDevice.cpp
r36479 r40282 1077 1077 0, 1078 1078 /* cMaxInstances */ 1079 ~0 ,1079 ~0U, 1080 1080 /* cbInstance */ 1081 1081 sizeof(USBPROXYDEV), -
trunk/src/VBox/Frontends/VBoxBFE/DisplayImpl.cpp
r36590 r40282 1262 1262 PDM_DRVREG_CLASS_DISPLAY, 1263 1263 /* cMaxInstances */ 1264 ~0 ,1264 ~0U, 1265 1265 /* cbInstance */ 1266 1266 sizeof(DRVMAINDISPLAY), -
trunk/src/VBox/Frontends/VBoxBFE/KeyboardImpl.cpp
r35346 r40282 272 272 PDM_DRVREG_CLASS_KEYBOARD, 273 273 /* cMaxInstances */ 274 ~0 ,274 ~0U, 275 275 /* cbInstance */ 276 276 sizeof(DRVMAINKEYBOARD), -
trunk/src/VBox/Frontends/VBoxBFE/StatusImpl.cpp
r35346 r40282 206 206 PDM_DRVREG_CLASS_STATUS, 207 207 /* cMaxInstances */ 208 ~0 ,208 ~0U, 209 209 /* cbInstance */ 210 210 sizeof(DRVMAINSTATUS), -
trunk/src/VBox/Frontends/VBoxBFE/VMMDevInterface.cpp
r39892 r40282 444 444 PDM_DRVREG_CLASS_VMMDEV, 445 445 /* cMaxInstances */ 446 ~0 ,446 ~0U, 447 447 /* cbInstance */ 448 448 sizeof(DRVMAINVMMDEV), -
trunk/src/VBox/Frontends/VBoxSDL/Framebuffer.cpp
r34513 r40282 1184 1184 ) 1185 1185 { 1186 SDL_Color clrFg = {( mSecureLabelColorFG & 0x00FF0000) >> 16,1187 ( mSecureLabelColorFG & 0x0000FF00) >> 8,1188 mSecureLabelColorFG & 0x000000FF, 0};1186 SDL_Color clrFg = {(uint8_t)((mSecureLabelColorFG & 0x00FF0000) >> 16), 1187 (uint8_t)((mSecureLabelColorFG & 0x0000FF00) >> 8), 1188 (uint8_t)( mSecureLabelColorFG & 0x000000FF ), 0}; 1189 1189 SDL_Surface *sText = (pTTF_RenderUTF8_Blended != NULL) 1190 1190 ? pTTF_RenderUTF8_Blended(mLabelFont, mSecureLabelText.c_str(), clrFg) -
trunk/src/VBox/Main/src-client/AudioSnifferInterface.cpp
r35368 r40282 251 251 PDM_DRVREG_CLASS_AUDIO, 252 252 /* cMaxInstances */ 253 ~0 ,253 ~0U, 254 254 /* cbInstance */ 255 255 sizeof(DRVAUDIOSNIFFER), -
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r40276 r40282 9819 9819 PDM_DRVREG_CLASS_STATUS, 9820 9820 /* cMaxInstances */ 9821 ~0 ,9821 ~0U, 9822 9822 /* cbInstance */ 9823 9823 sizeof(DRVMAINSTATUS), -
trunk/src/VBox/Main/src-client/DisplayImpl.cpp
r40257 r40282 4197 4197 PDM_DRVREG_CLASS_DISPLAY, 4198 4198 /* cMaxInstances */ 4199 ~0 ,4199 ~0U, 4200 4200 /* cbInstance */ 4201 4201 sizeof(DRVMAINDISPLAY), -
trunk/src/VBox/Main/src-client/KeyboardImpl.cpp
r36724 r40282 416 416 PDM_DRVREG_CLASS_KEYBOARD, 417 417 /* cMaxInstances */ 418 ~0 ,418 ~0U, 419 419 /* cbInstance */ 420 420 sizeof(DRVMAINKEYBOARD), -
trunk/src/VBox/Main/src-client/MouseImpl.cpp
r38590 r40282 831 831 PDM_DRVREG_CLASS_MOUSE, 832 832 /* cMaxInstances */ 833 ~0 ,833 ~0U, 834 834 /* cbInstance */ 835 835 sizeof(DRVMAINMOUSE), -
trunk/src/VBox/Main/src-client/PciRawDevImpl.cpp
r37802 r40282 198 198 PDM_DRVREG_CLASS_PCIRAW, 199 199 /* cMaxInstances */ 200 ~0 ,200 ~0U, 201 201 /* cbInstance */ 202 202 sizeof(DRVMAINPCIRAWDEV), -
trunk/src/VBox/Main/src-client/VMMDevInterface.cpp
r39890 r40282 910 910 PDM_DRVREG_CLASS_VMMDEV, 911 911 /* cMaxInstances */ 912 ~0 ,912 ~0U, 913 913 /* cbInstance */ 914 914 sizeof(DRVMAINVMMDEV), -
trunk/src/VBox/Runtime/testcase/tstLdr.cpp
r38636 r40282 101 101 } aLoads[6] = 102 102 { 103 { NULL, NULL, ( int32_t)0xefefef00, "foo" },104 { NULL, NULL, ( int32_t)0x40404040, "bar" },105 { NULL, NULL, ( int32_t)0xefefef00, "foobar" },106 { NULL, NULL, ( int32_t)0xefefef00, "kLdr-foo" },107 { NULL, NULL, ( int32_t)0x40404040, "kLdr-bar" },108 { NULL, NULL, ( int32_t)0xefefef00, "kLdr-foobar" }103 { NULL, NULL, (RTUINTPTR)0xefefef00, "foo" }, 104 { NULL, NULL, (RTUINTPTR)0x40404040, "bar" }, 105 { NULL, NULL, (RTUINTPTR)0xefefef00, "foobar" }, 106 { NULL, NULL, (RTUINTPTR)0xefefef00, "kLdr-foo" }, 107 { NULL, NULL, (RTUINTPTR)0x40404040, "kLdr-bar" }, 108 { NULL, NULL, (RTUINTPTR)0xefefef00, "kLdr-foobar" } 109 109 }; 110 110 unsigned i; … … 170 170 static RTUINTPTR aRels[] = 171 171 { 172 ( int32_t)0xefefef00, /* same. */173 ( int32_t)0x40404040, /* the other. */174 ( int32_t)0xefefef00, /* back. */175 ( int32_t)0x40404040, /* the other. */176 ( int32_t)0xefefef00, /* back again. */177 ( int32_t)0x77773420, /* somewhere entirely else. */178 ( int32_t)0xf0000000, /* somewhere entirely else. */179 ( int32_t)0x40404040, /* the other. */180 ( int32_t)0xefefef00 /* back again. */172 (RTUINTPTR)0xefefef00, /* same. */ 173 (RTUINTPTR)0x40404040, /* the other. */ 174 (RTUINTPTR)0xefefef00, /* back. */ 175 (RTUINTPTR)0x40404040, /* the other. */ 176 (RTUINTPTR)0xefefef00, /* back again. */ 177 (RTUINTPTR)0x77773420, /* somewhere entirely else. */ 178 (RTUINTPTR)0xf0000000, /* somewhere entirely else. */ 179 (RTUINTPTR)0x40404040, /* the other. */ 180 (RTUINTPTR)0xefefef00 /* back again. */ 181 181 }; 182 182 struct Symbols … … 188 188 } aSyms[] = 189 189 { 190 { ~0 , "Entrypoint" },191 { ~0 , "SomeExportFunction1" },192 { ~0 , "SomeExportFunction2" },193 { ~0 , "SomeExportFunction3" },194 { ~0 , "SomeExportFunction4" },195 { ~0 , "SomeExportFunction5" },196 { ~0 , "SomeExportFunction5" },197 { ~0 , "DISCoreOne" }190 { ~0U, "Entrypoint" }, 191 { ~0U, "SomeExportFunction1" }, 192 { ~0U, "SomeExportFunction2" }, 193 { ~0U, "SomeExportFunction3" }, 194 { ~0U, "SomeExportFunction4" }, 195 { ~0U, "SomeExportFunction5" }, 196 { ~0U, "SomeExportFunction5" }, 197 { ~0U, "DISCoreOne" } 198 198 }; 199 199 -
trunk/src/recompiler/VBoxRecompiler.c
r39699 r40282 199 199 { 200 200 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */ 201 { 0, ~0 ,DBGCVAR_CAT_NUMBER, 0, "on/off", "Boolean value/mnemonic indicating the new state." },201 { 0, ~0U, DBGCVAR_CAT_NUMBER, 0, "on/off", "Boolean value/mnemonic indicating the new state." }, 202 202 }; 203 203
Note:
See TracChangeset
for help on using the changeset viewer.