Changeset 71497 in vbox for trunk/src/VBox
- Timestamp:
- Mar 24, 2018 10:51:41 PM (7 years ago)
- Location:
- trunk/src/VBox/Runtime/common/log
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/log/tracelogreader.cpp
r71494 r71497 1098 1098 1099 1099 /** 1100 * @copydoc {FNRTTRACELOGRDRSTREAM}1100 * @copydoc FNRTTRACELOGRDRSTREAM 1101 1101 */ 1102 1102 static DECLCALLBACK(int) rtTraceLogRdrFileStream(void *pvUser, void *pvBuf, size_t cbBuf, size_t *pcbRead, … … 1110 1110 1111 1111 /** 1112 * @copydoc {FNRTTRACELOGSTREAMCLOSE}1112 * @copydoc FNRTTRACELOGSTREAMCLOSE 1113 1113 */ 1114 1114 static DECLCALLBACK(int) rtTraceLogRdrFileStreamClose(void *pvUser) -
trunk/src/VBox/Runtime/common/log/tracelogwriter.cpp
r71495 r71497 378 378 * @returns Total number of bytes for the event data associated with this event. 379 379 * @param pEvt Pointer to the event structure to initialise. 380 * @param u64SeqNo The sequence number to use.381 380 * @param pEvtDescInt The internal event descriptor to format the data accordingly to. 382 381 * @param fFlags Flags to use for this event. … … 417 416 * @param pThis The trace log writer instance. 418 417 * @param pEvt Pointer to the initialised event structure. 419 * @param p EvtDataThe raw event data.418 * @param pvEvtData The raw event data. 420 419 * @param cbEvtData Size of the event data. 421 420 * @param pacbRawData Pointer to the array of size indicators for non static … … 607 606 608 607 /** 609 * @copydoc {FNRTTRACELOGWRSTREAM}608 * @copydoc FNRTTRACELOGWRSTREAM 610 609 */ 611 610 static DECLCALLBACK(int) rtTraceLogWrFileStream(void *pvUser, const void *pvBuf, size_t cbBuf, size_t *pcbWritten) … … 617 616 618 617 /** 619 * @copydoc {FNRTTRACELOGSTREAMCLOSE}618 * @copydoc FNRTTRACELOGSTREAMCLOSE 620 619 */ 621 620 static DECLCALLBACK(int) rtTraceLogWrFileStreamClose(void *pvUser) … … 687 686 688 687 /** 689 * @copydoc {FNRTTRACELOGWRSTREAM}688 * @copydoc FNRTTRACELOGWRSTREAM 690 689 */ 691 690 static DECLCALLBACK(int) rtTraceLogWrTcpStream(void *pvUser, const void *pvBuf, size_t cbBuf, size_t *pcbWritten) … … 702 701 703 702 /** 704 * @copydoc {FNRTTRACELOGSTREAMCLOSE}703 * @copydoc FNRTTRACELOGSTREAMCLOSE 705 704 */ 706 705 static DECLCALLBACK(int) rtTraceLogWrTcpStreamClose(void *pvUser)
Note:
See TracChangeset
for help on using the changeset viewer.