Changeset 93460 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Jan 27, 2022 4:50:15 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/MachineDebuggerImpl.h
r93115 r93460 52 52 HRESULT getSingleStep(BOOL *aSingleStep); 53 53 HRESULT setSingleStep(BOOL aSingleStep); 54 HRESULT getRecompileUser(BOOL *aRecompileUser);55 HRESULT setRecompileUser(BOOL aRecompileUser);56 HRESULT getRecompileSupervisor(BOOL *aRecompileSupervisor);57 HRESULT setRecompileSupervisor(BOOL aRecompileSupervisor);58 54 HRESULT getExecuteAllInIEM(BOOL *aExecuteAllInIEM); 59 55 HRESULT setExecuteAllInIEM(BOOL aExecuteAllInIEM); 60 HRESULT getPATMEnabled(BOOL *aPATMEnabled);61 HRESULT setPATMEnabled(BOOL aPATMEnabled);62 HRESULT getCSAMEnabled(BOOL *aCSAMEnabled);63 HRESULT setCSAMEnabled(BOOL aCSAMEnabled);64 56 HRESULT getLogEnabled(BOOL *aLogEnabled); 65 57 HRESULT setLogEnabled(BOOL aLogEnabled); … … 71 63 HRESULT getLogRelDestinations(com::Utf8Str &aLogRelDestinations); 72 64 HRESULT getExecutionEngine(VMExecutionEngine_T *apenmEngine); 73 HRESULT getHWVirtExEnabled(BOOL *aHWVirtExEnabled);74 65 HRESULT getHWVirtExNestedPagingEnabled(BOOL *aHWVirtExNestedPagingEnabled); 75 66 HRESULT getHWVirtExVPIDEnabled(BOOL *aHWVirtExVPIDEnabled); … … 80 71 HRESULT getVirtualTimeRate(ULONG *aVirtualTimeRate); 81 72 HRESULT setVirtualTimeRate(ULONG aVirtualTimeRate); 82 HRESULT getVM(LONG64 *aVM);83 73 HRESULT getUptime(LONG64 *aUptime); 84 74 85 // wrapped IMachineDeugger properties75 // wrapped IMachineDeugger methods 86 76 HRESULT dumpGuestCore(const com::Utf8Str &aFilename, 87 77 const com::Utf8Str &aCompression); … … 136 126 HRESULT getCPULoad(ULONG aCpuId, ULONG *aPctExecuting, ULONG *aPctHalted, ULONG *aPctOther, LONG64 *aMsInterval) RT_OVERRIDE; 137 127 HRESULT takeGuestSample(const com::Utf8Str &aFilename, ULONG aUsInterval, LONG64 aUsSampleTime, ComPtr<IProgress> &pProgress); 128 HRESULT getUVMAndVMMFunctionTable(LONG64 aMagicVersion, LONG64 *aVMMFunctionTable, LONG64 *aUVM); 138 129 139 130 // private methods … … 156 147 uint8_t maiQueuedEmExecPolicyParams[EMEXECPOLICY_END]; 157 148 int mSingleStepQueued; 158 int mRecompileUserQueued;159 int mRecompileSupervisorQueued;160 int mPatmEnabledQueued;161 int mCsamEnabledQueued;162 149 int mLogEnabledQueued; 163 150 uint32_t mVirtualTimeRateQueued;
Note:
See TracChangeset
for help on using the changeset viewer.