Lines Matching full:od

108     tOptDesc *  od = o_st->pOD;  in handle_opt()  local
109 tOptProc * opt_proc = od->pOptProc; in handle_opt()
110 if (od->fOptState & OPTST_ALLOC_ARG) in handle_opt()
111 AGFREE(od->optArg.argString); in handle_opt()
113 od->optArg.argString = o_st->pzOptArg; in handle_opt()
120 && ((od->fOptState & OPTST_NO_INIT) != 0) in handle_opt()
128 * entry. (It may not be od->optChar[0], if this is an in handle_opt()
132 if (od->optEquivIndex != NO_EQUIVALENT) { in handle_opt()
133 tOptDesc * eqv_od = opts->pOptDesc + od->optEquivIndex; in handle_opt()
140 if ((od->fOptState & OPTST_DEFINED) != 0) { in handle_opt()
149 if (eqv_od->optActualIndex != od->optIndex) { in handle_opt()
150 fprintf(stderr, zmultiway_bug, eqv_od->pz_Name, od->pz_Name, in handle_opt()
164 if (eqv_od->optActualIndex != od->optIndex) { in handle_opt()
169 eqv_od->optActualValue = od->optValue; in handle_opt()
170 eqv_od->optActualIndex = od->optIndex; in handle_opt()
178 eqv_od->optArg.argString = od->optArg.argString; in handle_opt()
179 od = eqv_od; in handle_opt()
182 od->optActualValue = od->optValue; in handle_opt()
183 od->optActualIndex = od->optIndex; in handle_opt()
186 od->fOptState &= OPTST_PERSISTENT_MASK; in handle_opt()
187 od->fOptState |= (o_st->flags & ~OPTST_PERSISTENT_MASK); in handle_opt()
193 if ( (od->fOptState & OPTST_DEFINED) in handle_opt()
194 && (++od->optOccCt > od->optMaxCt) ) in handle_opt()
195 return too_many_occurrences(opts, od); in handle_opt()
200 (*opt_proc)(opts, od); in handle_opt()
364 tOptDesc * od = opts->pOptDesc + opts->specOptIdx.save_opts; in optionProcess() local
366 if (SELECTED_OPT(od)) { in optionProcess()