Searched defs:pcszIface (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Main/src-server/linux/
H A DUSBGetDevices.cpp907 static bool muiIsAnInterfaceOf(const char *pcszIface, const char *pcszDev) argument
911 AssertPtr(pcszIface);
913 Assert(pcszIface[0] == '/');
916 /* If this passes, pcszIface is at least cchDev long */
917 if (strncmp(pcszIface, pcszDev, cchDev))
919 /* If this passes, pcszIface is longer than cchDev */
920 if (pcszIface[cchDev] != '/')
923 if (strchr(pcszIface + cchDev + 1, '/'))
926 if (!strchr(pcszIface + cchDev + 1, ':'))

Completed in 50 milliseconds