Lines Matching refs:o_st
102 handle_opt(tOptions * opts, tOptState * o_st) in handle_opt() argument
108 tOptDesc * od = o_st->pOD; in handle_opt()
113 od->optArg.argString = o_st->pzOptArg; in handle_opt()
171 o_st->flags |= OPTST_EQUIVALENCE; in handle_opt()
187 od->fOptState |= (o_st->flags & ~OPTST_PERSISTENT_MASK); in handle_opt()
215 next_opt(tOptions * opts, tOptState * o_st) in next_opt() argument
218 tSuccess res = find_opt(opts, o_st); in next_opt()
223 if ( ((o_st->flags & OPTST_DEFINED) != 0) in next_opt()
224 && ((o_st->pOD->fOptState & OPTST_NO_COMMAND) != 0)) { in next_opt()
225 fprintf(stderr, zNotCmdOpt, o_st->pOD->pz_Name); in next_opt()
229 return get_opt_arg(opts, o_st); in next_opt()