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"
37 VTerm *vt;
114 struct VTerm
164 void *vterm_allocator_malloc(VTerm *vt, size_t size);
165 void vterm_allocator_free(VTerm *vt, void *ptr);
167 void vterm_push_output_bytes(VTerm *vt, const char *bytes, size_t len);
168 void vterm_push_output_vsprintf(VTerm *vt, const char *format, va_list args);
169 void vterm_push_output_sprintf(VTerm *vt, const char *format, ...);
170 void vterm_push_output_sprintf_ctrl(VTerm *vt, unsigned char ctrl, const char *fmt, ...);
171 void vterm_push_output_sprintf_dcs(VTerm *vt, const char *fmt, ...)
    [all...]
  /external/libvterm/include/
vterm.h 13 typedef struct VTerm VTerm;
115 VTerm *vterm_new(int rows, int cols);
116 VTerm *vterm_new_with_allocator(int rows, int cols, VTermAllocatorFunctions *funcs, void *allocdata);
117 void vterm_free(VTerm* vt);
119 void vterm_get_size(const VTerm *vt, int *rowsp, int *colsp);
120 void vterm_set_size(VTerm *vt, int rows, int cols);
122 void vterm_push_bytes(VTerm *vt, const char *bytes, size_t len);
124 void vterm_input_push_char(VTerm *vt, VTermModifier state, uint32_t c);
125 void vterm_input_push_key(VTerm *vt, VTermModifier state, VTermKey key)
    [all...]

Completed in 4602 milliseconds