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

/vbox/src/VBox/Main/src-server/generic/
H A DNetIf-generic.cpp45 static int NetIfAdpCtl(const char * pcszIfName, const char *pszAddr, const char *pszOption, const char *pszMask) argument
47 const char *args[] = { NULL, pcszIfName, pszAddr, pszOption, pszMask, NULL };
82 static int NetIfAdpCtl(HostNetworkInterface * pIf, const char *pszAddr, const char *pszOption, const char *pszMask) argument
87 return NetIfAdpCtl(strName.c_str(), pszAddr, pszOption, pszMask);
136 const char *pszOption, *pszMask; local
144 pszOption = "remove";
149 pszOption = "netmask";
156 return NetIfAdpCtl(pIf, szAddress, pszOption, pszMask);
/vbox/src/VBox/Runtime/common/misc/
H A Dgetopt.cpp134 * @param pszOption The alleged long option.
139 static PCRTGETOPTDEF rtGetOptSearchLong(const char *pszOption, PCRTGETOPTDEF paOptions, size_t cOptions, uint32_t fFlags) argument
159 if ( !strncmp(pszOption, pOpt->pszLong, cchLong)
161 && !RTStrNICmp(pszOption, pOpt->pszLong, cchLong)))
164 while (RT_C_IS_DIGIT(pszOption[cchLong]))
166 if ( pszOption[cchLong] == '\0'
167 || pszOption[cchLong] == ':'
168 || pszOption[cchLong] == '=')
179 if ( !strncmp(pszOption, pOpt->pszLong, cchLong)
181 && !RTStrNICmp(pszOption, pOp
[all...]
/vbox/src/apps/adpctl/
H A DVBoxNetAdpCtl.cpp260 const char *pszOption = NULL; local
278 pszOption = "netmask";
468 rc = executeIfconfig(pszAdapterName, "inet6", VBOXADPCTL_ADD_CMD, pszAddress, pszOption, pszNetworkMask);
477 rc = executeIfconfig(pszAdapterName, pszAddress, pszOption, pszNetworkMask);
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageModifyVM.cpp379 static void vrdeWarningDeprecatedOption(const char *pszOption) argument
381 RTStrmPrintf(g_pStdErr, "Warning: '--vrdp%s' is deprecated. Use '--vrde%s'.\n", pszOption, pszOption);

Completed in 54 milliseconds