Symbol: ScreenCell
src/apps/serialconnect/libvterm/src/screen.c
176
ScreenCell *cell = getcell(screen, pos.row, pos.col);
src/apps/serialconnect/libvterm/src/screen.c
243
cols * sizeof(ScreenCell));
src/apps/serialconnect/libvterm/src/screen.c
275
ScreenCell *cell = getcell(screen, row, col);
src/apps/serialconnect/libvterm/src/screen.c
592
ScreenCell *cell = getcell(screen, row, col);
src/apps/serialconnect/libvterm/src/screen.c
60
ScreenCell *buffers[2];
src/apps/serialconnect/libvterm/src/screen.c
63
ScreenCell *buffer;
src/apps/serialconnect/libvterm/src/screen.c
703
ScreenCell *cell = getcell(screen, row, col);
src/apps/serialconnect/libvterm/src/screen.c
71
static inline ScreenCell *getcell(const VTermScreen *screen, int row, int col)
src/apps/serialconnect/libvterm/src/screen.c
745
ScreenCell *intcell = getcell(screen, pos.row, pos.col);
src/apps/serialconnect/libvterm/src/screen.c
783
ScreenCell *intcell = getcell(screen, pos.row, pos.col);
src/apps/serialconnect/libvterm/src/screen.c
80
static ScreenCell *realloc_buffer(VTermScreen *screen, ScreenCell *buffer, int new_rows, int new_cols)
src/apps/serialconnect/libvterm/src/screen.c
816
ScreenCell *cell = getcell(screen, pos.row, pos.col);
src/apps/serialconnect/libvterm/src/screen.c
82
ScreenCell *new_buffer = vterm_allocator_malloc(screen->vt, sizeof(ScreenCell) * new_rows * new_cols);
src/apps/serialconnect/libvterm/src/screen.c
87
ScreenCell *new_cell = new_buffer + row*new_cols + col;
src/apps/serialconnect/libvterm/src/screen.c
876
static int attrs_differ(VTermAttrMask attrs, ScreenCell *a, ScreenCell *b)
src/apps/serialconnect/libvterm/src/screen.c
902
ScreenCell *target = getcell(screen, pos.row, pos.col);