Lines Matching refs:WINDOW
18 int delwin ( WINDOW *win ) { in delwin()
49 WINDOW *derwin ( WINDOW *parent, int nlines, int ncols, in derwin()
51 WINDOW *child; in derwin()
54 if ( ( child = malloc( sizeof( WINDOW ) ) ) == NULL ) in derwin()
74 WINDOW *dupwin ( WINDOW *orig ) { in dupwin()
75 WINDOW *copy; in dupwin()
78 if ( ( copy = malloc( sizeof( WINDOW ) ) ) == NULL ) in dupwin()
99 int mvwin ( WINDOW *win, int y, int x ) { in mvwin()
121 WINDOW *newwin ( int nlines, int ncols, int begin_y, int begin_x ) { in newwin()
122 WINDOW *win; in newwin()
123 if ( ( win = malloc( sizeof(WINDOW) ) ) == NULL ) in newwin()
147 WINDOW *subwin ( WINDOW *parent, int nlines, int ncols, in subwin()
149 WINDOW *child; in subwin()
152 if ( ( child = malloc( sizeof( WINDOW ) ) ) == NULL ) in subwin()