Lines Matching refs:pszArgs

103 static DECLCALLBACK(void) cpumR3InfoAll(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs);
104 static DECLCALLBACK(void) cpumR3InfoGuest(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs);
105 static DECLCALLBACK(void) cpumR3InfoGuestInstr(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs);
106 static DECLCALLBACK(void) cpumR3InfoHyper(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs);
107 static DECLCALLBACK(void) cpumR3InfoHost(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs);
1683 * @param pszArgs Arguments, ignored.
1685 static DECLCALLBACK(void) cpumR3InfoAll(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs)
1687 cpumR3InfoGuest(pVM, pHlp, pszArgs);
1688 cpumR3InfoGuestInstr(pVM, pHlp, pszArgs);
1689 cpumR3InfoHyper(pVM, pHlp, pszArgs);
1690 cpumR3InfoHost(pVM, pHlp, pszArgs);
1700 * @param pszArgs The pointer to the argument string.
1704 static void cpumR3InfoParseArg(const char *pszArgs, CPUMDUMPTYPE *penmType, const char **ppszComment)
1706 if (!pszArgs)
1713 if (!strncmp(pszArgs, RT_STR_TUPLE("verbose")))
1715 pszArgs += 7;
1718 else if (!strncmp(pszArgs, RT_STR_TUPLE("terse")))
1720 pszArgs += 5;
1723 else if (!strncmp(pszArgs, RT_STR_TUPLE("default")))
1725 pszArgs += 7;
1730 *ppszComment = RTStrStripL(pszArgs);
1740 * @param pszArgs Arguments, ignored.
1742 static DECLCALLBACK(void) cpumR3InfoGuest(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs)
1746 cpumR3InfoParseArg(pszArgs, &enmType, &pszComment);
1765 * @param pszArgs Arguments, ignored.
1767 static DECLCALLBACK(void) cpumR3InfoGuestInstr(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs)
1769 NOREF(pszArgs);
1788 * @param pszArgs Arguments, ignored.
1790 static DECLCALLBACK(void) cpumR3InfoHyper(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs)
1797 cpumR3InfoParseArg(pszArgs, &enmType, &pszComment);
1809 * @param pszArgs Arguments, ignored.
1811 static DECLCALLBACK(void) cpumR3InfoHost(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs)
1815 cpumR3InfoParseArg(pszArgs, &enmType, &pszComment);