Changeset 6288
- Timestamp:
- 01/09/08 01:47:09 (9 months ago)
- Files:
-
- trunk/Doxyfile.Core (modified) (20 diffs)
- trunk/Makefile.kmk (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Doxyfile.Core
r6126 r6288 1 # Doxyfile 1.3.7 2 3 # This file describes the settings to be used by the documentation system 4 # doxygen (www.doxygen.org) for a project 5 # 6 # All text after a hash (#) is considered a comment and will be ignored 7 # The format is: 8 # TAG = value [value, ...] 9 # For lists items can also be appended using: 10 # TAG += value [value, ...] 11 # Values that contain spaces should be placed between quotes (" ") 1 # Doxyfile 1.5.4 12 2 13 3 #--------------------------------------------------------------------------- 14 4 # Project related configuration options 15 5 #--------------------------------------------------------------------------- 16 17 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded 18 # by quotes) that should identify the project. 19 6 DOXYFILE_ENCODING = UTF-8 20 7 PROJECT_NAME = VBox 21 22 # The PROJECT_NUMBER tag can be used to enter a project or revision number.23 # This could be handy for archiving the generated documentation or24 # if some version control system is used.25 26 8 PROJECT_NUMBER = 27 28 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 29 # base path where the generated documentation will be put. 30 # If a relative path is entered, it will be relative to the location 31 # where doxygen was started. If left blank the current directory will be used. 32 33 OUTPUT_DIRECTORY = $(PATH_OUT)/docs/Core 34 35 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 36 # 2 levels of 10 sub-directories under the output directory of each output 37 # format and will distribute the generated files over these directories. 38 # Enabling this option can be useful when feeding doxygen a huge amount of source 39 # files, where putting all generated files in the same directory would otherwise 40 # cause performance problems for the file system. 41 9 # OUTPUT_DIRECTORY = later 42 10 CREATE_SUBDIRS = NO 43 44 # The OUTPUT_LANGUAGE tag is used to specify the language in which all45 # documentation generated by doxygen is written. Doxygen will use this46 # information to generate all constant output in the proper language.47 # The default language is English, other supported languages are:48 # Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch,49 # Finnish, French, German, Greek, Hungarian, Italian, Japanese, Japanese-en50 # (Japanese with English messages), Korean, Korean-en, Norwegian, Polish, Portuguese,51 # Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian.52 53 11 OUTPUT_LANGUAGE = English 54 55 # This tag can be used to specify the encoding used in the generated output.56 # The encoding is not always determined by the language that is chosen,57 # but also whether or not the output is meant for Windows or non-Windows users.58 # In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES59 # forces the Windows encoding (this is the default for the Windows binary),60 # whereas setting the tag to NO uses a Unix-style encoding (the default for61 # all platforms other than Windows).62 63 USE_WINDOWS_ENCODING = YES64 65 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will66 # include brief member descriptions after the members that are listed in67 # the file and class documentation (similar to JavaDoc).68 # Set to NO to disable this.69 70 12 BRIEF_MEMBER_DESC = YES 71 72 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend73 # the brief description of a member or function before the detailed description.74 # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the75 # brief descriptions will be completely suppressed.76 77 13 REPEAT_BRIEF = YES 78 79 # This tag implements a quasi-intelligent brief description abbreviator80 # that is used to form the text in various listings. Each string81 # in this list, if found as the leading text of the brief description, will be82 # stripped from the text and the result after processing the whole list, is used83 # as the annotated text. Otherwise, the brief description is used as-is. If left84 # blank, the following values are used ("$name" is automatically replaced with the85 # name of the entity): "The $name class" "The $name widget" "The $name file"86 # "is" "provides" "specifies" "contains" "represents" "a" "an" "the"87 88 14 ABBREVIATE_BRIEF = 89 90 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then91 # Doxygen will generate a detailed section even if there is only a brief92 # description.93 94 15 ALWAYS_DETAILED_SEC = NO 95 96 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all inherited97 # members of a class in the documentation of that class as if those members were98 # ordinary class members. Constructors, destructors and assignment operators of99 # the base classes will not be shown.100 101 16 INLINE_INHERITED_MEMB = NO 102 103 # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full104 # path before files name in the file list and in the header files. If set105 # to NO the shortest path that makes the file name unique will be used.106 107 17 FULL_PATH_NAMES = NO 108 109 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag110 # can be used to strip a user-defined part of the path. Stripping is111 # only done if one of the specified strings matches the left-hand part of112 # the path. The tag can be used to show relative paths in the file list.113 # If left blank the directory from which doxygen is run is used as the114 # path to strip.115 116 18 STRIP_FROM_PATH = 117 118 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of119 # the path mentioned in the documentation of a class, which tells120 # the reader which header file to include in order to use a class.121 # If left blank only the name of the header file containing the class122 # definition is used. Otherwise one should specify the include paths that123 # are normally passed to the compiler using the -I flag.124 125 19 STRIP_FROM_INC_PATH = 126 127 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter128 # (but less readable) file names. This can be useful is your file systems129 # doesn't support long names like on DOS, Mac, or CD-ROM.130 131 20 SHORT_NAMES = NO 132 133 # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen134 # will interpret the first line (until the first dot) of a JavaDoc-style135 # comment as the brief description. If set to NO, the JavaDoc136 # comments will behave just like the Qt-style comments (thus requiring an137 # explicit @brief command for a brief description.138 139 21 JAVADOC_AUTOBRIEF = YES 140 141 # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen 142 # treat a multi-line C++ special comment block (i.e. a block of //! or /// 143 # comments) as a brief description. This used to be the default behaviour. 144 # The new default is to treat a multi-line C++ comment block as a detailed 145 # description. Set this tag to YES if you prefer the old behaviour instead. 146 22 QT_AUTOBRIEF = NO 147 23 MULTILINE_CPP_IS_BRIEF = NO 148 149 # If the DETAILS_AT_TOP tag is set to YES then Doxygen150 # will output the detailed description near the top, like JavaDoc.151 # If set to NO, the detailed description appears after the member152 # documentation.153 154 24 DETAILS_AT_TOP = NO 155 156 # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented157 # member inherits the documentation from any documented member that it158 # re-implements.159 160 25 INHERIT_DOCS = YES 161 162 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 163 # tag is set to YES, then doxygen will reuse the documentation of the first 164 # member in the group (if any) for the other members of the group. By default 165 # all members of a group must be documented explicitly. 166 167 DISTRIBUTE_GROUP_DOC = NO 168 169 # The TAB_SIZE tag can be used to set the number of spaces in a tab. 170 # Doxygen uses this value to replace tabs by spaces in code fragments. 171 26 SEPARATE_MEMBER_PAGES = NO 172 27 TAB_SIZE = 4 173 174 # This tag can be used to specify a number of aliases that acts175 # as commands in the documentation. An alias has the form "name=value".176 # For example adding "sideeffect=\par Side Effects:\n" will allow you to177 # put the command \sideeffect (or @sideeffect) in the documentation, which178 # will result in a user-defined paragraph with heading "Side Effects:".179 # You can put \n's in the value part of an alias to insert newlines.180 181 28 ALIASES = \ 182 29 "note=@remark" \ … … 185 32 "vmstateto=@par VM State Out:\n" 186 33 187 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources 188 # only. Doxygen will then generate output that is more tailored for C. 189 # For instance, some of the names that are used will be different. The list 190 # of all members will be omitted, etc. 34 # The following is for Global Configuration options. 35 ALIASES += \ 36 gcfgm{6}="\xrefitem lst_gcfgm \"GCFGM\" \"Global Configuration Values\" \ 37 <b>Name:</b> \1 <br> \ 38 <b>Type:</b> \2 <br> \ 39 <b>Unit:</b> \6 <br> \ 40 <b>Min:</b> \3 <br> \ 41 <b>Max:</b> \4 <br> \ 42 <b>Default:</b> \5 <br> \ 43 " 44 ALIASES += \ 45 gcfgm{5}="\xrefitem lst_gcfgm \"GCFGM\" \"Global Configuration Values\" \ 46 <b>Name:</b> \1 <br> \ 47 <b>Type:</b> \2 <br> \ 48 <b>Min:</b> \3 <br> \ 49 <b>Max:</b> \4 <br> \ 50 <b>Default:</b> \5 <br> \ 51 " 52 ALIASES += \ 53 gcfgm{4}="\xrefitem lst_gcfgm \"GCFGM\" \"Global Configuration Values\" \ 54 <b>Name:</b> \1 <br> \ 55 <b>Type:</b> \2 <br> \ 56 <b>Min:</b> \3 <br> \ 57 <b>Max:</b> \4 <br> \ 58 " 59 ALIASES += \ 60 gcfgm{3}="\xrefitem lst_gcfgm \"GCFGM\" \"Global Configuration Values\" \ 61 <b>Name:</b> \1 <br> \ 62 <b>Type:</b> \2 <br> \ 63 <b>Default:</b> \3 <br> \ 64 " 65 ALIASES += \ 66 gcfgm{2}="\xrefitem lst_gcfgm \"GCFGM\" \"Global Configuration Values\" \ 67 <b>Name:</b> \1 <br> \ 68 <b>Type:</b> \2 <br> \ 69 " 70 71 # The following is for per-VM Configuration options. 72 ALIASES += \ 73 cfgm{6}="\xrefitem lst_gcfgm \"GCFGM\" \"Global Configuration Values\" \ 74 <b>Name:</b> \1 <br> \ 75 <b>Type:</b> \2 <br> \ 76 <b>Unit:</b> \6 <br> \ 77 <b>Min:</b> \3 <br> \ 78 <b>Max:</b> \4 <br> \ 79 <b>Default:</b> \5 <br> \ 80 " 81 ALIASES += \ 82 cfgm{5}="\xrefitem lst_gcfgm \"GCFGM\" \"Global Configuration Values\" \ 83 <b>Name:</b> \1 <br> \ 84 <b>Type:</b> \2 <br> \ 85 <b>Min:</b> \3 <br> \ 86 <b>Max:</b> \4 <br> \ 87 <b>Default:</b> \5 <br> \ 88 " 89 ALIASES += \ 90 cfgm{4}="\xrefitem lst_gcfgm \"GCFGM\" \"Global Configuration Values\" \ 91 <b>Name:</b> \1 <br> \ 92 <b>Type:</b> \2 <br> \ 93 <b>Min:</b> \3 <br> \ 94 <b>Max:</b> \4 <br> \ 95 " 96 ALIASES += \ 97 cfgm{3}="\xrefitem lst_gcfgm \"GCFGM\" \"Global Configuration Values\" \ 98 <b>Name:</b> \1 <br> \ 99 <b>Type:</b> \2 <br> \ 100 <b>Default:</b> \3 <br> \ 101 " 102 ALIASES += \ 103 cfgm{2}="\xrefitem lst_gcfgm \"GCFGM\" \"Global Configuration Values\" \ 104 <b>Name:</b> \1 <br> \ 105 <b>Type:</b> \2 <br> \ 106 " 191 107 192 108 OPTIMIZE_OUTPUT_FOR_C = YES 193 194 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources195 # only. Doxygen will then generate output that is more tailored for Java.196 # For instance, namespaces will be presented as packages, qualified scopes197 # will look different, etc.198 199 109 OPTIMIZE_OUTPUT_JAVA = NO 200 201 # Set the SUBGROUPING tag to YES (the default) to allow class member groups of 202 # the same type (for instance a group of public functions) to be put as a 203 # subgroup of that type (e.g. under the Public Functions section). Set it to 204 # NO to prevent subgrouping. Alternatively, this can be done per class using 205 # the \nosubgrouping command. 206 110 BUILTIN_STL_SUPPORT = NO 111 CPP_CLI_SUPPORT = NO 112 SIP_SUPPORT = NO 113 DISTRIBUTE_GROUP_DOC = NO 207 114 SUBGROUPING = YES 115 TYPEDEF_HIDES_STRUCT = NO 208 116 209 117 #--------------------------------------------------------------------------- 210 118 # Build related configuration options 211 119 #--------------------------------------------------------------------------- 212 213 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in214 # documentation are documented, even if no documentation was available.215 # Private class members and static file members will be hidden unless216 # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES217 218 120 EXTRACT_ALL = YES 219 220 # If the EXTRACT_PRIVATE tag is set to YES all private members of a class221 # will be included in the documentation.222 223 121 EXTRACT_PRIVATE = YES 224 225 # If the EXTRACT_STATIC tag is set to YES all static members of a file226 # will be included in the documentation.227 228 122 EXTRACT_STATIC = YES 229 230 # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)231 # defined locally in source files will be included in the documentation.232 # If set to NO only classes defined in header files are included.233 234 123 EXTRACT_LOCAL_CLASSES = YES 235 236 # This flag is only useful for Objective-C code. When set to YES local237 # methods, which are defined in the implementation section but not in238 # the interface are included in the documentation.239 # If set to NO (the default) only methods in the interface are included.240 241 124 EXTRACT_LOCAL_METHODS = NO 242 243 # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 244 # undocumented members of documented classes, files or namespaces. 245 # If set to NO (the default) these members will be included in the 246 # various overviews, but no documentation section is generated. 247 # This option has no effect if EXTRACT_ALL is enabled. 248 125 EXTRACT_ANON_NSPACES = NO 249 126 HIDE_UNDOC_MEMBERS = NO 250 251 # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all252 # undocumented classes that are normally visible in the class hierarchy.253 # If set to NO (the default) these classes will be included in the various254 # overviews. This option has no effect if EXTRACT_ALL is enabled.255 256 127 HIDE_UNDOC_CLASSES = NO 257 258 # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all259 # friend (class|struct|union) declarations.260 # If set to NO (the default) these declarations will be included in the261 # documentation.262 263 128 HIDE_FRIEND_COMPOUNDS = NO 264 265 # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any266 # documentation blocks found inside the body of a function.267 # If set to NO (the default) these blocks will be appended to the268 # function's detailed documentation block.269 270 129 HIDE_IN_BODY_DOCS = NO 271 272 # The INTERNAL_DOCS tag determines if documentation 273 # that is typed after a \internal command is included. If the tag is set 274 # to NO (the default) then the documentation will be excluded. 275 # Set it to YES to include the internal documentation. 276 277 INTERNAL_DOCS = YES 278 279 # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate 280 # file names in lower-case letters. If set to YES upper-case letters are also 281 # allowed. This is useful if you have classes or files whose names only differ 282 # in case and if your file system supports case sensitive file names. Windows 283 # users are advised to set this option to NO. 284 130 INTERNAL_DOCS = NO 285 131 CASE_SENSE_NAMES = NO 286 287 # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen288 # will show members with their full class and namespace scopes in the289 # documentation. If set to YES the scope will be hidden.290 291 132 HIDE_SCOPE_NAMES = NO 292 293 # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen294 # will put a list of the files that are included by a file in the documentation295 # of that file.296 297 133 SHOW_INCLUDE_FILES = YES 298 299 # If the INLINE_INFO tag is set to YES (the default) then a tag [inline]300 # is inserted in the documentation for inline members.301 302 134 INLINE_INFO = YES 303 304 # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen305 # will sort the (detailed) documentation of file and class members306 # alphabetically by member name. If set to NO the members will appear in307 # declaration order.308 309 135 SORT_MEMBER_DOCS = YES 310 311 # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the312 # brief documentation of file, namespace and class members alphabetically313 # by member name. If set to NO (the default) the members will appear in314 # declaration order.315 316 136 SORT_BRIEF_DOCS = NO 317 318 # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be319 # sorted by fully-qualified names, including namespaces. If set to320 # NO (the default), the class list will be sorted only by class name,321 # not including the namespace part.322 # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.323 # Note: This option applies only to the class list, not to the324 # alphabetical list.325 326 137 SORT_BY_SCOPE_NAME = NO 327 328 # The GENERATE_TODOLIST tag can be used to enable (YES) or329 # disable (NO) the todo list. This list is created by putting \todo330 # commands in the documentation.331 332 138 GENERATE_TODOLIST = YES 333 334 # The GENERATE_TESTLIST tag can be used to enable (YES) or335 # disable (NO) the test list. This list is created by putting \test336 # commands in the documentation.337 338 139 GENERATE_TESTLIST = YES 339 340 # The GENERATE_BUGLIST tag can be used to enable (YES) or341 # disable (NO) the bug list. This list is created by putting \bug342 # commands in the documentation.343 344 140 GENERATE_BUGLIST = YES 345 346 # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or347 # disable (NO) the deprecated list. This list is created by putting348 # \deprecated commands in the documentation.349 350 141 GENERATE_DEPRECATEDLIST= YES 351 352 # The ENABLED_SECTIONS tag can be used to enable conditional353 # documentation sections, marked by \if sectionname ... \endif.354 355 142 ENABLED_SECTIONS = 356 357 # The MAX_INITIALIZER_LINES tag determines the maximum number of lines358 # the initial value of a variable or define consists of for it to appear in359 # the documentation. If the initializer consists of more lines than specified360 # here it will be hidden. Use a value of 0 to hide initializers completely.361 # The appearance of the initializer of individual variables and defines in the362 # documentation can be controlled using \showinitializer or \hideinitializer363 # command in the documentation regardless of this setting.364 365 143 MAX_INITIALIZER_LINES = 30 366 367 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated368 # at the bottom of the documentation of classes and structs. If set to YES the369 # list will mention the files that were used to generate the documentation.370 371 144 SHOW_USED_FILES = YES 145 SHOW_DIRECTORIES = NO 146 FILE_VERSION_FILTER = 372 147 373 148 #--------------------------------------------------------------------------- 374 149 # configuration options related to warning and progress messages 375 150 #--------------------------------------------------------------------------- 376 377 # The QUIET tag can be used to turn on/off the messages that are generated378 # by doxygen. Possible values are YES and NO. If left blank NO is used.379 380 151 QUIET = NO 381 382 # The WARNINGS tag can be used to turn on/off the warning messages that are383 # generated by doxygen. Possible values are YES and NO. If left blank384 # NO is used.385 386 152 WARNINGS = YES 387 388 # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings389 # for undocumented members. If EXTRACT_ALL is set to YES then this flag will390 # automatically be disabled.391 392 153 WARN_IF_UNDOCUMENTED = YES 393 394 # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for395 # potential errors in the documentation, such as not documenting some396 # parameters in a documented function, or documenting parameters that397 # don't exist or using markup commands wrongly.398 399 154 WARN_IF_DOC_ERROR = YES 400 401 # The WARN_FORMAT tag determines the format of the warning messages that 402 # doxygen can produce. The string should contain the $file, $line, and $text 403 # tags, which will be replaced by the file and line number from which the 404 # warning originated and the warning text. 405 155 WARN_NO_PARAMDOC = NO 406 156 WARN_FORMAT = "$file:$line: $text" 407 408 # The WARN_LOGFILE tag can be used to specify a file to which warning 409 # and error messages should be written. If left blank the output is written 410 # to stderr. 411 412 WARN_LOGFILE = $(PATH_OUT)/docs/Core.err 157 #WARN_LOGFILE = later 413 158 414 159 #--------------------------------------------------------------------------- 415 160 # configuration options related to the input files 416 161 #--------------------------------------------------------------------------- 417 418 # The INPUT tag can be used to specify the files and/or directories that contain 419 # documented source files. You may enter file names like "myfile.cpp" or 420 # directories like "/usr/src/myproject". Separate the files or directories 421 # with spaces. 422 423 ## VMM internal .h files: 424 # find src/VBox/VMM/ -name '*Internal*h' | sort | sed -e 's/^/ /' -e 's/$/ \\/' 425 ## VMM .cpp files: 426 # find src/VBox/VMM/ -name '*.cpp' | sed -e '/testcase/d' -e '/Deps\.cpp/d' -e 's/^\(.*\)\/\([a-zA-Z0-9.]*$\)/\2 \1\/\2/' | sort | sed -e 's/^[a-zA-Z0-9.]* */ /' -e 's/$/ \\/' 427 428 INPUT = \ 429 doc/VBox-doc.c \ 430 doc/VBox-CodingGuidelines.cpp \ 431 src/VBox/VMM/VMMCodingGuidelines.cpp \ 432 src/VBox/VMM/VMMDocsRawMode.cpp \ 433 include/VBox/cdefs.h \ 434 include/VBox/vmapi.h \ 435 include/VBox/vmm.h \ 436 include/VBox/cpum.h \ 437 include/VBox/mm.h \ 438 include/VBox/pgm.h \ 439 include/VBox/selm.h \ 440 include/VBox/trpm.h \ 441 include/VBox/patm.h \ 442 include/VBox/dbgf.h \ 443 include/VBox/stam.h \ 444 include/VBox/em.h \ 445 include/VBox/pdm.h \ 446 include/VBox/rem.h \ 447 include/VBox/iom.h \ 448 include/VBox/cfgm.h \ 449 include/VBox/tm.h \ 450 include/VBox/csam.h \ 451 include/VBox/ssm.h \ 452 include/VBox/hwaccm.h \ 453 include/VBox/hwacc_svm.h \ 454 include/VBox/hwacc_vmx.h \ 455 \ 456 src/VBox/VMM/CFGMInternal.h \ 457 src/VBox/VMM/CPUMInternal.h \ 458 src/VBox/VMM/DBGFInternal.h \ 459 src/VBox/VMM/EMInternal.h \ 460 src/VBox/VMM/HWACCMInternal.h \ 461 src/VBox/VMM/IOMInternal.h \ 462 src/VBox/VMM/MMInternal.h \ 463 src/VBox/VMM/PDMInternal.h \ 464 src/VBox/VMM/PGMInternal.h \ 465 src/VBox/VMM/PATM/CSAMInternal.h \ 466 src/VBox/VMM/PATM/PATMInternal.h \ 467 src/VBox/VMM/REMInternal.h \ 468 src/VBox/VMM/SELMInternal.h \ 469 src/VBox/VMM/SSMInternal.h \ 470 src/VBox/VMM/STAMInternal.h \ 471 src/VBox/VMM/TMInternal.h \ 472 src/VBox/VMM/TRPMInternal.h \ 473 src/VBox/VMM/VMInternal.h \ 474 src/VBox/VMM/VMMInternal.h \ 475 \ 476 include/VBox/vm.h \ 477 include/VBox/sup.h \ 478 include/VBox/VBoxHDD.h \ 479 include/VBox/types.h \ 480 include/VBox/err.h \ 481 include/VBox/x86.h \ 482 include/VBox/cpumdis.h \ 483 include/VBox/dbggui.h \ 484 include/VBox/dis.h \ 485 include/VBox/disopcode.h \ 486 include/VBox/intnet.h \ 487 include/VBox/settings.h \ 488 include/VBox/pci.h \ 489 include/VBox/scsi.h \ 490 include/VBox/shflsvc.h \ 491 include/VBox/hgcmsvc.h \ 492 include/VBox/usb.h \ 493 include/VBox/vusb.h \ 494 \ 495 include/VBox/log.h \ 496 include/VBox/param.h \ 497 include/VBox/version.h \ 498 \ 499 include/iprt/alloc.h \ 500 include/iprt/asm.h \ 501 include/iprt/assert.h \ 502 include/iprt/avl.h \ 503 include/iprt/cdefs.h \ 504 include/iprt/crc32.h \ 505 include/iprt/critsect.h \ 506 include/iprt/dir.h \ 507 include/iprt/err.h \ 508 include/iprt/file.h \ 509 include/iprt/fs.h \ 510 include/iprt/ldr.h \ 511 include/iprt/log.h \ 512 include/iprt/path.h \ 513 include/iprt/process.h \ 514 include/iprt/runtime.h \ 515 include/iprt/semaphore.h \ 516 include/iprt/stdarg.h \ 517 include/iprt/stream.h \ 518 include/iprt/string.h \ 519 include/iprt/system.h \ 520 include/iprt/tcp.h \ 521 include/iprt/thread.h \ 522 include/iprt/time.h \ 523 include/iprt/timer.h \ 524 include/iprt/types.h \ 525 include/iprt/uuid.h \ 526 include/iprt/zip.h \ 527 \ 528 src/VBox/VMM/CFGM.cpp \ 529 src/VBox/VMM/VMMAll/CPUMAllRegs.cpp \ 530 src/VBox/VMM/CPUM.cpp \ 531 src/VBox/VMM/VMMGC/CPUMGC.cpp \ 532 src/VBox/VMM/VMMR0/CPUMR0.cpp \ 533 src/VBox/VMM/CPUMStack.cpp \ 534 src/VBox/VMM/PATM/VMMAll/CSAMAll.cpp \ 535 src/VBox/VMM/PATM/CSAM.cpp \ 536 src/VBox/VMM/PATM/VMMGC/CSAMGC.cpp \ 537 src/VBox/VMM/DBGFAddr.cpp \ 538 src/VBox/VMM/VMMAll/DBGFAll.cpp \ 539 src/VBox/VMM/DBGFBp.cpp \ 540 src/VBox/VMM/DBGF.cpp \ 541 src/VBox/VMM/DBGFDisas.cpp \ 542 src/VBox/VMM/VMMGC/DBGFGC.cpp \ 543 src/VBox/VMM/DBGFInfo.cpp \ 544 src/VBox/VMM/DBGFLog.cpp \ 545 src/VBox/VMM/DBGFStack.cpp \ 546 src/VBox/VMM/DBGFSym.cpp \ 547 src/VBox/VMM/VMMAll/EMAll.cpp \ 548 src/VBox/VMM/EM.cpp \ 549 src/VBox/VMM/HWACCM.cpp \ 550 src/VBox/VMM/VMMR0/HWACCMR0.cpp \ 551 src/VBox/VMM/VMMAll/IOMAll.cpp \ 552 src/VBox/VMM/IOM.cpp \ 553 src/VBox/VMM/VMMGC/IOMGC.cpp \ 554 src/VBox/VMM/VMMAll/MMAll.cpp \ 555 src/VBox/VMM/VMMAll/MMAllHyper.cpp \ 556 src/VBox/VMM/VMMAll/MMAllPagePool.cpp \ 557 src/VBox/VMM/VMMAll/MMAllPhys.cpp \ 558 src/VBox/VMM/MM.cpp \ 559 src/VBox/VMM/MMHeap.cpp \ 560 src/VBox/VMM/MMHyper.cpp \ 561 src/VBox/VMM/MMPagePool.cpp \ 562 src/VBox/VMM/MMPhys.cpp \ 563 src/VBox/VMM/VMMGC/MMRamGC.cpp \ 564 src/VBox/VMM/PATM/VMMAll/PATMAll.cpp \ 565 src/VBox/VMM/PATM/PATM.cpp \ 566 src/VBox/VMM/PATM/VMMGC/PATMGC.cpp \ 567 src/VBox/VMM/PATM/PATMGuest.cpp \ 568 src/VBox/VMM/PATM/PATMPatch.cpp \ 569 src/VBox/VMM/PATM/PATMSSM.cpp \ 570 src/VBox/VMM/VMMAll/PDMAllCritSect.cpp \ 571 src/VBox/VMM/VMMAll/PDMAllQueue.cpp \ 572 src/VBox/VMM/PDM.cpp \ 573 src/VBox/VMM/PDMCritSect.cpp \ 574 src/VBox/VMM/PDMDevice.cpp \ 575 src/VBox/VMM/PDMDriver.cpp \ 576 src/VBox/VMM/VMMGC/PDMGCDevice.cpp \ 577 src/VBox/VMM/PDMLdr.cpp \ 578 src/VBox/VMM/PDMQueue.cpp \ 579 src/VBox/VMM/VMMAll/PGMAll.cpp \ 580 src/VBox/VMM/VMMAll/PGMAllMap.cpp \ 581 src/VBox/VMM/VMMAll/PGMAllPhys.cpp \ 582 src/VBox/VMM/PGM.cpp \ 583 src/VBox/VMM/VMMGC/PGMGC.cpp \ 584 src/VBox/VMM/PGMMap.cpp \ 585 src/VBox/VMM/PGMPhys.cpp \ 586 src/VBox/VMM/PGMPool.cpp \ 587 src/VBox/VMM/VMMGC/REMGC.cpp \ 588 src/VBox/VMM/VMMAll/SELMAll.cpp \ 589 src/VBox/VMM/SELM.cpp \ 590 src/VBox/VMM/VMMGC/SELMGC.cpp \ 591 src/VBox/VMM/SSM.cpp \ 592 src/VBox/VMM/STAM.cpp \ 593 src/VBox/VMM/VMMAll/TMAll.cpp \ 594 src/VBox/VMM/VMMAll/TMAllCpu.cpp \ 595 src/VBox/VMM/VMMAll/TMAllReal.cpp \ 596 src/VBox/VMM/VMMAll/TMAllVirtual.cpp \ 597 src/VBox/VMM/TM.cpp \ 598 src/VBox/VMM/VMMAll/TRPMAll.cpp \ 599 src/VBox/VMM/TRPM.cpp \ 600 src/VBox/VMM/VMMGC/TRPMGC.cpp \ 601 src/VBox/VMM/VMMGC/TRPMGCHandlers.cpp \ 602 src/VBox/VMM/VMMR0/TRPMR0.cpp \ 603 src/VBox/VMM/VM.cpp \ 604 src/VBox/VMM/VMEmt.cpp \ 605 src/VBox/VMM/VMMAll/VMMAll.cpp \ 606 src/VBox/VMM/VMMCodingGuidelines.cpp \ 607 src/VBox/VMM/VMM.cpp \ 608 src/VBox/VMM/VMMDocsRawMode.cpp \ 609 src/VBox/VMM/VMMGC/VMMGC.cpp \ 610 src/VBox/VMM/VMMR0/VMMR0.cpp \ 611 src/VBox/VMM/VMReq.cpp \ 612 \ 613 src/VBox/Devices/Builtins2.cpp \ 614 src/VBox/Devices/Builtins.cpp \ 615 src/VBox/Devices/USB/DevOHCI.cpp \ 616 src/VBox/Devices/PC/DevPcBios.cpp \ 617 src/VBox/Devices/PC/DrvACPI.cpp \ 618 src/VBox/Devices/Storage/DevATA.cpp \ 619 src/VBox/Devices/Storage/DrvBlock.cpp \ 620 src/VBox/Devices/Storage/DrvHostBase.cpp \ 621 src/VBox/Devices/Storage/DrvHostDVD.cpp \ 622 src/VBox/Devices/Storage/DrvHostFloppy.cpp \ 623 src/VBox/Devices/Network/DrvIntNet.cpp \ 624 src/VBox/Devices/Storage/DrvISCSI.cpp \ 625 src/VBox/Devices/Storage/DrvISCSITransportTCP.cpp \ 626 src/VBox/Devices/Input/DrvKeyboardQueue.cpp \ 627 src/VBox/Devices/Storage/DrvMediaISO.cpp \ 628 src/VBox/Devices/Input/DrvMouseQueue.cpp \ 629 src/VBox/Devices/Network/DrvNAT.cpp \ 630 src/VBox/Devices/Network/DrvNetSniffer.cpp \ 631 src/VBox/Devices/Storage/DrvRawImage.cpp \ 632 src/VBox/Devices/Network/DrvTAP.cpp \ 633 src/VBox/Devices/Network/DrvTAPWin32.cpp \ 634 src/VBox/Devices/Network/DevPCNet.cpp \ 635 src/VBox/Devices/USB/DrvVUSBRootHub.cpp \ 636 src/VBox/Devices/PC/DevPit-i8254.cpp \ 637 src/VBox/Devices/USB/linux/USBProxyDevice-linux.cpp \ 638 src/VBox/Devices/USB/vrdp/USBProxyDevice-vrdp.cpp \ 639 src/VBox/Devices/USB/win32/USBLib-win32.cpp \ 640 src/VBox/Devices/USB/win32/USBProxyDevice-win32.cpp \ 641 src/VBox/Devices/Network/SrvIntNetR0.cpp \ 642 src/VBox/Devices/USB/USBProxyDevice.cpp \ 643 src/VBox/Devices/VMMDev/VBoxDev.cpp \ 644 src/VBox/Devices/Storage/VBoxHDD.cpp \ 645 src/VBox/Devices/VMMDev/VMMDevHGCM.cpp \ 646 src/VBox/Devices/USB/VUSBDevice.cpp \ 647 src/VBox/Devices/USB/VUSBUrb.cpp \ 648 \ 649 src/VBox/Devices/Input/DevPS2.cpp \ 650 src/VBox/Devices/Graphics/DevVGA.cpp \ 651 src/VBox/Devices/Bus/DevPCI.cpp \ 652 \ 653 src/VBox/HostDrivers/Support/SUPLib.cpp \ 654 \ 655 src/VBox/Disassembler/Disasm.cpp \ 656 src/VBox/Disassembler/DisasmCore.cpp \ 657 \ 658 src/VBox/Debugger/DBGConsole.cpp \ 659 src/VBox/Debugger/DBGCTcp.cpp \ 660 661 662 # If the value of the INPUT tag contains directories, you can use the 663 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 664 # and *.h) to filter out the source-files in the directories. If left 665 # blank the following patterns are tested: 666 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp 667 # *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm 668 162 # INPUT = later 163 INPUT_ENCODING = UTF-8 669 164 FILE_PATTERNS = 670 671 672 673 # The RECURSIVE tag can be used to turn specify whether or not subdirectories674 # should be searched for input files as well. Possible values are YES and NO.675 # If left blank NO is used.676 677 165 RECURSIVE = NO 678 679 # The EXCLUDE tag can be used to specify files and/or directories that should680 # excluded from the INPUT source files. This way you can easily exclude a681 # subdirectory from a directory tree whose root is specified with the INPUT tag.682 683 166 EXCLUDE = 684 685 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories686 # that are symbolic links (a Unix filesystem feature) are excluded from the input.687 688 167 EXCLUDE_SYMLINKS = NO 689 690 # If the value of the INPUT tag contains directories, you can use the691 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude692 # certain files from those directories.693 694 168 EXCLUDE_PATTERNS = 695 696 # The EXAMPLE_PATH tag can be used to specify one or more files or 697 # directories that contain example code fragments that are included (see 698 # the \include command). 699 169 EXCLUDE_SYMBOLS = 700 170 EXAMPLE_PATH = 701 702 # If the value of the EXAMPLE_PATH tag contains directories, you can use the703 # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp704 # and *.h) to filter out the source-files in the directories. If left705 # blank all files are included.706 707 171 EXAMPLE_PATTERNS = 708 709 # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be710 # searched for input files to be used with the \include or \dontinclude711 # commands irrespective of the value of the RECURSIVE tag.712 # Possible values are YES and NO. If left blank NO is used.713 714 172 EXAMPLE_RECURSIVE = NO 715 716 # The IMAGE_PATH tag can be used to specify one or more files or717 # directories that contain image that are included in the documentation (see718 # the \image command).719 720 173 IMAGE_PATH = doc 721 722 # The INPUT_FILTER tag can be used to specify a program that doxygen should723 # invoke to filter for each input file. Doxygen will invoke the filter program724 # by executing (via popen()) the command <filter> <input-file>, where <filter>725 # is the value of the INPUT_FILTER tag, and <input-file> is the name of an726 # input file. Doxygen will then use the output that the filter program writes727 # to standard output.728 729 174 INPUT_FILTER = 730 731 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 732 # INPUT_FILTER) will be used to filter the input files when producing source 733 # files to browse (i.e. when SOURCE_BROWSER is set to YES). 734 175 FILTER_PATTERNS = 735 176 FILTER_SOURCE_FILES = NO 736 177 … … 738 179 # configuration options related to source browsing 739 180 #--------------------------------------------------------------------------- 740 741 # If the SOURCE_BROWSER tag is set to YES then a list of source files will742 # be generated. Documented entities will be cross-referenced with these sources.743 # Note: To get rid of all source code in the generated output, make sure also744 # VERBATIM_HEADERS is set to NO.745 746 181 SOURCE_BROWSER = NO 747 748 # Setting the INLINE_SOURCES tag to YES will include the body749 # of functions and classes directly in the documentation.750 751 182 INLINE_SOURCES = NO 752 753 # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct754 # doxygen to hide any special comment blocks from generated source code755 # fragments. Normal C and C++ comments will always remain visible.756 757 183 STRIP_CODE_COMMENTS = YES 758 759 # If the REFERENCED_BY_RELATION tag is set to YES (the default)760 # then for each documented function all documented761 # functions referencing it will be listed.762 763 184 REFERENCED_BY_RELATION = YES 764 765 # If the REFERENCES_RELATION tag is set to YES (the default)766 # then for each documented function all documented entities767 # called/used by that function will be listed.768 769 185 REFERENCES_RELATION = YES 770 771 # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen 772 # will generate a verbatim copy of the header file for each class for 773 # which an include is specified. Set to NO to disable this. 774 186 REFERENCES_LINK_SOURCE = YES 187 USE_HTAGS = NO 775 188 VERBATIM_HEADERS = YES 776 189 … … 778 191 # configuration options related to the alphabetical class index 779 192 #--------------------------------------------------------------------------- 780 781 # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index782 # of all compounds will be generated. Enable this if the project783 # contains a lot of classes, structs, unions or interfaces.784 785 193 ALPHABETICAL_INDEX = NO 786 787 # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then788 # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns789 # in which this list will be split (can be a number in the range [1..20])790 791 194 COLS_IN_ALPHA_INDEX = 5 792 793 # In case all classes in a project start with a common prefix, all794 # classes will be put under the same header in the alphabetical index.795 # The IGNORE_PREFIX tag can be used to specify one or more prefixes that796 # should be ignored while generating the index headers.797 798 195 IGNORE_PREFIX = 799 196 … … 801 198 # configuration options related to the HTML output 802 199 #--------------------------------------------------------------------------- 803 804 # If the GENERATE_HTML tag is set to YES (the default) Doxygen will805 # generate HTML output.806 807 200 GENERATE_HTML = YES 808 809 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put.810 # If a relative path is entered the value of OUTPUT_DIRECTORY will be811 # put in front of it. If left blank `html' will be used as the default path.812 813 201 HTML_OUTPUT = html 814 815 # The HTML_FILE_EXTENSION tag can be used to specify the file extension for816 # each generated HTML page (for example: .htm,.php,.asp). If it is left blank817 # doxygen will generate files with .html extension.818 819 202 HTML_FILE_EXTENSION = .html 820 821 # The HTML_HEADER tag can be used to specify a personal HTML header for822 # each generated HTML page. If it is left blank doxygen will generate a823 # standard header.824 825 203 HTML_HEADER = 826 827 # The HTML_FOOTER tag can be used to specify a personal HTML footer for828 # each generated HTML page. If it is left blank doxygen will generate a829 # standard footer.830 831 204 HTML_FOOTER = 832 833 # The HTML_STYLESHEET tag can be used to specify a user-defined cascading834 # style sheet that is used by each HTML page. It can be used to835 # fine-tune the look of the HTML output. If the tag is left blank doxygen836 # will generate a default style sheet. Note that doxygen will try to copy837 # the style sheet file to the HTML output directory, so don't put your own838 # stylesheet in the HTML output directory as well, or it will be erased!839 840 205 HTML_STYLESHEET = 841 842 # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,843 # files or namespaces will be aligned in HTML using tables. If set to844 # NO a bullet list will be used.845 846 206 HTML_ALIGN_MEMBERS = YES 847 848 # If the GENERATE_HTMLHELP tag is set to YES, additional index files849 # will be generated that can be used as input for tools like the850 # Microsoft HTML help workshop to generate a compressed HTML help file (.chm)851 # of the generated HTML documentation.852 853 207 GENERATE_HTMLHELP = NO 854 855 # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can 856 # be used to specify the file name of the resulting .chm file. You 857 # can add a path in front of the file if the result should not be 858 # written to the html output directory. 859 208 HTML_DYNAMIC_SECTIONS = NO 860 209 CHM_FILE = 861 862 # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can863 # be used to specify the location (absolute path including file name) of864 # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run865 # the HTML help compiler on the generated index.hhp.866 867 210 HHC_LOCATION = 868 869 # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag870 # controls if a separate .chi index file is generated (YES) or that871 # it should be included in the master .chm file (NO).872 873 211 GENERATE_CHI = NO 874 875 # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag876 # controls whether a binary table of contents is generated (YES) or a877 # normal table of contents (NO) in the .chm file.878 879 212 BINARY_TOC = NO 880 881 # The TOC_EXPAND flag can be set to YES to add extra items for group members882 # to the contents of the HTML help documentation and to the tree view.883 884 213 TOC_EXPAND = NO 885 886 # The DISABLE_INDEX tag can be used to turn on/off the condensed index at887 # top of each HTML page. The value NO (the default) enables the index and888 # the value YES disables it.889 890 214 DISABLE_INDEX = NO 891 892 # This tag can be used to set the number of enum values (range [1..20])893 # that doxygen will group on one line in the generated HTML documentation.894 895 215 ENUM_VALUES_PER_LINE = 4 896 897 # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be898 # generated containing a tree-like index structure (just like the one that899 # is generated for HTML Help). For this to work a browser that supports900 # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+,901 # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are902 # probably better off using the HTML help feature.903 904 216 GENERATE_TREEVIEW = NO 905 906 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be907 # used to set the initial width (in pixels) of the frame in which the tree908 # is shown.909 910 217 TREEVIEW_WIDTH = 250 911 218 … … 913 220 # configuration options related to the LaTeX output 914 221 #--------------------------------------------------------------------------- 915 916 # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will917 # generate Latex output.918 919 222 GENERATE_LATEX = NO 920 921 # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.922 # If a relative path is entered the value of OUTPUT_DIRECTORY will be923 # put in front of it. If left blank `latex' will be used as the default path.924 925 223 LATEX_OUTPUT = latex 926 927 # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be928 # invoked. If left blank `latex' will be used as the default command name.929 930 224 LATEX_CMD_NAME = latex 931 932 # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to933 # generate index for LaTeX. If left blank `makeindex' will be used as the934 # default command name.935 936 225 MAKEINDEX_CMD_NAME = makeindex 937 938 # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact939 # LaTeX documents. This may be useful for small projects and may help to940 # save some trees in general.941 942 226 COMPACT_LATEX = NO 943 944 # The PAPER_TYPE tag can be used to set the paper type that is used945 # by the printer. Possible values are: a4, a4wide, letter, legal and946 # executive. If left blank a4wide will be used.947 948 227 PAPER_TYPE = a4wide 949 950 # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX951 # packages that should be included in the LaTeX output.952 953 228 EXTRA_PACKAGES = 954 955 # The LATEX_HEADER tag can be used to specify a personal LaTeX header for956 # the generated latex document. The header should contain everything until957 # the first chapter. If it is left blank doxygen will generate a958 # standard header. Notice: only use this tag if you know what you are doing!959 960 229 LATEX_HEADER = 961 962 # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated963 # is prepared for conversion to pdf (using ps2pdf). The pdf file will964

