/vbox/src/VBox/Debugger/ |
H A D | DBGCCmdWorkers.cpp | 49 int dbgcBpAdd(PDBGC pDbgc, RTUINT iBp, const char *pszCmd) argument 61 if (pszCmd) 62 pszCmd = RTStrStripL(pszCmd); 63 size_t cchCmd = pszCmd ? strlen(pszCmd) : 0; 68 memcpy(pBp->szCmd, pszCmd, cchCmd + 1); 85 * @param pszCmd The new command. 87 int dbgcBpUpdate(PDBGC pDbgc, RTUINT iBp, const char *pszCmd) argument 99 if (pszCmd) [all...] |
H A D | DBGCEval.cpp | 1315 * @param pszCmd Pointer to the command. 1319 int dbgcEvalCommand(PDBGC pDbgc, char *pszCmd, size_t cchCmd, bool fNoExecute) argument 1321 char *pszCmdInput = pszCmd; 1326 while (RT_C_IS_BLANK(*pszCmd)) 1327 pszCmd++, cchCmd--; 1330 bool const fExternal = *pszCmd == '.'; 1332 pszCmd++, cchCmd--; 1337 char *pszArgs = pszCmd; 1341 || !RT_C_IS_ALPHA(*pszCmd)) 1350 PCDBGCCMD pCmd = dbgcCommandLookup(pDbgc, pszCmd, pszArg [all...] |
/vbox/src/VBox/GuestHost/OpenGL/util/ |
H A D | error.c | 486 static void crDebugDmlPrint(const char* pszDesc, const char* pszCmd) argument 488 crDebugDbgPrintF("<?dml?><exec cmd=\"%s\">%s</exec>, ( %s )\n", pszCmd, pszDesc, pszCmd);
|
/vbox/src/VBox/Runtime/tools/ |
H A D | RTSignTool.cpp | 841 const char *pszCmd; member in struct:__anon16773 897 if (RTStrSimplePatternMultiMatch(papszArgs[iArg], RTSTR_MAX, g_aCommands[iCmd].pszCmd, RTSTR_MAX, NULL)) 932 const char *pszCmd = argv[iArg]; local 935 if (!strcmp(g_aCommands[i].pszCmd, pszCmd)) 937 RTMsgError("Unknown command '%s'.", pszCmd);
|
/vbox/src/VBox/Additions/common/VBoxGuestLib/ |
H A D | VBoxGuestR3LibGuestCtrl.cpp | 502 char *pszCmd, uint32_t cbCmd, 514 AssertPtrReturn(pszCmd, VERR_INVALID_POINTER); 531 VbglHGCMParmPtrSet(&Msg.cmd, pszCmd, cbCmd); 501 VbglR3GuestCtrlProcGetStart(PVBGLR3GUESTCTRLCMDCTX pCtx, char *pszCmd, uint32_t cbCmd, uint32_t *puFlags, char *pszArgs, uint32_t cbArgs, uint32_t *pcArgs, char *pszEnv, uint32_t *pcbEnv, uint32_t *pcEnvVars, char *pszUser, uint32_t cbUser, char *pszPassword, uint32_t cbPassword, uint32_t *puTimeoutMS, uint32_t *puPriority, uint64_t *puAffinity, uint32_t cbAffinity, uint32_t *pcAffinity) argument
|
/vbox/src/VBox/Frontends/VBoxManage/ |
H A D | VBoxManageDisk.cpp | 1563 const char *pszCmd = NULL; local 1575 pszCmd = (a->argc > 0) ? a->argv[0] : ""; 1576 if ( !RTStrICmp(pszCmd, "disk") 1577 || !RTStrICmp(pszCmd, "dvd") 1578 || !RTStrICmp(pszCmd, "floppy")) 1580 if (!RTStrICmp(pszCmd, "disk")) 1582 else if (!RTStrICmp(pszCmd, "dvd")) 1584 else if (!RTStrICmp(pszCmd, "floppy")) 1588 AssertMsgFailed(("unexpected parameter %s\n", pszCmd)); 1596 pszCmd [all...] |
H A D | VBoxInternalManage.cpp | 2520 const char *pszCmd = a->argv[0]; local 2521 if (!strcmp(pszCmd, "loadmap")) 2523 if (!strcmp(pszCmd, "loadsyms")) 2525 //if (!strcmp(pszCmd, "unloadsyms")) 2527 if (!strcmp(pszCmd, "sethduuid") || !strcmp(pszCmd, "sethdparentuuid")) 2529 if (!strcmp(pszCmd, "dumphdinfo")) 2531 if (!strcmp(pszCmd, "listpartitions")) 2533 if (!strcmp(pszCmd, "createrawvmdk")) 2535 if (!strcmp(pszCmd, "renamevmd [all...] |
H A D | VBoxManageGuestCtrl.cpp | 797 const char *pszCmd = pArg->argv[1]; local 959 RTProcSelf(), pszNameOrId, pszCmd))
|
/vbox/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/ |
H A D | VBoxDispDbg.cpp | 144 VOID vboxVDbgDoPrintDmlCmd(const char* pszDesc, const char* pszCmd) argument 146 vboxVDbgPrint(("<?dml?><exec cmd=\"%s\">%s</exec>, ( %s )\n", pszCmd, pszDesc, pszCmd));
|
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/ |
H A D | dump.cpp | 1608 static void crDmpPrintDmlCmd(const char* pszDesc, const char* pszCmd) argument 1610 crDmpPrint("<?dml?><exec cmd=\"%s\">%s</exec>, ( %s )\n", pszCmd, pszDesc, pszCmd);
|
/vbox/include/VBox/ |
H A D | dbg.h | 941 const char *pszCmd; member in struct:DBGCCMD
|