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

  /external/libvterm/include/
vterm.h 14 typedef struct VTerm VTerm;
281 VTerm *vterm_new(int rows, int cols);
282 VTerm *vterm_new_with_allocator(int rows, int cols, VTermAllocatorFunctions *funcs, void *allocdata);
283 void vterm_free(VTerm* vt);
285 void vterm_get_size(const VTerm *vt, int *rowsp, int *colsp);
286 void vterm_set_size(VTerm *vt, int rows, int cols);
288 int vterm_get_utf8(const VTerm *vt);
289 void vterm_set_utf8(VTerm *vt, int is_utf8);
291 size_t vterm_input_write(VTerm *vt, const char *bytes, size_t len)
    [all...]
  /external/libvterm/src/
vterm_internal.h 4 #include "vterm.h"
51 VTerm *vt;
148 struct VTerm
213 void *vterm_allocator_malloc(VTerm *vt, size_t size);
214 void vterm_allocator_free(VTerm *vt, void *ptr);
216 void vterm_push_output_bytes(VTerm *vt, const char *bytes, size_t len);
217 void vterm_push_output_vsprintf(VTerm *vt, const char *format, va_list args);
218 void vterm_push_output_sprintf(VTerm *vt, const char *format, ...);
219 void vterm_push_output_sprintf_ctrl(VTerm *vt, unsigned char ctrl, const char *fmt, ...);
220 void vterm_push_output_sprintf_dcs(VTerm *vt, const char *fmt, ...)
    [all...]

Completed in 51 milliseconds