Home | History | Annotate | Download | only in src

Lines Matching refs:cols

30 VTerm *vterm_new(int rows, int cols)
32 return vterm_new_with_allocator(rows, cols, &default_allocator, NULL);
35 VTerm *vterm_new_with_allocator(int rows, int cols, VTermAllocatorFunctions *funcs, void *allocdata)
44 vt->cols = cols;
88 *colsp = vt->cols;
91 void vterm_set_size(VTerm *vt, int rows, int cols)
94 vt->cols = cols;
97 (*vt->parser_callbacks->resize)(rows, cols, vt->cbdata);