Lines Matching refs:pOD

75     tOptDesc * pOD = opts->pOptDesc;  in opt_ambiguities()  local
80 if (pOD->pz_Name == NULL) in opt_ambiguities()
83 if (strneqvcmp(name, pOD->pz_Name, nm_len) == 0) in opt_ambiguities()
84 fprintf(stderr, zambig_file, hyph, pOD->pz_Name); in opt_ambiguities()
86 else if ( (pOD->pz_DisableName != NULL) in opt_ambiguities()
87 && (strneqvcmp(name, pOD->pz_DisableName, nm_len) == 0) in opt_ambiguities()
89 fprintf(stderr, zambig_file, hyph, pOD->pz_DisableName); in opt_ambiguities()
90 } while (pOD++, (++idx < opts->optCt)); in opt_ambiguities()
110 tOptDesc * pOD = opts->pOptDesc; in opt_match_ct() local
116 if (pOD->pz_Name == NULL) in opt_match_ct()
119 if ( SKIP_OPT(pOD) in opt_match_ct()
120 && (pOD->fOptState != (OPTST_OMITTED | OPTST_NO_INIT))) in opt_match_ct()
123 if (strneqvcmp(name, pOD->pz_Name, nm_len) == 0) { in opt_match_ct()
128 if (pOD->pz_Name[ nm_len ] == NUL) { in opt_match_ct()
139 else if ( (pOD->pz_DisableName != NULL) in opt_match_ct()
140 && (strneqvcmp(name, pOD->pz_DisableName, nm_len) == 0) in opt_match_ct()
148 if (pOD->pz_DisableName[ nm_len ] == NUL) { in opt_match_ct()
164 } while (pOD++, (++idx < idxLim)); in opt_match_ct()
181 tOptDesc * pOD = opts->pOptDesc + idx; in opt_set() local
183 if (SKIP_OPT(pOD)) { in opt_set()
187 fprintf(stderr, zDisabledErr, opts->pzProgName, pOD->pz_Name); in opt_set()
188 if (pOD->pzText != NULL) in opt_set()
189 fprintf(stderr, SET_OFF_FMT, pOD->pzText); in opt_set()
203 st->pOD = pOD; in opt_set()
234 st->pOD = opts->pOptDesc + opts->specOptIdx.default_opt; in opt_unknown()
287 optionVendorOption(tOptions * pOpts, tOptDesc * pOD) in optionVendorOption() argument
290 char const * vopt_str = pOD->optArg.argString; in optionVendorOption()
295 if ((pOD->fOptState & OPTST_RESET) != 0) in optionVendorOption()
298 if ((pOD->fOptState & OPTPROC_IMMEDIATE) == 0) in optionVendorOption()
411 pOptState->pOD = pRes; in opt_find_short()
425 pOptState->pOD = \ in opt_find_short()
497 fprintf(stderr, zMisArg, opts->pzProgPath, o_st->pOD->pz_Name); in get_opt_arg_must()
602 fprintf(stderr, zNoArg, pOpts->pzProgPath, o_st->pOD->pz_Name); in get_opt_arg_none()
625 o_st->flags |= (o_st->pOD->fOptState & OPTST_PERSISTENT_MASK); in get_opt_arg()
642 o_st->pzOptArg = o_st->pOD->optArg.argString; in get_opt_arg()