Lines Matching full:view
100 struct raw3270_view *view; /* view of this request */ member
129 * Functions of a 3270 view.
142 * View structure chaining. The raw3270_view structure is meant to
143 * be embedded at the start of the real view data structure, e.g.:
145 * struct raw3270_view view;
158 unsigned int rows, cols; /* # of rows & colums of the view */
163 int raw3270_view_lock_unavailable(struct raw3270_view *view);
175 /* Reference count inliner for view structures. */
177 raw3270_get_view(struct raw3270_view *view) in raw3270_get_view() argument
179 atomic_inc(&view->ref_count); in raw3270_get_view()
185 raw3270_put_view(struct raw3270_view *view) in raw3270_put_view() argument
187 if (atomic_dec_return(&view->ref_count) == 0) in raw3270_put_view()