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

/vbox/src/VBox/Runtime/testcase/
H A DtstRTFileModeStringToFlags.cpp48 const char *pszMode; member in struct:__anon16728
101 int iResult = RTFileModeToFlags(aTests[iTest].pszMode, &uMode);
105 iTest, aTests[iTest].pszMode, iResult, aTests[iTest].iResult);
117 iTest, aTests[iTest].pszMode, uMode, aTests[iTest].uMode);
127 const char *pszMode; member in struct:__anon16729
193 int iResult = RTFileModeToFlagsEx(aTestsEx[iTest].pszMode, aTestsEx[iTest].pszDisposition,
198 iTest, aTestsEx[iTest].pszDisposition, aTestsEx[iTest].pszMode,
211 iTest, aTestsEx[iTest].pszDisposition, aTestsEx[iTest].pszMode,
/vbox/src/VBox/Runtime/common/misc/
H A DRTFileModeToFlags.cpp38 RTR3DECL(int) RTFileModeToFlags(const char *pszMode, uint64_t *puMode) argument
40 AssertPtrReturn(pszMode, VERR_INVALID_POINTER);
45 const char *pszCur = pszMode;
/vbox/include/iprt/
H A Dstream.h58 * @param pszMode The open mode. See fopen() standard.
62 RTR3DECL(int) RTStrmOpen(const char *pszFilename, const char *pszMode, PRTSTREAM *ppStream);
68 * @param pszMode The open mode. See fopen() standard.
74 RTR3DECL(int) RTStrmOpenFV(const char *pszMode, PRTSTREAM *ppStream, const char *pszFilenameFmt, va_list args);
80 * @param pszMode The open mode. See fopen() standard.
86 RTR3DECL(int) RTStrmOpenF(const char *pszMode, PRTSTREAM *ppStream, const char *pszFilenameFmt, ...);
H A Dfile.h681 * @param pszMode Mode string to convert.
685 RTDECL(int) RTFileModeToFlags(const char *pszMode, uint64_t *puMode);
/vbox/src/VBox/Runtime/r3/
H A Dstream.cpp236 * @param pszMode The open mode. See fopen() standard.
240 RTR3DECL(int) RTStrmOpen(const char *pszFilename, const char *pszMode, PRTSTREAM *ppStream) argument
245 if (!pszMode || !*pszMode)
247 AssertMsgFailed(("No pszMode!\n"));
257 switch (*pszMode)
262 switch (pszMode[1])
268 switch (pszMode[2])
304 AssertMsgFailed(("Invalid pszMode='%s', '<a|r|w>[+][b|t]'\n", pszMode));
345 RTStrmOpenFV(const char *pszMode, PRTSTREAM *ppStream, const char *pszFilenameFmt, va_list args) argument
371 RTStrmOpenF(const char *pszMode, PRTSTREAM *ppStream, const char *pszFilenameFmt, ...) argument
[all...]
/vbox/src/VBox/ValidationKit/utils/network/
H A DNetPerf.cpp759 * @param pszMode The mode string.
761 static NETPERFMODE netperfModeFromString(const char *pszMode) argument
763 if (!strcmp(pszMode, "latency"))
765 if ( !strcmp(pszMode, "throughput")
766 || !strcmp(pszMode, "thruput") )
768 if ( !strcmp(pszMode, "throughput-xmit")
769 || !strcmp(pszMode, "thruput-xmit")
770 || !strcmp(pszMode, "xmit") )
772 if ( !strcmp(pszMode, "throughput-recv")
773 || !strcmp(pszMode, "thrupu
[all...]
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageModifyVM.cpp2003 const char *pszMode = ValueUnion.psz; local
2013 if (!RTStrICmp(pszMode, "server"))
2018 else if (!RTStrICmp(pszMode, "client"))
2023 else if (!RTStrICmp(pszMode, "tcpserver"))
2028 else if (!RTStrICmp(pszMode, "tcpclient"))
2033 else if (!RTStrICmp(pszMode, "file"))
/vbox/src/VBox/VMM/VMMR3/
H A DPGMDbg.cpp1620 const char * const pszMode = pState->fEpt ? "Extended Page Tables"
1629 pszMode,
2299 const char * const pszMode = pState->fEpt ? "Extended Page Tables"
2308 pszMode,

Completed in 84 milliseconds