Lines Matching refs:stdscr
123 getmaxyx(stdscr, maxy, maxx); in setup_windows()
126 title_bar_window = subwin(stdscr, TITLE_BAR_HIGHT, maxx, 0, 0); in setup_windows()
129 tz_sensor_window = subwin(stdscr, SENSOR_WIN_HIGHT, maxx, y_begin, 0); in setup_windows()
132 cooling_device_window = subwin(stdscr, ptdata.nr_cooling_dev + 3, maxx, in setup_windows()
140 dialogue_window = subwin(stdscr, diag_dev_rows() + 5, maxx-50, in setup_windows()
143 thermal_data_window = subwin(stdscr, ptdata.nr_tz_sensor * in setup_windows()
146 control_window = subwin(stdscr, 4, maxx, y_begin, 0); in setup_windows()
150 status_bar_window = subwin(stdscr, 1, maxx, maxy-1, 0); in setup_windows()
178 werase(stdscr); in setup_windows()
189 getmaxyx(stdscr, maxy, maxx); /* get the new screen size */ in resize_handler()
358 keypad(stdscr, TRUE); /* enable keyboard mapping */ in initialize_curses()