Searched refs:pszState (Results 1 - 8 of 8) sorted by relevance

/vbox/src/VBox/Runtime/common/rand/
H A Drandparkmiller.cpp126 static DECLCALLBACK(int) rtRandParkMillerSaveState(PRTRANDINT pThis, char *pszState, size_t *pcbState) argument
135 RTStrPrintf(pszState, *pcbState, "PM:%08RX32,%08RX32,%02x;",
144 static DECLCALLBACK(int) rtRandParkMillerRestoreState(PRTRANDINT pThis, char const *pszState) argument
147 if ( pszState[0] != 'P'
148 || pszState[1] != 'M'
149 || pszState[2] != ':')
151 pszState += 3;
156 int rc = RTStrToUInt32Ex(pszState, &pszNext, 16, &u32Ctx);
158 || pszNext != pszState + 8
161 pszState
[all...]
H A Drandadv.cpp69 RTDECL(int) RTRandAdvSaveState(RTRAND hRand, char *pszState, size_t *pcbState) RT_NO_THROW
75 AssertPtrNull(pszState); variable
79 return pThis->pfnSaveState(pThis, pszState, pcbState);
84 RTDECL(int) RTRandAdvRestoreState(RTRAND hRand, char const *pszState) RT_NO_THROW
90 AssertPtr(pszState); variable
93 return pThis->pfnRestoreState(pThis, pszState);
389 DECLHIDDEN(DECLCALLBACK(int)) rtRandAdvStubSaveState(PRTRANDINT pThis, char *pszState, size_t *pcbState) argument
392 NOREF(pszState);
399 DECLHIDDEN(DECLCALLBACK(int)) rtRandAdvStubRestoreState(PRTRANDINT pThis, char const *pszState) argument
402 NOREF(pszState);
[all...]
/vbox/src/VBox/Runtime/include/internal/
H A Drand.h98 * returned string and pszState contains the state string.
104 * @param pszState Where to store the state. The returned string will be
106 * @param pcbState The size of the buffer pszState points to on input, the
110 DECLCALLBACKMEMBER(int, pfnSaveState)(PRTRANDINT pThis, char *pszState, size_t *pcbState);
122 * @param pszState The state to load.
124 DECLCALLBACKMEMBER(int, pfnRestoreState)(PRTRANDINT pThis, char const *pszState);
168 DECLHIDDEN(DECLCALLBACK(int)) rtRandAdvStubSaveState(PRTRANDINT pThis, char *pszState, size_t *pcbState);
169 DECLHIDDEN(DECLCALLBACK(int)) rtRandAdvStubRestoreState(PRTRANDINT pThis, char const *pszState);
/vbox/src/VBox/VMM/VMMR3/
H A DPATMR3Dbg.cpp382 const char *pszState; local
385 case PATCH_REFUSED: pszState = "Refused"; break;
386 case PATCH_DISABLED: pszState = "Disabled"; break;
387 case PATCH_ENABLED: pszState = "Enabled"; break;
388 case PATCH_UNUSABLE: pszState = "Unusable"; break;
389 case PATCH_DIRTY: pszState = "Dirty"; break;
390 case PATCH_DISABLE_PENDING: pszState = "DisablePending"; break;
391 default: pszState = "State???"; AssertFailed(); break;
396 pszState, pPatchRec->patch.cbPatchJump,
400 off += RTStrPrintf(&pszBuf[off], cbBuf - off, " - %s (%u b)", pszState, pPatchRe
[all...]
/vbox/include/iprt/
H A Drand.h202 * returned string and pszState contains the state string.
208 * @param pszState Where to store the state. The returned string will be
210 * @param pcbState The size of the buffer pszState points to on input, the
214 RTDECL(int) RTRandAdvSaveState(RTRAND hRand, char *pszState, size_t *pcbState) RT_NO_THROW;
226 * @param pszState The state to load.
228 RTDECL(int) RTRandAdvRestoreState(RTRAND hRand, char const *pszState) RT_NO_THROW;
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageList.cpp461 const char *pszState = "?"; local
465 pszState = "Not supported";
468 pszState = "Unavailable";
471 pszState = "Busy";
474 pszState = "Available";
477 pszState = "Held";
480 pszState = "Captured";
486 RTPrintf("Current State: %s\n\n", pszState);
H A DVBoxManageDisk.cpp1110 const char *pszState = "unknown"; local
1114 pszState = "not created";
1117 pszState = "created";
1120 pszState = "locked read";
1123 pszState = "locked write";
1126 pszState = "inaccessible";
1129 pszState = "creating";
1132 pszState = "deleting";
1135 RTPrintf("State: %s\n", pszState);
H A DVBoxManageInfo.cpp749 const char *pszState = machineStateToName(machineState, details == VMINFO_MACHINEREADABLE /*=fShort*/); local
759 RTPrintf("VMState=\"%s\"\n", pszState);
768 RTPrintf("State: %s (since %s)\n", pszState, pszTime);

Completed in 110 milliseconds