HomeSort by relevance Sort by last modified time
    Searched defs:VTerm (Results 1 - 2 of 2) sorted by null

  /external/libvterm/src/
vterm_internal.h 4 #include "vterm.h"
43 VTerm *vt;
126 struct VTerm
176 void *vterm_allocator_malloc(VTerm *vt, size_t size);
177 void vterm_allocator_free(VTerm *vt, void *ptr);
179 void vterm_push_output_bytes(VTerm *vt, const char *bytes, size_t len);
180 void vterm_push_output_vsprintf(VTerm *vt, const char *format, va_list args);
181 void vterm_push_output_sprintf(VTerm *vt, const char *format, ...);
182 void vterm_push_output_sprintf_ctrl(VTerm *vt, unsigned char ctrl, const char *fmt, ...);
183 void vterm_push_output_sprintf_dcs(VTerm *vt, const char *fmt, ...)
    [all...]
  /external/libvterm/include/
vterm.h 13 typedef struct VTerm VTerm;
122 VTerm *vterm_new(int rows, int cols);
123 VTerm *vterm_new_with_allocator(int rows, int cols, VTermAllocatorFunctions *funcs, void *allocdata);
124 void vterm_free(VTerm* vt);
126 void vterm_get_size(const VTerm *vt, int *rowsp, int *colsp);
127 void vterm_set_size(VTerm *vt, int rows, int cols);
129 void vterm_push_bytes(VTerm *vt, const char *bytes, size_t len);
131 void vterm_input_push_char(VTerm *vt, VTermModifier state, uint32_t c);
132 void vterm_input_push_key(VTerm *vt, VTermModifier state, VTermKey key)
    [all...]

Completed in 52 milliseconds