Searched refs:fNoExecute (Results 1 - 7 of 7) sorted by relevance

/vbox/src/VBox/Debugger/
H A DDBGCInternal.h384 int dbgcEvalCommand(PDBGC pDbgc, char *pszCmd, size_t cchCmd, bool fNoExecute);
406 int dbgcProcessInput(PDBGC pDbgc, bool fNoExecute);
H A DDBGConsole.cpp312 * @param fNoExecute Indicates that no commands should actually be executed.
314 static int dbgcProcessCommands(PDBGC pDbgc, bool fNoExecute) argument
372 rc = dbgcEvalCommand(pDbgc, &pDbgc->achScratch[0], pszTrg - &pDbgc->achScratch[0] - 1, fNoExecute);
535 * @param fNoExecute Indicates that no commands should actually be executed.
537 int dbgcProcessInput(PDBGC pDbgc, bool fNoExecute) argument
553 rc = dbgcProcessCommands(pDbgc, fNoExecute);
849 rc = dbgcProcessInput(pDbgc, false /* fNoExecute */);
861 rc = dbgcProcessInput(pDbgc, false /* fNoExecute */);
/vbox/src/VBox/Debugger/testcase/
H A DtstDBGCParser.cpp254 * @param fNoExecute When set, the command is not executed.
264 static void tstTryExV(PDBGC pDbgc, const char *pszCmds, int rcCmd, bool fNoExecute, const char *pszExpected, argument
276 dbgcProcessInput(pDbgc, fNoExecute);
281 else if ( !fNoExecute
339 * @param fNoExecute When set, the command is not executed.
349 static void tstTryEx(PDBGC pDbgc, const char *pszCmds, int rcCmd, bool fNoExecute, const char *pszExpected, int32_t cArgs, ...) argument
353 tstTryExV(pDbgc, pszCmds, rcCmd, fNoExecute, pszExpected, cArgs, va);
367 return tstTryEx(pDbgc, pszCmds, rcCmd, true /*fNoExecute*/, NULL, -1);
383 return tstTryEx(pDbgc, pszCmds, rcCmd, false /*fNoExecute*/, pszExpected, -1);
404 return tstTryEx(pDbgc, szCmd, VINF_SUCCESS, false /*fNoExecute*/, szExpecte
[all...]
/vbox/src/VBox/VMM/VMMAll/
H A DCPUMAllRegs.cpp1510 || !pVM->cpum.s.HostFeatures.fNoExecute)
1518 pVM->cpum.s.GuestFeatures.fNoExecute = 1;
1658 case CPUMCPUIDFEATURE_NX: return pVM->cpum.s.GuestFeatures.fNoExecute;
H A DPGMAllBth.h2757 const bool fNoExecute = PdeSrc.n.u1NoExecute && GST_IS_NX_ACTIVE(pVCpu);
2759 const bool fNoExecute = false;
2771 enmAccess = (fNoExecute) ? PGMPOOLACCESS_USER_RW_NX : PGMPOOLACCESS_USER_RW;
2773 enmAccess = (fNoExecute) ? PGMPOOLACCESS_USER_R_NX : PGMPOOLACCESS_USER_R;
2778 enmAccess = (fNoExecute) ? PGMPOOLACCESS_SUPERVISOR_RW_NX : PGMPOOLACCESS_SUPERVISOR_RW;
2780 enmAccess = (fNoExecute) ? PGMPOOLACCESS_SUPERVISOR_R_NX : PGMPOOLACCESS_SUPERVISOR_R;
/vbox/include/VBox/vmm/
H A Dcpum.h986 uint32_t fNoExecute : 1; member in struct:CPUMFEATURES
/vbox/src/VBox/VMM/VMMR3/
H A DCPUMR3CpuId.cpp1602 pFeatures->fNoExecute = RT_BOOL(pExtLeaf->uEdx & X86_CPUID_EXT_FEATURE_EDX_NX);

Completed in 99 milliseconds