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

/vbox/src/VBox/Runtime/common/misc/
H A Dgetopt.cpp63 PCRTGETOPTDEF paOptions, size_t cOptions,
70 pState->paOptions = paOptions;
82 Assert(!(paOptions[i].fFlags & ~RTGETOPT_VALID_MASK));
83 Assert(paOptions[i].iShort > 0);
84 Assert(paOptions[i].iShort != VINF_GETOPT_NOT_OPTION);
85 Assert(paOptions[i].iShort != '-');
135 * @param paOptions Option array.
139 static PCRTGETOPTDEF rtGetOptSearchLong(const char *pszOption, PCRTGETOPTDEF paOptions, size_t cOptions, uint32_t fFlags) argument
141 PCRTGETOPTDEF pOpt = paOptions;
62 RTGetOptInit(PRTGETOPTSTATE pState, int argc, char **argv, PCRTGETOPTDEF paOptions, size_t cOptions, int iFirst, uint32_t fFlags) argument
217 rtGetOptSearchShort(int chOption, PCRTGETOPTDEF paOptions, size_t cOptions, uint32_t fFlags) argument
[all...]
/vbox/include/iprt/
H A Dgetopt.h206 PCRTGETOPTDEF paOptions; member in struct:RTGETOPTSTATE
207 /** Number of items in paOptions. */
243 * @param paOptions Array of RTGETOPTDEF structures, which must specify what
245 * @param cOptions Number of array items passed in with paOptions.
250 PCRTGETOPTDEF paOptions, size_t cOptions,
/vbox/src/VBox/ValidationKit/utils/TestExecServ/
H A DTestExecService.cpp3273 PRTGETOPTDEF paOptions = (PRTGETOPTDEF)alloca(cOptions * sizeof(RTGETOPTDEF)); local
3274 if (!paOptions)
3277 memcpy(paOptions, s_aBaseOptions, sizeof(s_aBaseOptions));
3281 memcpy(&paOptions[cOptions], g_apTransports[i]->paOpts, g_apTransports[i]->cOpts * sizeof(RTGETOPTDEF));
3289 int rc = RTGetOptInit(&GetState, argc, argv, paOptions, cOptions, 1, 0 /* fFlags */);

Completed in 42 milliseconds