Lines Matching refs:od
44 * arg: + tOptDesc * + od + the descriptor for this arg +
50 optionUnstackArg(tOptions * opts, tOptDesc * od)
54 if (INQUERY_CALL(opts, od))
57 arg_list = (tArgList *)od->optCookie;
64 od->fOptState &= OPTST_PERSISTENT_MASK;
65 if ((od->fOptState & OPTST_INITENABLED) == 0)
66 od->fOptState |= OPTST_DISABLED;
75 if (regcomp(&re, od->optArg.argString, REG_NOSUB) != 0)
139 if (strcmp(pzSrc, od->optArg.argString) == 0) {
167 od->fOptState &= OPTST_PERSISTENT_MASK;
168 if ((od->fOptState & OPTST_INITENABLED) == 0)
169 od->fOptState |= OPTST_DISABLED;
171 od->optCookie = NULL;
230 * arg: + tOptDesc * + od + the descriptor for this arg +
236 optionStackArg(tOptions * opts, tOptDesc * od)
240 if (INQUERY_CALL(opts, od))
243 if ((od->fOptState & OPTST_RESET) != 0) {
244 tArgList * arg_list = od->optCookie;
255 if (od->optArg.argString == NULL)
258 AGDUPSTR(pz, od->optArg.argString, "stack arg");
259 addArgListEntry(&(od->optCookie), VOIDP(pz));