Lines Matching defs:eq

64 static int eq(const char *string);
83 if (eq("erase") && --argc)
85 else if (eq("intr") && --argc)
87 else if (eq("quit") && --argc)
89 else if (eq("eof") && --argc)
91 else if (eq("min") && --argc) {
96 } else if (eq("eol") && --argc)
98 else if (eq("eol2") && --argc)
100 else if (eq("time") && --argc) {
105 } else if (eq("kill") && --argc)
107 else if (eq("swtch") && --argc)
112 if (eq("start") && --argc)
114 else if (eq("stop") && --argc)
116 else if (eq("susp") && --argc)
118 else if (eq("dsusp") && --argc)
120 else if (eq("rprnt") && --argc)
122 else if (eq("reprint") && --argc)
124 else if (eq("discard") && --argc)
126 else if (eq("flush") && --argc)
128 else if (eq("werase") && --argc)
130 else if (eq("lnext") && --argc)
132 else if (eq("status") && --argc)
137 if (eq("ek")) {
140 } else if (eq("line") &&
144 } else if (eq("raw")) {
147 } else if (eq("-raw") | eq("cooked")) {
150 } else if (eq("sane")) {
160 } else if (eq("defeucw")) {
180 } else if ((term & TERMIOS) && eq("ospeed") && --argc) {
183 if (eq(speeds[i].string)) {
193 } else if ((term & TERMIOS) && eq("ispeed") && --argc) {
196 if (eq(speeds[i].string)) {
208 if (eq(speeds[i].string)) {
218 if (!(term & ASYNC) && eq("ctab") && --argc) {
224 if (eq(imodes[i].string)) {
229 (eq("-raw") || eq("cooked") || eq("sane")))
235 if (eq(nimodes[i].string)) {
242 if (eq(omodes[i].string)) {
246 if (!(term & ASYNC) && eq("sane")) {
251 if (eq(cmodes[i].string)) {
256 (eq("-raw") || eq("cooked") ||
257 eq("sane"))) {
265 if (eq(ncmodes[i].string)) {
270 if (eq(lmodes[i].string)) {
276 if (eq(nlmodes[i].string)) {
282 if (eq(hmodes[i].string)) {
287 if (eq(clkmodes[i].string)) {
294 if (eq("rows") && --argc)
296 else if ((eq("columns") || eq("cols")) && --argc)
298 else if (eq("xpixels") && --argc)
300 else if (eq("ypixels") && --argc)
317 eq(const char *string)