Searched refs:RTStrICmp (Results 1 - 25 of 66) sorted by relevance

123

/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageModifyVM.cpp588 if (!RTStrICmp(ValueUnion.psz, "efi"))
592 else if (!RTStrICmp(ValueUnion.psz, "efi32"))
596 else if (!RTStrICmp(ValueUnion.psz, "efi64"))
600 else if (!RTStrICmp(ValueUnion.psz, "efidual"))
604 else if (!RTStrICmp(ValueUnion.psz, "bios"))
654 if ( !RTStrICmp(ValueUnion.psz, "none")
655 || !RTStrICmp(ValueUnion.psz, "disabled"))
657 else if (!RTStrICmp(ValueUnion.psz, "default"))
659 else if (!RTStrICmp(ValueUnion.psz, "legacy"))
661 else if (!RTStrICmp(ValueUnio
[all...]
H A DVBoxManageStorageController.cpp158 if (!RTStrICmp(ValueUnion.psz, "hdd"))
160 else if (!RTStrICmp(ValueUnion.psz, "fdd"))
162 else if (!RTStrICmp(ValueUnion.psz, "dvddrive"))
390 if (!RTStrICmp(pszMedium, "none"))
394 else if (!RTStrICmp(pszMedium, "emptydrive"))
463 } // end if (!RTStrICmp(pszMedium, "emptydrive"))
498 if (!RTStrICmp(pszMedium, "additions"))
584 else if (!RTStrICmp(pszMedium, "iSCSI"))
773 if (!RTStrICmp(pszPassThrough, "on"))
778 else if (!RTStrICmp(pszPassThroug
[all...]
H A DVBoxManageDisk.cpp102 if (!RTStrICmp(psz, "normal"))
104 else if (!RTStrICmp(psz, "immutable"))
106 else if (!RTStrICmp(psz, "writethrough"))
108 else if (!RTStrICmp(psz, "shareable"))
110 else if (!RTStrICmp(psz, "readonly"))
112 else if (!RTStrICmp(psz, "multiattach"))
126 if ( !RTStrICmp(psz, "on")
127 || !RTStrICmp(psz, "yes")
128 || !RTStrICmp(psz, "true")
129 || !RTStrICmp(ps
[all...]
H A DVBoxManageGuestCtrl.cpp3372 if ( !RTStrICmp(pCtx->ppaArgv[0], "sessions")
3373 || !RTStrICmp(pCtx->ppaArgv[0], "sess"))
3375 else if ( !RTStrICmp(pCtx->ppaArgv[0], "processes")
3376 || !RTStrICmp(pCtx->ppaArgv[0], "procs"))
3378 else if ( !RTStrICmp(pCtx->ppaArgv[0], "files"))
3380 else if (!RTStrICmp(pCtx->ppaArgv[0], "all"))
3681 if ( !RTStrICmp(pCtx->ppaArgv[0], "close")
3682 || !RTStrICmp(pCtx->ppaArgv[0], "kill")
3683 || !RTStrICmp(pCtx->ppaArgv[0], "terminate"))
3822 if ( !RTStrICmp(pCt
[all...]
H A DVBoxManageBandwidthControl.cpp166 if (!RTStrICmp(pszType, "disk"))
168 else if (!RTStrICmp(pszType, "network"))
H A DVBoxManageMisc.cpp311 if (!RTStrICmp(psz, "machine"))
313 else if (!RTStrICmp(psz, "machineandchildren"))
315 else if (!RTStrICmp(psz, "all"))
518 if (!RTStrICmp(ValueUnion.psz, "gui"))
523 else if (!RTStrICmp(ValueUnion.psz, "sdl"))
529 else if (!RTStrICmp(ValueUnion.psz, "capture"))
533 else if (!RTStrICmp(ValueUnion.psz, "headless"))
/vbox/src/VBox/Runtime/tools/
H A DRTDbgSymCache.cpp840 if ( !RTStrICmp(pszName, ".Trashes")
841 || !RTStrICmp(pszName, ".$RESCYCLE.BIN")
842 || !RTStrICmp(pszName, "System.kext") /* Usually only plugins here, so skip it. */
847 if (!RTStrICmp(pszExt, "dSYM"))
851 if (!RTStrICmp(pszExt, &g_apszBundleSuffixes[i][1]))
861 if ( !RTStrICmp(pszExt, "pdb")
862 || !RTStrICmp(pszExt, "dbg")
863 || !RTStrICmp(pszExt, "sym")
864 || !RTStrICmp(pszExt, "dwo")
865 || !RTStrICmp(pszEx
[all...]
/vbox/src/VBox/Runtime/common/misc/
H A Dgetopt.cpp191 && !RTStrICmp(pszOption, pOpt->pszLong)))
201 && !RTStrICmp(pszOption, g_aStdOptions[i].pszLong)))
265 if ( !RTStrICmp(pszValue, "true")
266 || !RTStrICmp(pszValue, "t")
267 || !RTStrICmp(pszValue, "yes")
268 || !RTStrICmp(pszValue, "y")
269 || !RTStrICmp(pszValue, "enabled")
270 || !RTStrICmp(pszValue, "enable")
271 || !RTStrICmp(pszValue, "en")
272 || !RTStrICmp(pszValu
[all...]
/vbox/src/VBox/Runtime/testcase/
H A DtstRTDigest.cpp147 if (!RTStrICmp(ValueUnion.psz, "crc32"))
152 else if (!RTStrICmp(ValueUnion.psz, "crc64"))
157 else if (!RTStrICmp(ValueUnion.psz, "md2"))
162 else if (!RTStrICmp(ValueUnion.psz, "md5"))
167 else if (!RTStrICmp(ValueUnion.psz, "sha1"))
172 else if (!RTStrICmp(ValueUnion.psz, "sha224"))
177 else if (!RTStrICmp(ValueUnion.psz, "sha256"))
182 else if (!RTStrICmp(ValueUnion.psz, "sha384"))
187 else if (!RTStrICmp(ValueUnion.psz, "sha512"))
192 else if (!RTStrICmp(ValueUnio
[all...]
H A DtstUtf8.cpp723 RTTestSub(hTest, "RTStrICmp");
724 CHECK_DIFF(RTStrICmp(NULL, NULL), == );
725 CHECK_DIFF(RTStrICmp(NULL, ""), < );
726 CHECK_DIFF(RTStrICmp("", NULL), > );
727 CHECK_DIFF(RTStrICmp("", ""), == );
728 CHECK_DIFF(RTStrICmp("abcdef", "abcdef"), == );
729 CHECK_DIFF(RTStrICmp("abcdef", "abcde"), > );
730 CHECK_DIFF(RTStrICmp("abcde", "abcdef"), < );
731 CHECK_DIFF(RTStrICmp("abcdeg", "abcdef"), > );
732 CHECK_DIFF(RTStrICmp("abcde
[all...]
H A DtstRTLocalIpc.cpp571 if (!RTStrICmp(argv[2], "tstRTLocalIpcSessionConnectionFork"))
573 else if (!RTStrICmp(argv[2], "tstRTLocalIpcSessionWaitFork"))
575 else if (!RTStrICmp(argv[2], "tstRTLocalIpcSessionDataFork"))
584 && !RTStrICmp(argv[1], "child"))
/vbox/src/VBox/Devices/Audio/
H A DDrvAudioCommon.cpp120 if (!RTStrICmp(pszFormat, "u8"))
122 else if (!RTStrICmp(pszFormat, "u16"))
124 else if (!RTStrICmp(pszFormat, "u32"))
126 else if (!RTStrICmp(pszFormat, "s8"))
128 else if (!RTStrICmp(pszFormat, "s16"))
130 else if (!RTStrICmp(pszFormat, "s32"))
/vbox/src/VBox/Frontends/VBoxBalloonCtrl/
H A DVBoxModAPIMonitor.cpp83 if (!RTStrICmp(pszResponse, "none"))
87 else if (!RTStrICmp(pszResponse, "pause"))
91 else if ( !RTStrICmp(pszResponse, "poweroff")
92 || !RTStrICmp(pszResponse, "powerdown"))
96 else if (!RTStrICmp(pszResponse, "save"))
100 else if ( !RTStrICmp(pszResponse, "shutdown")
101 || !RTStrICmp(pszResponse, "shutoff"))
/vbox/include/iprt/cpp/
H A Dministring.h578 return ::RTStrICmp(m_psz, pcszThat);
593 return ::RTStrICmp(m_psz, that.m_psz);
633 return RTStrICmp(that.m_psz, m_psz) == 0;
648 return RTStrICmp(pszThat, m_psz) == 0;
/vbox/src/VBox/Main/src-server/win/
H A DHostDnsServiceWin.cpp274 if (RTStrICmp("Domain", keyName) == 0)
279 else if (RTStrICmp("DhcpDomain", keyName) == 0)
284 else if (RTStrICmp("SearchList", keyName) == 0)
/vbox/src/VBox/ExtPacks/VBoxDTrace/include/
H A DVBoxDTraceLibCWrappers.h53 #define strcasecmp(a_psz1, a_psz2) RTStrICmp(a_psz1, a_psz2)
/vbox/src/VBox/Runtime/common/string/
H A Dutf-8-case.cpp61 RTDECL(int) RTStrICmp(const char *psz1, const char *psz2) function
114 RT_EXPORT_SYMBOL(RTStrICmp); variable
/vbox/src/VBox/Additions/common/VBoxService/
H A DVBoxService.cpp832 && !RTStrICmp(argv[1], "guestsession"))
861 && !RTStrICmp(argv[1], "pagefusion"))
924 if ((fFound = !RTStrICmp(psz + sizeof("enable-") - 1, g_aServices[j].pDesc->pszName)))
929 if ((fFound = !RTStrICmp(psz + sizeof("disable-") - 1, g_aServices[j].pDesc->pszName)))
935 g_aServices[j].fEnabled = !RTStrICmp(psz + sizeof("only-") - 1, g_aServices[j].pDesc->pszName);
H A DVBoxServiceAutoMount.cpp127 if (!RTStrICmp(mntTab.mnt_special, pszShare))
146 if (!RTStrICmp(pMntEnt->mnt_fsname, pszShare))
235 if (RTStrICmp(pszMountPoint, szAlreadyMountedTo))
/vbox/src/VBox/VMM/VMMR3/
H A DMM.cpp354 if ( !RTStrICmp(sz, "no_oc")
355 || !RTStrICmp(sz, "no overcommitment"))
374 if (!RTStrICmp(sz, "low"))
376 else if (!RTStrICmp(sz, "normal"))
378 else if (!RTStrICmp(sz, "high"))
/vbox/src/VBox/Storage/
H A DRAW.cpp381 if ( !RTStrICmp(pszSuffix, ".iso")
382 || !RTStrICmp(pszSuffix, ".cdr")) /* DVD images. */
396 else if ( !RTStrICmp(pszSuffix, ".img")
397 || !RTStrICmp(pszSuffix, ".ima")
398 || !RTStrICmp(pszSuffix, ".dsk")
399 || !RTStrICmp(pszSuffix, ".flp")
400 || !RTStrICmp(pszSuffix, ".vfd")) /* Floppy images */
/vbox/src/VBox/Runtime/r0drv/nt/
H A DntBldSymDb.cpp696 return RTStrICmp(pszString + cchString - cchSuffix, pszSuffix) == 0;
734 if ( !RTStrICmp(pszFilename, "ntkrnlmp.pdb")
735 || !RTStrICmp(pszFilename, "ntkrpamp.pdb")
738 else if ( !RTStrICmp(pszFilename, "ntoskrnl.pdb")
739 || !RTStrICmp(pszFilename, "ntkrnlpa.pdb")
974 && !RTStrICmp(s_aNames[i].psz, pszName))
1057 || RTStrICmp(&pDirEntry->szName[pDirEntry->cbName - 4], ".pdb")
/vbox/src/VBox/NetworkServices/NAT/
H A Dproxy_tftpd.c660 if (RTStrICmp(modename, "octet") == 0) {
663 else if (RTStrICmp(modename, "netascii") == 0) {
668 else if (RTStrICmp(modename, "mail") == 0) {
702 if (RTStrICmp(o->name, opt) == 0) {
/vbox/src/VBox/Additions/common/VBoxControl/
H A DVBoxControl.cpp796 || ( RTStrICmp(argv[0], "on")
797 && RTStrICmp(argv[0], "off")))
808 if (RTStrICmp(argv[0], "on") == 0)
920 if (RTStrICmp(argv[0], "get") == 0)
924 else if (RTStrICmp(argv[0], "delete") == 0)
928 else if (RTStrICmp(argv[0], "set") == 0)
932 else if (RTStrICmp(argv[0], "clear") == 0)
/vbox/src/VBox/Devices/Network/slirp/
H A Dtftp.c292 if (!RTStrICmp("blksize", g_TftpDesc[idxOptionArg].pszName))
300 && !RTStrICmp("tsize", g_TftpDesc[idxOptionArg].pszName))
305 && !RTStrICmp("timeout", g_TftpDesc[idxOptionArg].pszName))

Completed in 143 milliseconds

123