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

/vbox/src/VBox/Runtime/common/misc/
H A Dgetopt.cpp454 const char *pszArgThis; local
469 pszArgThis = pState->pszNextShort - 2;
500 pszArgThis = pState->argv[iThis + pState->cNonOptions];
507 pOpt = rtGetOptSearchLong(pszArgThis, pState->paOptions, pState->cOptions, pState->fFlags);
509 && pszArgThis[0] == '-'
510 && pszArgThis[1] != '-'
511 && pszArgThis[1] != '\0')
513 pOpt = rtGetOptSearchShort(pszArgThis[1], pState->paOptions, pState->cOptions, pState->fFlags);
520 if (!pOpt && !strcmp(pszArgThis, "--"))
532 else if (*pszArgThis
[all...]

Completed in 33 milliseconds