winIDEA SDK
|
This class implements coverage functionality with a document oriented interface.
It replaces the old CCoverageController, which is deprecated now. If you need some functionality from the old class, which is missing in this one, please contact iSYSTEM support, rather than using the old class. If you use the old class, your code will no longer work once the deprecated class will be removed in the future versions of isystem.connect
.
Portability list
CCoverageController() --> CCoverageController2() File name and open mode are required. isCoverageAvailable () --> not implemented in CCoverageController2 isBranchCoverageAvailable () --> not implemented in CCoverageController2 isHWCoverageAvailable () --> not implemented in CCoverageController2 isOfflineCoverageAvailable () --> not implemented in CCoverageController2 setConfiguration() --> use createTrigger(), setProvideAssemblerInfo() allrange
methods --> usearea
handling methods (addArea(), removeArea(), ...) getCoverageBitmap() --> no longer available, use class CCoverageData2 getCoverageStatistics() --> use class CCoverageData2 getStatisticsForSymbol() --> use class CCoverageData2
This class can be used to configure coverage, run recording, and export the recorded data. However, it has no methods to get recorded information. For this purpose a separate class called CCoverageData2 should be used.
Use only methods documented for this class. If a method from the base class is not documented here, do not use it.
Python example with recording and simple data reading: test_area.py
#include <CCoverageController2.h>
Public Types | |
enum | EAnalysisType { ETraceOnly , ECoverage , EProfiler , EBoth } |
Which type of analysis should be performed on recording. More... | |
enum | ECoverageAreaType { EAreaFolder , EAreaModule , EAreaFunction , EAreaRange , EAreaImage } |
Defines types of ares, which can be included in coverage measurement. More... | |
enum | ECoverageScope { EScopeAllDownloadedCode , EScopeEntireMemory , EScopeCustom } |
Defines types of scopes for coverage measurement. More... | |
enum | EDocumentType { ANALYZER , CODE_COVERAGE , PROFILER } |
new enum type introduced, to limit the allowed values More... | |
Public Member Functions | |
void | abort () |
Aborts loading of document contents from a file. More... | |
int | addArea (int triggerIndex, ECoverageAreaType areaType, const std::string &areaName) |
Adds area (module, function, ...) to be included in coverage measurement. More... | |
std::string | areaType2Str (ECoverageAreaType areaType) |
Returns string, which can be used to set option /Document/<fileName>/Trigger.Items[<idx1>].Coverage.Include[<idx2>].Type . More... | |
CCoverageController2 (std::shared_ptr< ConnectionMgr > connectionMgr, const std::string &fileName, const std::string &mode) | |
Instantiates object and opens or creates coverage document in winIDEA . More... | |
void | close () |
Closes the document. More... | |
void | closeAll () |
Closes all documents. More... | |
void | closeDiscard () |
Closes the document and discards any unsaved changes. More... | |
int | createTrigger (const std::string &triggerName) |
Creates a new coverage trigger. More... | |
void | exportData (isys::CCoverageExportConfigSPtr exportConfig) |
Exports coverage data according to the given configuration. More... | |
int | getActiveTriggerIndex () |
Returns index of the currently active trigger. More... | |
CAnalyzerSessionStatus | getAnalyzerSessionStatus () |
Returns analyzer session status. More... | |
void | getAreas (int triggerIndex, ECoverageAreaType areaType, iconnect::StrVector &areas) |
Returns list of currently configured areas. More... | |
std::string | getDocumentOptionURL (const std::string &postfix) |
This utility method returns path of analyzer document option. More... | |
CDocumentStatus | getDocumentStatus () |
Returns analyzer document status. | |
CIDEControllerSPtr | getIConnectIDE () |
Returns the isystem.connect IDE interface. More... | |
int | getNumberOfTriggers () |
Returns the number of triggers defined in the opened document. More... | |
ECoverageScope | getScope (int triggerIdx) |
Returns scope to be included in coverage measurement. More... | |
int | getTriggerIndex (const std::string &triggerName, bool isThrowException=true) |
Returns the index of the trigger with the given name. More... | |
std::string | getTriggerOption (int index, const std::string &triggerOption) |
Returns value of trigger option, for example trigger name, buffer size, trigger position, ... More... | |
bool | isActive () |
Returns true if the document start action is still running, false otherwise. More... | |
bool | isBusy () |
Returns true if the document is still changing, either because recording or loading/analysis is still running. More... | |
bool | isIgnoreUnreachableCode () |
bool | isProvideAssemblerInfo (int triggerIdx) |
Returns true if assembler info should be provided with coverage. More... | |
void | merge (const iconnect::StrVector &files) |
This method merges coverage information from the given list of analyzer files to this document. More... | |
void | removeAllAreas (int triggerIndex) |
Removes all areas of the given type from coverage measurement. More... | |
int | removeArea (int triggerIndex, ECoverageAreaType areaType, const std::string &areaName) |
Removes area, which has been previously added with addArea(), from coverage measurement. More... | |
int | removeTrigger (const std::string &triggerName) |
Removes profiler or trace trigger. More... | |
void | reset (IConnectIDE::EDocumentResetParameter resetScope) |
Resets contents of the document. More... | |
void | resume () |
Starts recording but keeps existing coverage data. More... | |
void | save () |
Saves the document. More... | |
void | saveAs (const std::string &fileName, bool isForceOverwrite=false) |
Saves the document with a new name. More... | |
void | saveAsPrompt () |
Saves the document, winIDEA prompts the user for a new name. More... | |
void | saveCopy (const std::string &newFileName) |
Saves copy of the document under a given file name. More... | |
ECoverageScope | scope2Enum (const std::string &scope) |
Returns enum value for the given scope string. More... | |
std::string | scope2Str (ECoverageScope scope) |
Returns string, which can be used to set option /Document/<fileName>/Trigger.Items[<idx1>].Coverage.Scope . More... | |
void | select (const std::string &triggerName) |
Selects trigger from 'Analyzer Configuration' toolbar drop down list in winIDEA (the one with a hammer and text) More... | |
void | select (int index) |
Selects trigger from 'Analyzer Configuration' toolbar drop down list in winIDEA (the one with a hammer and text) More... | |
void | setAnalysisType (int triggerIndex, EAnalysisType analysisType) |
This method sets analysis type on the given trigger. More... | |
void | setDirty (bool isDirty) |
Sets dirty status of the document. More... | |
void | setIgnoreUnreachableCode (bool isIgnoreUnreachableCode) |
If set to true, then the code inside the function which is not reachable by sequential or (conditional)direct branch flow is not considered for coverage statistics. More... | |
void | setMarker () |
Not available for analyzer documents - does nothing. | |
void | setProvideAssemblerInfo (int triggerIdx, bool isProvideAssemblerInfo) |
Sets option to include assembler instructions in measured coverage. More... | |
void | setScope (int triggerIndex, ECoverageScope scope) |
Sets scope to be included in coverage measurement. More... | |
void | setTriggerOption (int index, const std::string &triggerOption, const std::string &newValue) |
Sets value of the trigger option, for example trigger name, buffer size, trigger position, ... More... | |
void | setTriggerOption (int index, const std::string &triggerOption, DWORD newValue) |
Sets value of the trigger option, for example trigger name, buffer size, trigger position, ... More... | |
void | start () |
Starts default document action. More... | |
void | start1 () |
Starts alternate document action. More... | |
void | stop () |
Stops document action. More... | |
void | stopAnalyzing () |
Stops analysis of analyzer data. More... | |
void | stopLoadingOrSaving () |
Stops load or save operation. | |
void | stopSampling () |
Stops sampling (recording) operation. More... | |
void | stopUploading () |
Stops transfer of data to PC. More... | |
bool | waitUntilLoaded (int timeoutMs=0, DWORD pollingIntervalMs=100, bool isThrow=false) |
This method polls analyzer status with the given polling interval and returns when analyzer stops loading samples from the hardware, or timeout expires. More... | |
Static Public Attributes | |
static const std::string | exportCCAsCSV |
Export coverage document as CSV file. More... | |
static const std::string | exportCCAsGCOV |
Export coverage document as GNU coverage file. More... | |
static const std::string | exportCCAsHTML |
Export coverage document as HTML file. More... | |
static const std::string | exportCCAsReviewHTML |
Export coverage document as HTML file in format suitable for code review. More... | |
static const std::string | exportCCAsReviewText |
Export coverage document as text file in format suitable for code review. More... | |
static const std::string | exportCCAsText |
Export coverage document as text file. More... | |
static const std::string | exportCCAsXML |
Export coverage document as XML file. More... | |
static const std::string | exportCCAsXML2 |
Export coverage document as XML file. More... | |
static const std::string | exportProfilerAsBTF |
Export profiler document as BTF file. More... | |
static const std::string | exportProfilerAsHTML |
Export profiler document as HTML file. More... | |
static const std::string | exportProfilerAsMDF |
Export profiler document as MDF file. More... | |
static const std::string | exportProfilerAsText1 |
Export profiler document as customized text file. More... | |
static const std::string | exportProfilerAsXML |
Export profiler document as XML file. More... | |
static const std::string | exportTrcAsBinary |
Export trace document as binary file. More... | |
static const std::string | exportTrcAsCSV |
Export trace document as CSV file. More... | |
static const std::string | exportTrcAsText |
Export trace document as text file. More... | |
static const std::string | exportTrcAsXML |
Export trace document as XML file. More... | |
|
inherited |
Defines types of scopes for coverage measurement.
Enumerator | |
---|---|
EScopeAllDownloadedCode | All downloaded code is measured, adding or removing areas with methods in this class has no effect. |
EScopeEntireMemory | All memory is measured, adding or removing areas with methods in this class has no effect. |
EScopeCustom | only coverage of areas added with |
|
inherited |
new enum type introduced, to limit the allowed values
Enumerator | |
---|---|
ANALYZER | trace document |
CODE_COVERAGE | code coverage document. For internal use only, instantiate class CCoverageController instead. |
PROFILER | profiler document. For internal use only, instantiate class CProfilerController2 instead. |
isys::CCoverageController2::CCoverageController2 | ( | std::shared_ptr< ConnectionMgr > | connectionMgr, |
const std::string & | fileName, | ||
const std::string & | mode | ||
) |
Instantiates object and opens or creates coverage document in winIDEA
.
connectionMgr | class which maintains connection to winIDEA. Connection must be established before this call. |
mode | document open mode. 'u' opens existing file for update (file must exist), 'w' opens existing file and deletes recordings, or creates a new file, 'a' opens existing file and keeps contents, or creates a new file if it does not exist. |
fileName | if not an empty string, it is used, otherwise the user is prompted for fileName by winIDEA. In the later case this object can not be used, because the file name is known only in winIDEA. |
Python example: test_configure.py
|
inherited |
Aborts loading of document contents from a file.
Use this method only when opening a really large documents and contents is not needed, otherwise call waitUntilLoaded() and wait until document contents is loaded. Has no effect when analyzer is running.
int isys::CCoverageController2::addArea | ( | int | triggerIndex, |
ECoverageAreaType | areaType, | ||
const std::string & | areaName | ||
) |
Adds area (module, function, ...) to be included in coverage measurement.
This method has effect only if method setScope()
was called with EScopeCustom
as scope value.
triggerIndex | index of analyzer trigger as returned by createTrigger() , getActiveTriggerIndex() or getTriggerIndex() |
areaType | type of area |
areaName | name of image file, module, function, ... Modules must be specified with relative path if they are not in winIDEA workspace folder. |
Python example: test_area.py
std::string isys::CCoverageController2::areaType2Str | ( | ECoverageAreaType | areaType | ) |
Returns string, which can be used to set option /Document/<fileName>/Trigger.Items[<idx1>].Coverage.Include[<idx2>].Type
.
areaType | type of area |
Python example: test_area.py
|
inherited |
Closes the document.
If the document is changed but not saved, winIDEA prompts user if he would like to save the file.
IOException | in case of an error. |
Python example: test_doc_close.py
|
inherited |
Closes all documents.
If there are no documents opened via isystem.connect, CIDEController::closeAllDocuments() can also be used.
IOException | in case of an error. |
Python example: test_doc_close.py
|
inherited |
Closes the document and discards any unsaved changes.
IOException | in case of an error. |
Python example: test_doc_close.py
int isys::CCoverageController2::createTrigger | ( | const std::string & | triggerName | ) |
Creates a new coverage trigger.
Trigger contains information about what coverage should record (which functions, modules, ...) and how to record it (when to start, buffer size, ...).
triggerName | name of the trigger |
IllegalArgumentException | if the trigger already exists |
Python example: test_trigger.py
void isys::CCoverageController2::exportData | ( | isys::CCoverageExportConfigSPtr | exportConfig | ) |
Exports coverage data according to the given configuration.
Example:
coverage = CCoverageController2(connectionMgr, "coverage.trd", "w") ... cfg = CCoverageExportConfig().setFileName('coverageResult.xml') \ .setExportSources(True) \ .setExportFunctionLines(True) coverage.exportData(cfg)
exportConfig | object with parameters for export - defines which items to export and their format |
Python example: test_area.py
|
inherited |
Returns index of the currently active trigger.
If you want to get the active trigger name, call method:
triggerName = getTriggerOption(index, "Name").
|
inherited |
Returns analyzer session status.
Use this method to check for analyzer status and recording errors.
void isys::CCoverageController2::getAreas | ( | int | triggerIndex, |
ECoverageAreaType | areaType, | ||
iconnect::StrVector & | areas | ||
) |
|
inherited |
This utility method returns path of analyzer document option.
The returned path is composed as '/Document/' + fileName + '/' + postfix
. Use this method when you have to set some option, which is not accessible with methods of this class or derived classes.
Python example: test_set_profiling_sections.py
|
inherited |
Returns the isystem.connect IDE interface.
Use this method only when some functionality of the IConnectIDE interface regarding workspace handling is not accessible from this wrapper.
|
inherited |
Returns the number of triggers defined in the opened document.
Python example: profiler_controller.py
ECoverageScope isys::CCoverageController2::getScope | ( | int | triggerIdx | ) |
Returns scope to be included in coverage measurement.
triggerIdx | index of analyzer trigger as returned by createTrigger() , getActiveTriggerIndex() or getTriggerIndex() |
Python example: test_scope.py
|
inherited |
Returns the index of the trigger with the given name.
triggerName | name of analyzer trigger as specified in 'Analyzer Configuration' toolbar drop down list in winIDEA analyzer window (the one with a settings icon). It is also accessible as winIDEA option path /Document/<fileName>/Trigger.Items[<index>].Name . where <index> is the value returned by this method. |
isThrowException | if trigger with the given name is not found, and:
|
Python example: profiler_controller.py
|
inherited |
Returns value of trigger option, for example trigger name, buffer size, trigger position, ...
triggerOption | part of the winIDEA option path, which is following the Items[] part. For example, name of the trigger at index 0 for analyzer file Sample5554_profiler.trd is specified with winIDEA option path /Document/Sample5554_profiler.trd/Trigger.Items[0].Name . To get it by this method, we define index as 0 and triggerOption as 'Name'.Another example - to get sampling starting point, we call this method as: getTriggerOption(0, "HW.Recorder.Start"); |
index | trigger index, see methods getTriggerIndex() and getNumberOfTriggers() |
Python example: profiler_controller.py
|
inherited |
Returns true
if the document start action is still running, false
otherwise.
When recording stops, this method returns false, even if loading and analysis of data is still in progress.
IOException | in case of an error. |
Python example: test_coverage_get_status.py
|
inherited |
Returns true
if the document is still changing, either because recording or loading/analysis is still running.
Returns false
otherwise.
IOException | in case of an error. |
bool isys::CCoverageController2::isIgnoreUnreachableCode | ( | ) |
bool isys::CCoverageController2::isProvideAssemblerInfo | ( | int | triggerIdx | ) |
Returns true if assembler info should be provided with coverage.
triggerIdx | index of analyzer trigger as returned by createTrigger() , getActiveTriggerIndex() or getTriggerIndex() |
Python example: test_configure.py
void isys::CCoverageController2::merge | ( | const iconnect::StrVector & | files | ) |
This method merges coverage information from the given list of analyzer files to this document.
Note: If this document is configured to show only certain areas (functions), then only those areas will be visible after merging. It is recommended to create a new document before merging, because it has all areas visible by default.
Limitations: You can only merge results, if all analyzer documents were obtained with the same target code.
IOException | if one of source files is not found or in case of merging error. |
Python example: test_merge.py
void isys::CCoverageController2::removeAllAreas | ( | int | triggerIndex | ) |
Removes all areas of the given type from coverage measurement.
Python example: test_area.py
int isys::CCoverageController2::removeArea | ( | int | triggerIndex, |
ECoverageAreaType | areaType, | ||
const std::string & | areaName | ||
) |
Removes area, which has been previously added with addArea(), from coverage measurement.
triggerIndex | index of analyzer trigger as returned by createTrigger() , getActiveTriggerIndex() or getTriggerIndex() |
areaType | type of area |
areaName | name of image file, module, function, ... Modules must be specified with relative path if they are not in winIDEA workspace folder. |
Python example: test_area.py
|
inherited |
Removes profiler or trace trigger.
triggerName | name of the trigger to remove |
Python example: profiler_controller.py
|
inherited |
Resets contents of the document.
resetScope | defines which part of the document to reset. |
Python example: test_reset.py
|
inherited |
Starts recording but keeps existing coverage data.
Works on coverage analyzer documents only.
IOException | in case of an error. |
Python example: test_doc_control.py
|
inherited |
|
inherited |
Saves the document with a new name.
IOException | in case of an error. |
Python example: test_save.py
|
inherited |
Saves the document, winIDEA prompts the user for a new name.
IOException | in case of an error. |
Python example: test_save.py
|
inherited |
Saves copy of the document under a given file name.
The name of the opened document does not change. If the destination file already exists, it is overwritten. Use this method to save intermediate results, for example coverage between several runs.
IOException | in case of an error. |
Python example: test_save.py
ECoverageScope isys::CCoverageController2::scope2Enum | ( | const std::string & | scope | ) |
Returns enum value for the given scope string.
scope | one of strings specified for option /Document/<fileName>/Trigger.Items[<idx1>].Coverage.Scope See winIDEA, Help | Display Option , select Document and analyzer document with coverage trigger defined. |
Python example: test_scope.py
std::string isys::CCoverageController2::scope2Str | ( | ECoverageScope | scope | ) |
Returns string, which can be used to set option /Document/<fileName>/Trigger.Items[<idx1>].Coverage.Scope
.
scope | coverage scope |
Python example: test_scope.py
|
inherited |
Selects trigger from 'Analyzer Configuration' toolbar drop down list in winIDEA
(the one with a hammer and text)
triggerName | name of the trigger in the list |
Python example: profiler_controller.py
|
inherited |
Selects trigger from 'Analyzer Configuration' toolbar drop down list in winIDEA
(the one with a hammer and text)
index | index of the trigger in the list |
Python example: profiler_controller.py
|
inherited |
This method sets analysis type on the given trigger.
If trigger is created with CProfilerController2, it is set to profiler only analysis by default. Similar is true for coverage. To perform both types of analysis on the same recording, call this method with analysisType set to EBoth.
|
inherited |
Sets dirty status of the document.
Normally this method is used when dirty flag is not set after configuring the document via API, but we want to save the document.
void isys::CCoverageController2::setIgnoreUnreachableCode | ( | bool | isIgnoreUnreachableCode | ) |
If set to true, then the code inside the function which is not reachable by sequential or (conditional)direct branch flow is not considered for coverage statistics.
Set it to true, when compiler generates data between instructions (for example branch addresses) and you want to get 100% coverage.
Python example: test_configure.py
void isys::CCoverageController2::setProvideAssemblerInfo | ( | int | triggerIdx, |
bool | isProvideAssemblerInfo | ||
) |
Sets option to include assembler instructions in measured coverage.
triggerIdx | index of analyzer trigger as returned by createTrigger() , getActiveTriggerIndex() or getTriggerIndex() |
isProvideAssemblerInfo | if set to true , assembler information is provided with coverage. |
Python example: test_configure.py
void isys::CCoverageController2::setScope | ( | int | triggerIndex, |
ECoverageScope | scope | ||
) |
Sets scope to be included in coverage measurement.
If EScopeCustom
is set, use method addArea()
to define areas to be included in coverage measurements.
triggerIndex | index of analyzer trigger as returned by createTrigger() , getActiveTriggerIndex() or getTriggerIndex() |
scope | defines which part of memory to include in coverage measurements |
Python example: test_area.py
|
inherited |
Sets value of the trigger option, for example trigger name, buffer size, trigger position, ...
index | trigger index, see methods getTriggerIndex() and getNumberOfTriggers() |
triggerOption | part of the winIDEA option path, which is following the Items[] part. For example, the name of the trigger at index 0 for analyzer file Sample5554_profiler.trd is specified with winIDEA option path: /Document/Sample5554_profiler.trd/Trigger.Items[0].Name To set the trigger name we call this method as: setTriggerOption(0, "Name", "myTrig"); Another example - to set sampling starting point, we call this method as: setTriggerOption(0, "HW.Recorder.Start", "Immediately"); |
newValue | new value of the config. property, see the Options dialog in winIDEA for the list of options and possible values of each option. |
Python example: profiler_controller.py
|
inherited |
Sets value of the trigger option, for example trigger name, buffer size, trigger position, ...
triggerOption | part of the winIDEA option path, which is following the Items[] part. For example, the name of the trigger at index 0 for analyzer file Sample5554_profiler.trd is specified with winIDEA option path: /Document/Sample5554_profiler.trd/Trigger.Items[0].Name . To set the trigger name we call this method as: setTriggerOption(0, "Name", "myTrig"); Another example - to set sampling starting point, we call this method as: setTriggerOption(0, "HW.Recorder.Start", "Immediately"); |
index | trigger index, see methods getTriggerIndex() and getNumberOfTriggers() |
newValue | new value of the config. property, see the Options dialog in winIDEA for the list of options and possible values of each option. |
|
inherited |
Starts default document action.
Starts recording if the document type is coverage, profiler or trace, or executes the script if it is a script document. Existing contents of analyzer document is always deleted when this method is called. It is possible to preserve existing coverage information by calling method resume(), instead of this method.
Note: If analyzer is started, then option 'Reactivate session after CPU stop' has no effect. Analyzer will not be automatically started.
IOException | in case of an error. |
Python example: test_doc_control.py
|
inherited |
Starts alternate document action.
Repeats analysis on a previously recorded data if the document type is analyzer. Usage example: if document is recorded as trace (trace trigger is used), but we want to perform profiler analysis later (with profiler trigger).
IOException | in case of an error. |
Python example: test_doc_control.py
|
inherited |
Stops document action.
For analyzer documents this action is deprecated. Use one of stop...() methods of CAnalyzerController instead.
This method triggers the following state transitions on analyzer document:
For script document this method terminates the script.
IOException | in case of an error. |
Python example: test_doc_control.py
|
inherited |
Stops analysis of analyzer data.
To unconditionally stop analyzer immediately, call stopUploading() before this call.
|
inherited |
Stops sampling (recording) operation.
After this action loading of data starts. Does nothing if sampling has already finished.
IOException | in case of an error. |
Python example: test_coverage_all_code.py
|
inherited |
Stops transfer of data to PC.
Continues with analysis of data already transferred to PC. To completely stop analyzer, call stopAnalyzing() after this call.
|
inherited |
This method polls analyzer status with the given polling interval and returns when analyzer stops loading samples from the hardware, or timeout expires.
timeoutMs | timeout in milliseconds. 0 means infinite timeout |
pollingIntervalMs | time in milliseconds between two readings of the analyzer status |
isThrow | if true and timeout occurs, an exception is thrown |
Python example: profiler_controller.py
|
staticinherited |
Export coverage document as CSV file.
Can be used to set document option Export.Type
, but it is recommended to use classes derived from CCoverageFormatBase instead.
|
staticinherited |
Export coverage document as GNU coverage file.
Can be used to set document option Export.Type
, but it is recommended to use classes derived from CCoverageFormatBase instead.
|
staticinherited |
Export coverage document as HTML file.
Can be used to set document option Export.Type
, but it is recommended to use classes derived from CCoverageFormatBase instead.
|
staticinherited |
Export coverage document as HTML file in format suitable for code review.
Can be used to set document option Export.Type
, but it is recommended to use classes derived from CCoverageFormatBase instead.
|
staticinherited |
Export coverage document as text file in format suitable for code review.
Can be used to set document option Export.Type
, but it is recommended to use classes derived from CCoverageFormatBase instead.
|
staticinherited |
Export coverage document as text file.
Can be used to set document option Export.Type
, but it is recommended to use classes derived from CCoverageFormatBase instead.
|
staticinherited |
Export coverage document as XML file.
Can be used to set document option Export.Type
, but it is recommended to use classes derived from CCoverageFormatBase instead.
|
staticinherited |
Export coverage document as XML file.
Can be used to set document option Export.Type
, but it is recommended to use classes derived from CCoverageFormatBase instead.
|
staticinherited |
Export profiler document as BTF file.
Can be used to set document option Export.Type
, but it is recommended to use classes derived from CProfilerFormatBase instead.
|
staticinherited |
Export profiler document as HTML file.
Can be used to set document option Export.Type
, but it is recommended to use classes derived from CProfilerFormatBase instead.
|
staticinherited |
Export profiler document as MDF file.
Can be used to set document option Export.Type
, but it is recommended to use classes derived from CProfilerFormatBase instead.
|
staticinherited |
Export profiler document as customized text file.
Can be used to set document option Export.Type
, but it is recommended to use classes derived from CProfilerFormatBase instead.
|
staticinherited |
Export profiler document as XML file.
Can be used to set document option Export.Type
, but it is recommended to use classes derived from CProfilerFormatBase instead.
|
staticinherited |
Export trace document as binary file.
Can be used to set document option Export.Type
, but it is recommended to use classes derived from CTraceFormatBase instead.
|
staticinherited |
Export trace document as CSV file.
Can be used to set document option Export.Type
, but it is recommended to use classes derived from CTraceFormatBase instead.
|
staticinherited |
Export trace document as text file.
Can be used to set document option Export.Type
, but it is recommended to use classes derived from CTraceFormatBase instead.
|
staticinherited |
Export trace document as XML file.
Can be used to set document option Export.Type
, but it is recommended to use classes derived from CTraceFormatBase instead.