Home | History | Annotate | Download | only in sh

Lines Matching defs:df

1105 	struct debug_flag *df;
1127 for (df = debug_flags; df->label != '\0'; df++) {
1128 if (f == '+' || df->label == f) {
1130 DFlags |= DBG_ALWAYS | df->flag;
1133 (df->flag << DBG_VBOSE_SHIFT);
1135 DFlags &= ~(df->flag<<DBG_VBOSE_SHIFT);
1137 DFlags &= ~df->flag;
1149 struct debug_flag *df;
1152 for (df = debug_flags; df->label != '\0'; df++) {
1153 if (df->flag & (df->flag - 1))
1155 if (is_alpha(df->label) &&
1156 (df->flag << DBG_VBOSE_SHIFT) & DFlags)
1157 out1c(df->label - ('a' - 'A'));
1158 else if (df->flag & DFlags)
1159 out1c(df->label);