Changeset 57974 in vbox
- Timestamp:
- Sep 30, 2015 6:27:04 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 102972
- Location:
- trunk
- Files:
-
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/include/iprt/list-off32.h ¶
r57926 r57974 207 207 * Checks if a node is the last element in the list. 208 208 * 209 * @retval @ctrue if the node is the last element in the list.210 * @retval @cfalse otherwise209 * @retval true if the node is the last element in the list. 210 * @retval false otherwise 211 211 * 212 212 * @param pList The list. … … 218 218 * Checks if a node is the first element in the list. 219 219 * 220 * @retval @ctrue if the node is the first element in the list.221 * @retval @cfalse otherwise.220 * @retval true if the node is the first element in the list. 221 * @retval false otherwise. 222 222 * 223 223 * @param pList The list. … … 229 229 * Checks if a type converted node is actually the dummy element (@a pList). 230 230 * 231 * @retval @ctrue if the node is the dummy element in the list.232 * @retval @cfalse otherwise.231 * @retval true if the node is the dummy element in the list. 232 * @retval false otherwise. 233 233 * 234 234 * @param pList The list. … … 250 250 * Checks if a list is empty. 251 251 * 252 * @retval @ctrue if the list is empty.253 * @retval @cfalse otherwise.252 * @retval true if the list is empty. 253 * @retval false otherwise. 254 254 * 255 255 * @param pList The list to check. -
TabularUnified trunk/include/iprt/log.h ¶
r57926 r57974 2326 2326 * 2327 2327 * @param pszFormat Printf like format string. 2328 * @param argsOptional arguments as specified in pszFormat.2328 * @param va Optional arguments as specified in pszFormat. 2329 2329 * 2330 2330 * @remark The API doesn't support formatting of floating point numbers at the moment. 2331 2331 */ 2332 RTDECL(void) RTLogPrintfV(const char *pszFormat, va_list args) RT_IPRT_FORMAT_ATTR(1, 0);2332 RTDECL(void) RTLogPrintfV(const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(1, 0); 2333 2333 2334 2334 /** -
TabularUnified trunk/src/VBox/Runtime/Makefile.kmk ¶
r57949 r57974 2726 2726 $(comp-vars IPRT_DOXYFILE_OUTPUT,DOXYGEN_OUTPUT_PREV,FORCE) \ 2727 2727 | $$(dir $$@) 2728 $( RM) -f $@ $@.tmp $@.dep2729 $( CP) -f $(VBOX_PATH_RUNTIME_SRC)/Doxyfile $@.tmp2730 $( APPEND) $@.tmp2731 $( APPEND) $@.tmp "OUTPUT_DIRECTORY = $(IPRT_DOXYFILE_OUTPUT)"2732 $( APPEND) $@.tmp "WARN_LOGFILE = $(IPRT_DOXYFILE_OUTPUT)/errors"2733 $( APPEND) $@.tmp "INCLUDE_PATH = $(PATH_ROOT)/include include . common/table"2734 $( APPEND) $@.tmp "INCLUDE_FILE_PATTERNS = *.cpp.h"2735 $( APPEND) $@.tmp "PREDEFINED += $(ARCH_BITS_DEFS)"2736 $( APPEND) $@.tmp 'EXCLUDE = '\2728 $(QUIET)$(RM) -f $@ $@.tmp $@.dep 2729 $(QUIET)$(CP) -f $(VBOX_PATH_RUNTIME_SRC)/Doxyfile $@.tmp 2730 $(QUIET)$(APPEND) $@.tmp 2731 $(QUIET)$(APPEND) $@.tmp "OUTPUT_DIRECTORY = $(IPRT_DOXYFILE_OUTPUT)" 2732 $(QUIET)$(APPEND) $@.tmp "WARN_LOGFILE = $(IPRT_DOXYFILE_OUTPUT)/errors" 2733 $(QUIET)$(APPEND) $@.tmp "INCLUDE_PATH = $(PATH_ROOT)/include include . common/table" 2734 $(QUIET)$(APPEND) $@.tmp "INCLUDE_FILE_PATTERNS = *.cpp.h" 2735 $(QUIET)$(APPEND) $@.tmp "PREDEFINED += $(ARCH_BITS_DEFS)" 2736 $(QUIET)$(APPEND) $@.tmp 'EXCLUDE = '\ 2737 2737 '$(VBOX_PATH_RUNTIME_SRC)/common/string/unidata-flags.cpp' \ 2738 2738 '$(VBOX_PATH_RUNTIME_SRC)/common/string/unidata-lower.cpp' \ 2739 '$(VBOX_PATH_RUNTIME_SRC)/common/string/unidata-upper.cpp' 2740 $(APPEND) $@.tmp 2741 $(APPEND) $@.tmp "INPUT = $(IPRT_DOXYFILE_INPUT)" 2742 $(APPEND) $@.tmp 2743 $(MV) -f $@.tmp $@ 2744 @$(APPEND) $@.dep "DOXYGEN_OUTPUT_PREV = $(IPRT_DOXYFILE_OUTPUT)" 2745 @$(APPEND) $@.dep "DOXYGEN_INPUT_PREV = $(IPRT_DOXYFILE_INPUT)" 2739 '$(VBOX_PATH_RUNTIME_SRC)/common/string/unidata-upper.cpp' \ 2740 '$(VBOX_PATH_RUNTIME_SRC)/common/ldr/ldrkStuff.cpp' 2741 $(QUIET)$(APPEND) $@.tmp 2742 $(QUIET)$(APPEND) $@.tmp "INPUT = $(IPRT_DOXYFILE_INPUT)" 2743 $(QUIET)$(APPEND) $@.tmp 2744 $(QUIET)$(MV) -f $@.tmp $@ 2745 $(QUIET)$(APPEND) $@.dep "DOXYGEN_OUTPUT_PREV = $(IPRT_DOXYFILE_OUTPUT)" 2746 $(QUIET)$(APPEND) $@.dep "DOXYGEN_INPUT_PREV = $(IPRT_DOXYFILE_INPUT)" 2746 2747 2747 2748 # Do the actual job. 2748 2749 $(IPRT_OUT_DIR)/docs.iprt: $(IPRT_OUT_DIR)/Doxyfile.iprt $$(IPRT_DOXYFILE_INPUT) | $(IPRT_DOXYFILE_OUTPUT)/ 2749 $( RM) -f $(wildcard $(IPRT_DOXYFILE_OUTPUT)/html/*) $(IPRT_OUT_DIR)/docs.iprt2750 doxygen $( IPRT_OUT_DIR)/Doxyfile.iprt2750 $(QUIET)$(RM) -f $(wildcard $(IPRT_DOXYFILE_OUTPUT)/html/*) $(IPRT_OUT_DIR)/docs.iprt 2751 doxygen $(DOXYGEN_OPTS) $(IPRT_OUT_DIR)/Doxyfile.iprt 2751 2752 $(APPEND) $(IPRT_OUT_DIR)/docs.iprt 2752 2753 -
TabularUnified trunk/src/VBox/Runtime/VBox/log-vbox.cpp ¶
r57358 r57974 73 73 * 74 74 * 75 * @section sec_logging_ destinationThe Group Specifier.75 * @section sec_logging_group The Group Specifier. 76 76 * 77 77 * The {logger-env-base} environment variable can be used to specify which -
TabularUnified trunk/src/VBox/Runtime/VBox/logbackdoor-redirect.cpp ¶
r57358 r57974 114 114 115 115 /* Do nothing for now. */ 116 RTDECL(void) RTLogFlush(PRTLOGGER )116 RTDECL(void) RTLogFlush(PRTLOGGER pLogger) 117 117 { 118 NOREF(pLogger); 118 119 } 119 120 -
TabularUnified trunk/src/VBox/Runtime/common/checksum/manifest2.cpp ¶
r57926 r57974 309 309 310 310 /** 311 * @callback_method_impl{FNRTSTRSPACECALLBACK, Prepare equals operation .}311 * @callback_method_impl{FNRTSTRSPACECALLBACK, Prepare equals operation} 312 312 */ 313 313 static DECLCALLBACK(int) rtManifestAttributeClearVisited(PRTSTRSPACECORE pStr, void *pvUser) … … 321 321 322 322 /** 323 * @callback_method_impl{FNRTSTRSPACECALLBACK, Prepare equals operation .}323 * @callback_method_impl{FNRTSTRSPACECALLBACK, Prepare equals operation} 324 324 */ 325 325 static DECLCALLBACK(int) rtManifestEntryClearVisited(PRTSTRSPACECORE pStr, void *pvUser) … … 334 334 335 335 /** 336 * @callback_method_impl{FNRTSTRSPACECALLBACK, Finds the first missing .}336 * @callback_method_impl{FNRTSTRSPACECALLBACK, Finds the first missing} 337 337 */ 338 338 static DECLCALLBACK(int) rtManifestAttributeFindMissing2(PRTSTRSPACECORE pStr, void *pvUser) … … 375 375 376 376 /** 377 * @callback_method_impl{FNRTSTRSPACECALLBACK, Finds the first missing .}377 * @callback_method_impl{FNRTSTRSPACECALLBACK, Finds the first missing} 378 378 */ 379 379 static DECLCALLBACK(int) rtManifestEntryFindMissing2(PRTSTRSPACECORE pStr, void *pvUser) … … 411 411 412 412 /** 413 * @callback_method_impl{FNRTSTRSPACECALLBACK, Compares attributes .}413 * @callback_method_impl{FNRTSTRSPACECALLBACK, Compares attributes} 414 414 */ 415 415 static DECLCALLBACK(int) rtManifestAttributeCompare(PRTSTRSPACECORE pStr, void *pvUser) … … 489 489 490 490 /** 491 * @callback_method_impl{FNRTSTRSPACECALLBACK, Prepare equals operation .}491 * @callback_method_impl{FNRTSTRSPACECALLBACK, Prepare equals operation} 492 492 */ 493 493 DECLINLINE (int) rtManifestEntryCompare2(PRTMANIFESTEQUALS pEquals, PRTMANIFESTENTRY pEntry1, PRTMANIFESTENTRY pEntry2) … … 518 518 519 519 /** 520 * @callback_method_impl{FNRTSTRSPACECALLBACK, Prepare equals operation .}520 * @callback_method_impl{FNRTSTRSPACECALLBACK, Prepare equals operation} 521 521 */ 522 522 static DECLCALLBACK(int) rtManifestEntryCompare(PRTSTRSPACECORE pStr, void *pvUser) -
TabularUnified trunk/src/VBox/Runtime/common/checksum/x509.cpp ¶
r57358 r57974 67 67 * @returns IPRT status code. 68 68 * 69 * @param pv BufString representation containing X50969 * @param pvPem String representation containing X509 70 70 * certificate in PEM format. 71 * @param cb BufThe amount of data @a pvBuf points to.71 * @param cbPem The amount of data @a pvBuf points to. 72 72 * @param ppOutCert Where to store the pointer to the structure where 73 73 * the info about X509 certificate will be stored. -
TabularUnified trunk/src/VBox/Runtime/common/dbg/dbgmodexports.cpp ¶
r57944 r57974 55 55 56 56 57 /** @callback_method_impl{FNRTLDRENUMSYMS, 57 /** 58 * @callback_method_impl{FNRTLDRENUMSYMS, 58 59 * Copies the symbols over into the container} */ 59 60 static DECLCALLBACK(int) rtDbgModExportsAddSymbolCallback(RTLDRMOD hLdrMod, const char *pszSymbol, unsigned uSymbol, -
TabularUnified trunk/src/VBox/Runtime/common/dbg/dbgmodldr.cpp ¶
r57944 r57974 133 133 134 134 /** @interface_method_impl{RTDBGMODVTIMG,pfnRvaToSegOffset} */ 135 static DECLCALLBACK(int) rtDbgModLdr_RvaToSegOffset(PRTDBGMODINT pMod, RTLDRADDR uRva, 136 PRTDBGSEGIDX piSeg, PRTLDRADDR poffSeg) 137 { 138 PRTDBGMODLDR pThis = (PRTDBGMODLDR)pMod->pvImgPriv; 139 return RTLdrRvaToSegOffset(pThis->hLdrMod, uRva, piSeg, poffSeg); 135 static DECLCALLBACK(int) rtDbgModLdr_RvaToSegOffset(PRTDBGMODINT pMod, RTLDRADDR Rva, PRTDBGSEGIDX piSeg, PRTLDRADDR poffSeg) 136 { 137 PRTDBGMODLDR pThis = (PRTDBGMODLDR)pMod->pvImgPriv; 138 return RTLdrRvaToSegOffset(pThis->hLdrMod, Rva, piSeg, poffSeg); 140 139 } 141 140 … … 150 149 151 150 152 /** @interface_method_impl{RTDBGMODVTIMG,pfnEnumS egments} */151 /** @interface_method_impl{RTDBGMODVTIMG,pfnEnumSymbols} */ 153 152 static DECLCALLBACK(int) rtDbgModLdr_EnumSymbols(PRTDBGMODINT pMod, uint32_t fFlags, RTLDRADDR BaseAddress, 154 153 PFNRTLDRENUMSYMS pfnCallback, void *pvUser) -
TabularUnified trunk/src/VBox/Runtime/common/ldr/ldrMemory.cpp ¶
r57358 r57974 76 76 77 77 78 /** @callback_method_impl{FNRTLDRRDRMEMDTOR, 79 * Default destructor - pvUser points to the image memory block.} 78 /** 79 * @callback_method_impl{FNRTLDRRDRMEMDTOR, 80 * Default destructor - pvUser points to the image memory block} 80 81 */ 81 82 static DECLCALLBACK(void) rtldrRdrMemDefaultDtor(void *pvUser) … … 85 86 86 87 87 /** @callback_method_impl{FNRTLDRRDRMEMREAD, 88 * Default memory reader - pvUser points to the image memory block.} 88 /** 89 * @callback_method_impl{FNRTLDRRDRMEMREAD, 90 * Default memory reader - pvUser points to the image memory block} 89 91 */ 90 92 static DECLCALLBACK(int) rtldrRdrMemDefaultReader(void *pvBuf, size_t cb, size_t off, void *pvUser) … … 95 97 96 98 97 /** @ copydoc RTLDRREADER::pfnRead*/99 /** @interface_method_impl{RTLDRREADER,pfnRead} */ 98 100 static DECLCALLBACK(int) rtldrRdrMem_Read(PRTLDRREADER pReader, void *pvBuf, size_t cb, RTFOFF off) 99 101 { … … 118 120 119 121 120 /** @ copydoc RTLDRREADER::pfnTell*/122 /** @interface_method_impl{RTLDRREADER,pfnTell} */ 121 123 static DECLCALLBACK(RTFOFF) rtldrRdrMem_Tell(PRTLDRREADER pReader) 122 124 { … … 126 128 127 129 128 /** @ copydoc RTLDRREADER::pfnSize*/130 /** @interface_method_impl{RTLDRREADER,pfnSize} */ 129 131 static DECLCALLBACK(RTFOFF) rtldrRdrMem_Size(PRTLDRREADER pReader) 130 132 { … … 134 136 135 137 136 /** @ copydoc RTLDRREADER::pfnLogName*/138 /** @interface_method_impl{RTLDRREADER,pfnLogName} */ 137 139 static DECLCALLBACK(const char *) rtldrRdrMem_LogName(PRTLDRREADER pReader) 138 140 { … … 142 144 143 145 144 /** @ copydoc RTLDRREADER::pfnMap*/146 /** @interface_method_impl{RTLDRREADER,pfnMap} */ 145 147 static DECLCALLBACK(int) rtldrRdrMem_Map(PRTLDRREADER pReader, const void **ppvBits) 146 148 { … … 179 181 180 182 181 /** @ copydoc RTLDRREADER::pfnUnmap*/183 /** @interface_method_impl{RTLDRREADER,pfnUnmap} */ 182 184 static DECLCALLBACK(int) rtldrRdrMem_Unmap(PRTLDRREADER pReader, const void *pvBits) 183 185 { … … 196 198 197 199 198 /** @ copydoc RTLDRREADER::pfnDestroy*/200 /** @interface_method_impl{RTLDRREADER,pfnDestroy} */ 199 201 static DECLCALLBACK(int) rtldrRdrMem_Destroy(PRTLDRREADER pReader) 200 202 { -
TabularUnified trunk/src/VBox/Runtime/common/ldr/ldrPE.cpp ¶
r57358 r57974 472 472 473 473 474 /** @ copydoc RTLDROPS::pfnGetImageSize*/474 /** @interface_method_impl{RTLDROPS,pfnGetImageSize} */ 475 475 static DECLCALLBACK(size_t) rtldrPEGetImageSize(PRTLDRMODINTERNAL pMod) 476 476 { … … 569 569 570 570 571 /** @ copydoc RTLDROPS::pfnGetBits*/571 /** @interface_method_impl{RTLDROPS,pfnGetBits} */ 572 572 static DECLCALLBACK(int) rtldrPEGetBits(PRTLDRMODINTERNAL pMod, void *pvBits, RTUINTPTR BaseAddress, PFNRTLDRIMPORT pfnGetImport, void *pvUser) 573 573 { … … 877 877 878 878 879 /** @ copydoc RTLDROPS::pfnRelocate.*/879 /** @interface_method_impl{RTLDROPS,pfnRelocate} */ 880 880 static DECLCALLBACK(int) rtldrPERelocate(PRTLDRMODINTERNAL pMod, void *pvBits, RTUINTPTR NewBaseAddress, RTUINTPTR OldBaseAddress, 881 881 PFNRTLDRIMPORT pfnGetImport, void *pvUser) … … 1011 1011 1012 1012 1013 /** @ copydoc RTLDROPS::pfnGetSymbolEx.*/1013 /** @interface_method_impl{RTLDROPS,pfnGetSymbolEx} */ 1014 1014 static DECLCALLBACK(int) rtldrPEGetSymbolEx(PRTLDRMODINTERNAL pMod, const void *pvBits, RTUINTPTR BaseAddress, 1015 1015 uint32_t iOrdinal, const char *pszSymbol, RTUINTPTR *pValue) … … 1037 1037 1038 1038 1039 /** @ copydoc RTLDROPS::pfnQueryForwarderInfo.*/1039 /** @interface_method_impl{RTLDROPS,pfnQueryForwarderInfo} */ 1040 1040 static DECLCALLBACK(int) rtldrPE_QueryForwarderInfo(PRTLDRMODINTERNAL pMod, const void *pvBits, uint32_t iOrdinal, 1041 1041 const char *pszSymbol, PRTLDRIMPORTINFO pInfo, size_t cbInfo) … … 1264 1264 1265 1265 1266 /** @ copydoc RTLDROPS::pfnEnumSymbols*/1266 /** @interface_method_impl{RTLDROPS,pfnEnumSymbols} */ 1267 1267 static DECLCALLBACK(int) rtldrPEEnumSymbols(PRTLDRMODINTERNAL pMod, unsigned fFlags, const void *pvBits, RTUINTPTR BaseAddress, 1268 1268 PFNRTLDRENUMSYMS pfnCallback, void *pvUser) … … 1369 1369 1370 1370 1371 /** @ copydoc RTLDROPS::pfnEnumDbgInfo.*/1371 /** @interface_method_impl{RTLDROPS,pfnEnumDbgInfo} */ 1372 1372 static DECLCALLBACK(int) rtldrPE_EnumDbgInfo(PRTLDRMODINTERNAL pMod, const void *pvBits, 1373 1373 PFNRTLDRENUMDBG pfnCallback, void *pvUser) … … 1558 1558 1559 1559 1560 /** @ copydoc RTLDROPS::pfnEnumSegments.*/1560 /** @interface_method_impl{RTLDROPS,pfnEnumSegments} */ 1561 1561 static DECLCALLBACK(int) rtldrPE_EnumSegments(PRTLDRMODINTERNAL pMod, PFNRTLDRENUMSEGS pfnCallback, void *pvUser) 1562 1562 { … … 1650 1650 1651 1651 1652 /** @ copydoc RTLDROPS::pfnLinkAddressToSegOffset.*/1652 /** @interface_method_impl{RTLDROPS,pfnLinkAddressToSegOffset} */ 1653 1653 static DECLCALLBACK(int) rtldrPE_LinkAddressToSegOffset(PRTLDRMODINTERNAL pMod, RTLDRADDR LinkAddress, 1654 1654 uint32_t *piSeg, PRTLDRADDR poffSeg) … … 1690 1690 1691 1691 1692 /** @ copydoc RTLDROPS::pfnLinkAddressToRva.*/1692 /** @interface_method_impl{RTLDROPS,pfnLinkAddressToRva} */ 1693 1693 static DECLCALLBACK(int) rtldrPE_LinkAddressToRva(PRTLDRMODINTERNAL pMod, RTLDRADDR LinkAddress, PRTLDRADDR pRva) 1694 1694 { … … 1704 1704 1705 1705 1706 /** @ copydoc RTLDROPS::pfnSegOffsetToRva.*/1706 /** @interface_method_impl{RTLDROPS,pfnSegOffsetToRva} */ 1707 1707 static DECLCALLBACK(int) rtldrPE_SegOffsetToRva(PRTLDRMODINTERNAL pMod, uint32_t iSeg, RTLDRADDR offSeg, 1708 1708 PRTLDRADDR pRva) … … 1724 1724 1725 1725 1726 /** @ copydoc RTLDROPS::pfnRvaToSegOffset.*/1726 /** @interface_method_impl{RTLDROPS,pfnRvaToSegOffset} */ 1727 1727 static DECLCALLBACK(int) rtldrPE_RvaToSegOffset(PRTLDRMODINTERNAL pMod, RTLDRADDR Rva, 1728 1728 uint32_t *piSeg, PRTLDRADDR poffSeg) … … 2776 2776 2777 2777 2778 /** @ copydoc RTLDROPS::pfnDone*/2778 /** @interface_method_impl{RTLDROPS,pfnDone} */ 2779 2779 static DECLCALLBACK(int) rtldrPEDone(PRTLDRMODINTERNAL pMod) 2780 2780 { … … 2789 2789 2790 2790 2791 /** @ copydoc RTLDROPS::pfnClose*/2791 /** @interface_method_impl{RTLDROPS,pfnClose} */ 2792 2792 static DECLCALLBACK(int) rtldrPEClose(PRTLDRMODINTERNAL pMod) 2793 2793 { -
TabularUnified trunk/src/VBox/Runtime/common/ldr/ldrkStuff.cpp ¶
r57358 r57974 228 228 229 229 230 /** @ copydoc KLDRRDROPS::pfnCreate230 /** @interface_method_impl{KLDRRDROPS,pfnCreate} 231 231 * @remark This is a dummy which isn't used. */ 232 232 static int rtkldrRdr_Create( PPKRDR ppRdr, const char *pszFilename) … … 238 238 239 239 240 /** @ copydoc KLDRRDROPS::pfnDestroy*/240 /** @interface_method_impl{KLDRRDROPS,pfnDestroy} */ 241 241 static int rtkldrRdr_Destroy( PKRDR pRdr) 242 242 { … … 248 248 249 249 250 /** @ copydoc KLDRRDROPS::pfnRead*/250 /** @interface_method_impl{KLDRRDROPS,pfnRead} */ 251 251 static int rtkldrRdr_Read( PKRDR pRdr, void *pvBuf, KSIZE cb, KFOFF off) 252 252 { … … 257 257 258 258 259 /** @ copydoc KLDRRDROPS::pfnAllMap*/259 /** @interface_method_impl{KLDRRDROPS,pfnAllMap} */ 260 260 static int rtkldrRdr_AllMap( PKRDR pRdr, const void **ppvBits) 261 261 { … … 266 266 267 267 268 /** @ copydoc KLDRRDROPS::pfnAllUnmap*/268 /** @interface_method_impl{KLDRRDROPS,pfnAllUnmap} */ 269 269 static int rtkldrRdr_AllUnmap(PKRDR pRdr, const void *pvBits) 270 270 { … … 275 275 276 276 277 /** @ copydoc KLDRRDROPS::pfnSize*/277 /** @interface_method_impl{KLDRRDROPS,pfnSize} */ 278 278 static KFOFF rtkldrRdr_Size( PKRDR pRdr) 279 279 { … … 283 283 284 284 285 /** @ copydoc KLDRRDROPS::pfnTell*/285 /** @interface_method_impl{KLDRRDROPS,pfnTell} */ 286 286 static KFOFF rtkldrRdr_Tell( PKRDR pRdr) 287 287 { … … 291 291 292 292 293 /** @ copydoc KLDRRDROPS::pfnName*/293 /** @interface_method_impl{KLDRRDROPS,pfnName} */ 294 294 static const char * rtkldrRdr_Name(PKRDR pRdr) 295 295 { … … 299 299 300 300 301 /** @ copydoc KLDRRDROPS::pfnNativeFH*/301 /** @interface_method_impl{KLDRRDROPS,pfnNativeFH} */ 302 302 static KIPTR rtkldrRdr_NativeFH(PKRDR pRdr) 303 303 { … … 308 308 309 309 310 /** @ copydoc KLDRRDROPS::pfnPageSize*/310 /** @interface_method_impl{KLDRRDROPS,pfnPageSize} */ 311 311 static KSIZE rtkldrRdr_PageSize(PKRDR pRdr) 312 312 { … … 316 316 317 317 318 /** @ copydoc KLDRRDROPS::pfnMap*/318 /** @interface_method_impl{KLDRRDROPS,pfnMap} */ 319 319 static int rtkldrRdr_Map( PKRDR pRdr, void **ppvBase, KU32 cSegments, PCKLDRSEG paSegments, KBOOL fFixed) 320 320 { … … 326 326 327 327 328 /** @ copydoc KLDRRDROPS::pfnRefresh*/328 /** @interface_method_impl{KLDRRDROPS,pfnRefresh} */ 329 329 static int rtkldrRdr_Refresh( PKRDR pRdr, void *pvBase, KU32 cSegments, PCKLDRSEG paSegments) 330 330 { … … 336 336 337 337 338 /** @ copydoc KLDRRDROPS::pfnProtect*/338 /** @interface_method_impl{KLDRRDROPS,pfnProtect} */ 339 339 static int rtkldrRdr_Protect( PKRDR pRdr, void *pvBase, KU32 cSegments, PCKLDRSEG paSegments, KBOOL fUnprotectOrProtect) 340 340 { … … 346 346 347 347 348 /** @ copydoc KLDRRDROPS::pfnUnmap*/348 /** @interface_method_impl{KLDRRDROPS,pfnUnmap} */ 349 349 static int rtkldrRdr_Unmap( PKRDR pRdr, void *pvBase, KU32 cSegments, PCKLDRSEG paSegments) 350 350 { … … 355 355 } 356 356 357 /** @ copydoc KLDRRDROPS::pfnDone*/357 /** @interface_method_impl{KLDRRDROPS,pfnDone} */ 358 358 static void rtkldrRdr_Done( PKRDR pRdr) 359 359 { … … 394 394 395 395 396 /** @ copydoc RTLDROPS::pfnClose*/396 /** @interface_method_impl{RTLDROPS,pfnClose} */ 397 397 static DECLCALLBACK(int) rtkldr_Close(PRTLDRMODINTERNAL pMod) 398 398 { … … 403 403 404 404 405 /** @ copydoc RTLDROPS::pfnDone*/405 /** @interface_method_impl{RTLDROPS,pfnDone} */ 406 406 static DECLCALLBACK(int) rtkldr_Done(PRTLDRMODINTERNAL pMod) 407 407 { … … 443 443 444 444 445 /** @ copydoc RTLDROPS::pfnEnumSymbols*/445 /** @interface_method_impl{RTLDROPS,pfnEnumSymbols} */ 446 446 static DECLCALLBACK(int) rtkldr_EnumSymbols(PRTLDRMODINTERNAL pMod, unsigned fFlags, const void *pvBits, RTUINTPTR BaseAddress, 447 447 PFNRTLDRENUMSYMS pfnCallback, void *pvUser) … … 465 465 466 466 467 /** @ copydoc RTLDROPS::pfnGetImageSize*/467 /** @interface_method_impl{RTLDROPS,pfnGetImageSize} */ 468 468 static DECLCALLBACK(size_t) rtkldr_GetImageSize(PRTLDRMODINTERNAL pMod) 469 469 { … … 519 519 520 520 521 /** @ copydoc RTLDROPS::pfnGetBits*/521 /** @interface_method_impl{RTLDROPS,pfnGetBits} */ 522 522 static DECLCALLBACK(int) rtkldr_GetBits(PRTLDRMODINTERNAL pMod, void *pvBits, RTUINTPTR BaseAddress, 523 523 PFNRTLDRIMPORT pfnGetImport, void *pvUser) … … 539 539 540 540 541 /** @ copydoc RTLDROPS::pfnRelocate*/541 /** @interface_method_impl{RTLDROPS,pfnRelocate} */ 542 542 static DECLCALLBACK(int) rtkldr_Relocate(PRTLDRMODINTERNAL pMod, void *pvBits, RTUINTPTR NewBaseAddress, 543 543 RTUINTPTR OldBaseAddress, PFNRTLDRIMPORT pfnGetImport, void *pvUser) … … 559 559 560 560 561 /** @ copydoc RTLDROPS::pfnGetSymbolEx*/561 /** @interface_method_impl{RTLDROPS,pfnGetSymbolEx} */ 562 562 static DECLCALLBACK(int) rtkldr_GetSymbolEx(PRTLDRMODINTERNAL pMod, const void *pvBits, RTUINTPTR BaseAddress, 563 563 uint32_t iOrdinal, const char *pszSymbol, RTUINTPTR *pValue) … … 651 651 652 652 653 /** @ copydoc RTLDROPS::pfnEnumDbgInfo*/653 /** @interface_method_impl{RTLDROPS,pfnEnumDbgInfo} */ 654 654 static DECLCALLBACK(int) rtkldr_EnumDbgInfo(PRTLDRMODINTERNAL pMod, const void *pvBits, 655 655 PFNRTLDRENUMDBG pfnCallback, void *pvUser) … … 669 669 670 670 671 /** @ copydoc RTLDROPS::pfnEnumSegments.*/671 /** @interface_method_impl{RTLDROPS,pfnEnumSegments} */ 672 672 static DECLCALLBACK(int) rtkldr_EnumSegments(PRTLDRMODINTERNAL pMod, PFNRTLDRENUMSEGS pfnCallback, void *pvUser) 673 673 { … … 739 739 740 740 741 /** @ copydoc RTLDROPS::pfnLinkAddressToSegOffset.*/741 /** @interface_method_impl{RTLDROPS,pfnLinkAddressToSegOffset} */ 742 742 static DECLCALLBACK(int) rtkldr_LinkAddressToSegOffset(PRTLDRMODINTERNAL pMod, RTLDRADDR LinkAddress, 743 743 uint32_t *piSeg, PRTLDRADDR poffSeg) … … 763 763 764 764 765 /** @ copydoc RTLDROPS::pfnLinkAddressToRva. */765 /** @interface_method_impl{RTLDROPS,pfnLinkAddressToRva}. */ 766 766 static DECLCALLBACK(int) rtkldr_LinkAddressToRva(PRTLDRMODINTERNAL pMod, RTLDRADDR LinkAddress, PRTLDRADDR pRva) 767 767 { … … 785 785 786 786 787 /** @copydoc RTLDROPS::pfnSegOffsetToRva. */ 788 static DECLCALLBACK(int) rtkldr_SegOffsetToRva(PRTLDRMODINTERNAL pMod, uint32_t iSeg, RTLDRADDR offSeg, 789 PRTLDRADDR pRva) 787 /** @interface_method_impl{RTLDROPS,pfnSegOffsetToRva} */ 788 static DECLCALLBACK(int) rtkldr_SegOffsetToRva(PRTLDRMODINTERNAL pMod, uint32_t iSeg, RTLDRADDR offSeg, PRTLDRADDR pRva) 790 789 { 791 790 PRTLDRMODKLDR pThis = (PRTLDRMODKLDR)pMod; … … 806 805 807 806 808 /** @copydoc RTLDROPS::pfnRvaToSegOffset. */ 809 static DECLCALLBACK(int) rtkldr_RvaToSegOffset(PRTLDRMODINTERNAL pMod, RTLDRADDR Rva, 810 uint32_t *piSeg, PRTLDRADDR poffSeg) 807 /** @interface_method_impl{RTLDROPS,pfnRvaToSegOffset} */ 808 static DECLCALLBACK(int) rtkldr_RvaToSegOffset(PRTLDRMODINTERNAL pMod, RTLDRADDR Rva, uint32_t *piSeg, PRTLDRADDR poffSeg) 811 809 { 812 810 PRTLDRMODKLDR pThis = (PRTLDRMODKLDR)pMod; … … 830 828 831 829 832 /** @ copydoc RTLDROPS::pfnReadDbgInfo.*/830 /** @interface_method_impl{RTLDROPS,pfnReadDbgInfo} */ 833 831 static DECLCALLBACK(int) rtkldr_ReadDbgInfo(PRTLDRMODINTERNAL pMod, uint32_t iDbgInfo, RTFOFF off, size_t cb, void *pvBuf) 834 832 { -
TabularUnified trunk/src/VBox/Runtime/common/log/log.cpp ¶
r57809 r57974 3066 3066 * 3067 3067 * @param pszFormat Printf like format string. 3068 * @param argsOptional arguments as specified in pszFormat.3068 * @param va Optional arguments as specified in pszFormat. 3069 3069 * 3070 3070 * @remark The API doesn't support formatting of floating point numbers at the moment. 3071 3071 */ 3072 RTDECL(void) RTLogPrintfV(const char *pszFormat, va_list args)3072 RTDECL(void) RTLogPrintfV(const char *pszFormat, va_list va) 3073 3073 { 3074 3074 RTLogLoggerV(NULL, pszFormat, args); … … 3146 3146 * 3147 3147 * @param pLogger The logger instance to update. NULL is not allowed! 3148 * @param uTimeSl it Current time slot (for tikme based rotation).3148 * @param uTimeSlot Current time slot (for tikme based rotation). 3149 3149 * @param fFirst Flag whether this is the beginning of logging, i.e. 3150 3150 * called from RTLogCreateExV. Prevents pfnPhase from -
TabularUnified trunk/src/VBox/Runtime/common/misc/lockvalidator.cpp ¶
r57944 r57974 397 397 * Launch a simple assertion like complaint w/ panic. 398 398 * 399 * @param pszFile Where from - file. 400 * @param iLine Where from - line. 401 * @param pszFunction Where from - function. 399 * @param SRC_POS The source position where call is being made from. 402 400 * @param pszWhat What we're complaining about. 403 401 * @param ... Format arguments. … … 1204 1202 * Destroys a class once there are not more references to it. 1205 1203 * 1206 * @param ClassThe class.1204 * @param pClass The class. 1207 1205 */ 1208 1206 static void rtLockValidatorClassDestroy(RTLOCKVALCLASSINT *pClass) … … 2207 2205 * @param pRec The lock record. 2208 2206 * @param pSrcPos The source position of the locking operation. 2207 * @param pFirstBadClass The first bad class. 2208 * @param pFirstBadRec The first bad lock record. 2209 * @param pFirstBadDown The next record on the lock stack. 2209 2210 */ 2210 2211 static int rtLockValidatorStackCheckLockingOrder2(RTLOCKVALCLASSINT * const pClass, uint32_t const uSubClass, -
TabularUnified trunk/src/VBox/Runtime/generic/http-curl.cpp ¶
r57944 r57974 598 598 * Configures a proxy given a "URL" like specification. 599 599 * 600 * Format is: 601 * <pre> [<scheme>"://"][<userid>[@<password>]:]<server>[":"<port>] </pre> 600 * The format is: 601 * @verbatim 602 * [<scheme>"://"][<userid>[@<password>]:]<server>[":"<port>] 603 * @endverbatim 604 * 605 * Where the scheme gives the type of proxy server we're dealing with rather 606 * than the protocol of the external server we wish to talk to. 602 607 * 603 608 * @returns IPRT status code. -
TabularUnified trunk/src/VBox/Runtime/include/internal/ldr.h ¶
r56290 r57974 358 358 * 359 359 * @param pMod Pointer to the loader module structure. 360 * @param enm LdrPropThe property to query (valid).360 * @param enmProp The property to query (valid). 361 361 * @param pvBits Pointer to the bits returned by 362 362 * RTLDROPS::pfnGetBits(), optional. … … 395 395 * 396 396 * @returns IPRT status code. 397 * @param hLdrModThe module handle.397 * @param pMod The module handle. 398 398 * @param enmDigest Which kind of digest. 399 399 * @param pszDigest Where to store the image digest. -
TabularUnified trunk/src/VBox/Runtime/r3/win/fs-win.cpp ¶
r57613 r57974 62 62 ULONG FileSystemAttributes; 63 63 LONG MaximumComponentNameLength; 64 ULONG F IleSystemNameLength;64 ULONG FileSystemNameLength; 65 65 WCHAR FileSystemName[1]; 66 66 } FILE_FS_ATTRIBUTE_INFORMATION, *PFILE_FS_ATTRIBUTE_INFORMATION; … … 349 349 * @returns @c true if equal, @c false if not. 350 350 * @param pwsz1 The first string. 351 * @param c b1The length of the first string, in bytes.351 * @param cch1 The length of the first string, in bytes. 352 352 * @param psz2 The second string. 353 353 * @param cch2 The length of the second string. … … 402 402 { 403 403 PFILE_FS_ATTRIBUTE_INFORMATION pFsAttrInfo = (PFILE_FS_ATTRIBUTE_INFORMATION)abBuf; 404 if (pFsAttrInfo->FIleSystemNameLength)405 {406 }407 404 #define IS_FS(szName) \ 408 rtFsWinAreEqual(pFsAttrInfo->FileSystemName, pFsAttrInfo->F IleSystemNameLength, szName, sizeof(szName) - 1)405 rtFsWinAreEqual(pFsAttrInfo->FileSystemName, pFsAttrInfo->FileSystemNameLength, szName, sizeof(szName) - 1) 409 406 if (IS_FS("NTFS")) 410 407 *penmType = RTFSTYPE_NTFS; -
TabularUnified trunk/src/VBox/Runtime/r3/win/init-win.cpp ¶
r57865 r57974 258 258 } 259 259 260 /** @bugref 6861:Observed GUI issues on Vista (32-bit and 64-bit). */260 /** @bugref{6861} Observed GUI issues on Vista (32-bit and 64-bit). */ 261 261 if (g_enmWinVer > kRTWinOSType_VISTA) 262 262 { -
TabularUnified trunk/src/VBox/Runtime/r3/win/localipc-win.cpp ¶
r57928 r57974 200 200 * @param ppDesc Where to store the allocated security descriptor on success. 201 201 * Must be free'd using LocalFree(). 202 * @param fServer Whether it's for a server or client instance. 202 203 */ 203 204 static int rtLocalIpcServerWinAllocSecurityDescriptior(PSECURITY_DESCRIPTOR *ppDesc, bool fServer) … … 224 225 * users from screwing around. 225 226 */ 227 /** @todo r=bird: Why do you convert a string litteral? the 'L' prefix should 228 * be sufficient, shouldn't it?? */ 226 229 PRTUTF16 pwszSDDL; 227 rc = RTStrToUtf16(fServer 228 ? RTLOCALIPC_WIN_SDDL_SERVER : RTLOCALIPC_WIN_SDDL_CLIENT, &pwszSDDL); 230 rc = RTStrToUtf16(fServer ? RTLOCALIPC_WIN_SDDL_SERVER : RTLOCALIPC_WIN_SDDL_CLIENT, &pwszSDDL); 229 231 if (RT_SUCCESS(rc)) 230 232 {
Note:
See TracChangeset
for help on using the changeset viewer.