Lines Matching refs:argInfo

71 	if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_INCLUDE_TABLE) {
79 } else if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_CALLBACK &&
80 (opt->argInfo & POPT_CBFLAG_PRE))
99 if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_INCLUDE_TABLE) {
107 } else if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_CALLBACK &&
108 (opt->argInfo & POPT_CBFLAG_POST))
131 if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_INCLUDE_TABLE) {
140 } else if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_CALLBACK &&
141 !(opt->argInfo & POPT_CBFLAG_SKIPOPTION)) {
164 if (!(cbopt->argInfo & POPT_CBFLAG_CONTINUE))
487 if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_INCLUDE_TABLE) {
507 } else if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_CALLBACK) {
510 (!singleDash || (opt->argInfo & POPT_ARGFLAG_ONEDASH)) &&
531 if (!(cb->argInfo & POPT_CBFLAG_INC_DATA)) {
648 int poptSaveLong(long * arg, int argInfo, long aLong)
654 if (argInfo & POPT_ARGFLAG_NOT)
656 switch (argInfo & POPT_ARGFLAG_LOGICALOPS) {
676 int poptSaveInt(/*@null@*/ int * arg, int argInfo, long aLong)
682 if (argInfo & POPT_ARGFLAG_NOT)
684 switch (argInfo & POPT_ARGFLAG_LOGICALOPS) {
811 opt->argInfo & POPT_ARGFLAG_STRIP)
851 if (opt->arg && (opt->argInfo & POPT_ARG_MASK) == POPT_ARG_NONE) {
852 if (poptSaveInt((int *)opt->arg, opt->argInfo, 1L))
854 } else if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_VAL) {
856 if (poptSaveInt((int *)opt->arg, opt->argInfo, (long)opt->val))
859 } else if ((opt->argInfo & POPT_ARG_MASK) != POPT_ARG_NONE) {
876 if (!(opt->argInfo & POPT_ARGFLAG_OPTIONAL))
888 (opt->argInfo & POPT_ARGFLAG_STRIP) &&
904 switch (opt->argInfo & POPT_ARG_MASK) {
922 if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_LONG) {
925 if (poptSaveLong((long *)opt->arg, opt->argInfo, aLong))
930 if (poptSaveInt((int *)opt->arg, opt->argInfo, aLong))
953 if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_DOUBLE) {
967 (opt->argInfo & POPT_ARG_MASK));
978 } else if (opt->val && ((opt->argInfo & POPT_ARG_MASK) != POPT_ARG_VAL))
992 ((opt->argInfo & POPT_ARGFLAG_ONEDASH) ? "-" : "--"),
1001 if (opt->arg && (opt->argInfo & POPT_ARG_MASK) == POPT_ARG_NONE)
1003 else if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_VAL)
1005 else if ((opt->argInfo & POPT_ARG_MASK) != POPT_ARG_NONE) {
1113 item->option.argInfo = POPT_ARGFLAG_DOC_HIDDEN;
1153 item->option.argInfo = newItem->option.argInfo;