Searched refs:RTStrNICmp (Results 1 - 25 of 34) sorted by relevance

12

/vbox/src/VBox/GuestHost/DragAndDrop/
H A DDnDMIME.cpp29 return ( RTStrNICmp(pcszFormat, "text/uri-list", cchFormatMax) == 0
30 || RTStrNICmp(pcszFormat, "x-special/gnome-icon-list", cchFormatMax) == 0);
36 if (!RTStrNICmp(pcszFormat, "text/uri-list", cchFormatMax)) /** @todo Add "x-special/gnome-icon-list"? */
/vbox/src/VBox/Runtime/common/string/
H A Dutf-8-case.cpp138 RTDECL(int) RTStrNICmp(const char *psz1, const char *psz2, size_t cchMax) function
195 RT_EXPORT_SYMBOL(RTStrNICmp); variable
213 * a matching code point we use RTStrNICmp for the remainder (if any) of the needle.
233 && !RTStrNICmp(pszHaystack, pszNeedle, cchNeedle))
249 && !RTStrNICmp(pszHaystack, pszNeedle, cchNeedle))
265 && !RTStrNICmp(pszHaystack, pszNeedle, cchNeedle))
H A Dstrversion.cpp216 int iDiff = RTStrNICmp(pszBlock1, pszBlock2, RT_MIN(cchBlock1, cchBlock2));
H A Dministring.cpp336 return ::RTStrNICmp(m_psz, that.m_psz, l2) == 0;
/vbox/src/VBox/Runtime/testcase/
H A DtstUtf8.cpp744 RTTestSub(hTest, "RTStrNICmp");
745 CHECK_DIFF(RTStrNICmp(NULL, NULL, RTSTR_MAX), == );
746 CHECK_DIFF(RTStrNICmp(NULL, "", RTSTR_MAX), < );
747 CHECK_DIFF(RTStrNICmp("", NULL, RTSTR_MAX), > );
748 CHECK_DIFF(RTStrNICmp("", "", RTSTR_MAX), == );
749 CHECK_DIFF(RTStrNICmp(NULL, NULL, 0), == );
750 CHECK_DIFF(RTStrNICmp(NULL, "", 0), == );
751 CHECK_DIFF(RTStrNICmp("", NULL, 0), == );
752 CHECK_DIFF(RTStrNICmp("", "", 0), == );
753 CHECK_DIFF(RTStrNICmp("abcde
[all...]
H A DtstRTDigest.cpp479 if (RTStrNICmp(psz, RT_STR_TUPLE("Len =")))
490 if (RTStrNICmp(psz, RT_STR_TUPLE("Msg =")))
508 if (RTStrNICmp(psz, RT_STR_TUPLE("MD =")))
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageAppliance.cpp90 if (!RTStrNICmp(psz, "KeepAllMACs", len))
92 else if (!RTStrNICmp(psz, "KeepNATMACs", len))
94 else if (!RTStrNICmp(psz, "ImportToVDI", len))
900 if (!RTStrNICmp(psz, "CreateManifest", len))
902 else if (!RTStrNICmp(psz, "manifest", len))
904 else if (!RTStrNICmp(psz, "ExportDVDImages", len))
906 else if (!RTStrNICmp(psz, "iso", len))
908 else if (!RTStrNICmp(psz, "StripAllMACs", len))
910 else if (!RTStrNICmp(psz, "nomacs", len))
912 else if (!RTStrNICmp(ps
[all...]
H A DVBoxManageMisc.cpp336 if (!RTStrNICmp(psz, "KeepAllMACs", len))
338 else if (!RTStrNICmp(psz, "KeepNATMACs", len))
340 else if (!RTStrNICmp(psz, "KeepDiskNames", len))
342 else if ( !RTStrNICmp(psz, "Link", len)
343 || !RTStrNICmp(psz, "Linked", len))
H A DVBoxManageDisk.cpp70 if (!RTStrNICmp(psz, "standard", len))
72 else if ( !RTStrNICmp(psz, "fixed", len)
73 || !RTStrNICmp(psz, "static", len))
75 else if (!RTStrNICmp(psz, "Diff", len))
77 else if (!RTStrNICmp(psz, "split2g", len))
79 else if ( !RTStrNICmp(psz, "stream", len)
80 || !RTStrNICmp(psz, "streamoptimized", len))
82 else if (!RTStrNICmp(psz, "esx", len))
H A DVBoxManageStorageController.cpp554 if (!RTStrNICmp(pszMedium, RT_STR_TUPLE("host:")))
/vbox/src/VBox/Storage/testcase/
H A Dvbox-img.cpp165 if (!RTStrNICmp(psz, "standard", len))
167 else if ( !RTStrNICmp(psz, "fixed", len)
168 || !RTStrNICmp(psz, "static", len))
170 else if (!RTStrNICmp(psz, "Diff", len))
172 else if (!RTStrNICmp(psz, "split2g", len))
174 else if ( !RTStrNICmp(psz, "stream", len)
175 || !RTStrNICmp(psz, "streamoptimized", len))
177 else if (!RTStrNICmp(psz, "esx", len))
972 if (!RTStrNICmp(pszVariant, "standard", len))
974 else if (!RTStrNICmp(pszVarian
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/include/
H A DVBoxDTraceLibCWrappers.h55 #define strncasecmp(a_psz1, a_psz2, a_cch) RTStrNICmp(a_psz1, a_psz2, a_cch)
/vbox/src/VBox/NetworkServices/NetLib/
H A DVBoxNetPortForwardString.cpp283 if ( ( (fTcpProto = (RTStrNICmp(pszRaw, "tcp", 3) == 0))
284 || RTStrNICmp(pszRaw, "udp", 3) == 0)
/vbox/include/VBox/HostServices/
H A DGuestPropertySvc.h147 if (RTStrNICmp(pcszNext, flagName(s_aFlagList[i]),
/vbox/src/VBox/Devices/Network/slirp/
H A Dtftp.c167 if (!RTStrNICmp(pszOptName, paTftpDesc[idxOption].pszName, 10))
206 if (!RTStrNICmp(pszOptionName, g_TftpTransferFmtDesc[idxOptDesc].pszName, 10))
211 if (!RTStrNICmp(pszOptionName, g_TftpDesc[idxOptDesc].pszName, 10))
H A Dslirp.h424 # define strncasecmp RTStrNICmp
/vbox/src/VBox/Runtime/common/dbg/
H A Ddbgcfg.cpp1005 if (!RTStrNICmp(pszDir, RT_STR_TUPLE("srv*")))
1056 else if (!RTStrNICmp(pszDir, RT_STR_TUPLE("cache*")))
1084 if (!RTStrNICmp(pszDir, RT_STR_TUPLE("rec*")))
1090 else if (!RTStrNICmp(pszDir, RT_STR_TUPLE("norec*")))
1479 if (!RTStrNICmp(pszDir, RT_STR_TUPLE("srv*")))
1530 else if (!RTStrNICmp(pszDir, RT_STR_TUPLE("cache*")))
1558 if (!RTStrNICmp(pszDir, RT_STR_TUPLE("rec*")))
1564 else if (!RTStrNICmp(pszDir, RT_STR_TUPLE("norec*")))
/vbox/src/VBox/Runtime/common/misc/
H A Duri.cpp392 fRes = RTStrNICmp(pszScheme, pszTmp, strlen(pszTmp)) == 0;
637 if (RTStrNICmp(pszUri, "file:", iPos1) != 0)
H A Dgetopt.cpp161 && !RTStrNICmp(pszOption, pOpt->pszLong, cchLong)))
181 && !RTStrNICmp(pszOption, pOpt->pszLong, cchLong)))
/vbox/src/VBox/VMM/VMMR3/
H A DPDM.cpp2539 && RTStrNICmp(pszName, pszDevName, cchDevName))
2541 && RTStrNICmp(pszName + 3, pszDevName, cchDevName)) )
2556 && RTStrNICmp(pszName, pszUsbName, cchUsbName))
2558 && RTStrNICmp(pszName + 3, pszUsbName, cchUsbName)) )
2577 && RTStrNICmp(pszName, pszDrvName, cchDrvName))
2579 && RTStrNICmp(pszName + 3, pszDrvName, cchDrvName)) )
2595 && RTStrNICmp(pszName, pszDrvName, cchDrvName))
2597 && RTStrNICmp(pszName + 3, pszDrvName, cchDrvName)) )
2665 if (!RTStrNICmp(pszPrefix, pszName, cchPrefix))
/vbox/src/VBox/Main/src-client/
H A DEmulatedUSBImpl.cpp239 if (RTStrNICmp(pszSrc, "drv:", strlen("drv:")) == 0)
244 else if (RTStrNICmp(pszSrc, "dev:", strlen("dev:")) == 0)
/vbox/src/VBox/HostServices/SharedOpenGL/render/
H A Drenderspu_cocoa.c74 if (RTStrNICmp(RTPathFilename(pszName), "VirtualBox", 10) != 0)
/vbox/src/VBox/HostDrivers/Support/win/
H A DSUPR3HardenedMainImports-win.cpp703 if (cchDllName == sizeof("ntdll") - 1 && RTStrNICmp(pszForwarder, RT_STR_TUPLE("ntdll")) == 0)
705 else if (cchDllName == sizeof("kernelbase") - 1 && RTStrNICmp(pszForwarder, RT_STR_TUPLE("kernelbase")) == 0)
/vbox/src/VBox/Runtime/generic/
H A Denv-generic.cpp147 pIntEnv->pfnCompare = fCaseSensitive ? RTStrNCmp : RTStrNICmp;
/vbox/src/VBox/Additions/WINNT/VBoxTray/
H A DVBoxLA.cpp285 if (RTStrNICmp(szName, g_szCommandPrefix, RT_ELEMENTS(g_szCommandPrefix) - 1) != 0)

Completed in 123 milliseconds

12