Lines Matching defs:pOD

38 enum_err(tOptions * pOpts, tOptDesc * pOD,
42 find_name(char const * name, tOptions * pOpts, tOptDesc * pOD,
46 set_memb_shell(tOptions * pOpts, tOptDesc * pOD, char const * const * paz_names,
62 enum_err(tOptions * pOpts, tOptDesc * pOD,
75 pOD->optArg.argString, pOD->pz_Name);
77 fprintf(option_usage_fp, zValidKeys, pOD->pz_Name);
165 if (OPTST_GET_ARGTYPE(pOD->fOptState) == OPARG_TYPE_MEMBERSHIP) {
179 * @param pOD the option descriptor for this option
184 find_name(char const * name, tOptions * pOpts, tOptDesc * pOD,
202 enum_err(pOpts, pOD, paz_names, (int)name_ct);
236 enum_err(pOpts, pOD, paz_names, (int)name_ct);
245 * arg: tOptDesc *, pOD, enumeration option description
254 optionKeywordName(tOptDesc * pOD, unsigned int enum_val)
259 (*(pOD->pOptProc))(OPTPROC_RETURN_VALNAME, &od );
269 * arg: tOptDesc *, pOD, enumeration option description
283 optionEnumerationVal(tOptions * pOpts, tOptDesc * pOD,
297 enum_err(pOpts, pOD, paz_names, (int)name_ct);
302 unsigned int ix = (unsigned int)pOD->optArg.argEnum;
316 unsigned int ix = (unsigned int)pOD->optArg.argEnum;
323 pOD->optArg.argString = paz_names[ix];
328 if ((pOD->fOptState & OPTST_RESET) != 0)
331 res = find_name(pOD->optArg.argString, pOpts, pOD, paz_names, name_ct);
333 if (pOD->fOptState & OPTST_ALLOC_ARG) {
334 AGFREE(pOD->optArg.argString);
335 pOD->fOptState &= ~OPTST_ALLOC_ARG;
336 pOD->optArg.argString = NULL;
344 set_memb_shell(tOptions * pOpts, tOptDesc * pOD, char const * const * paz_names,
351 uintptr_t bits = (uintptr_t)pOD->optCookie;