Lines Matching defs:input
103 char *prompt; /* Output string for input area. */
104 char *input; /* Input string for read request. */
108 unsigned char inattr; /* Visible/invisible input. */
130 #define TTY_UPDATE_INPUT 0x1 /* Update input line. */
206 static void tty3270_update_prompt(struct tty3270 *tp, char *input)
208 strcpy(tp->prompt, input);
214 * The input line are the two last lines of the screen.
235 /* Clear to end of input line. */
555 * Write input line.
585 static void tty3270_rcl_add(struct tty3270 *tp, char *input, int len)
593 memcpy(p, input, len);
668 * Pass input line to tty.
675 char *input;
680 * Two AID keys are special: For 0x7d (enter) the input line
684 input = NULL;
686 switch (tp->input[0]) {
688 /* Enter: write input to tty. */
689 input = tp->input + 6;
692 tty3270_rcl_add(tp, input, len);
695 /* Clear input area. */
709 raw3270_read_modified_cb(tp->readpartreq, tp->input);
720 kbd_keycode(tp->kbd, *input++);
722 kbd_keycode(tp->kbd, 256 + tp->input[0]);
737 /* Schedule tasklet to pass input to tty. */
756 raw3270_request_set_data(rrq, tp->input, tty3270_input_size(tp->view.cols));
1007 old_input = tp->input;
1010 tp->input = new_input;
1065 kfree(tp->input);
1127 tp->input = kzalloc(tty3270_input_size(tp->view.cols), GFP_KERNEL | GFP_DMA);
1128 if (!tp->input) {
1163 kfree(tp->input);
1854 * Check for visible/invisible input switches