Home
last modified time | relevance | path

Searched refs:LessPipeline (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/bsd/less/dist/lesstest/
H A Dlesstest.h24 typedef struct LessPipeline { struct
35 } LessPipeline; argument
69 LessPipeline* create_less_pipeline(char* const* argv, int argc, char* const* envp);
70 void destroy_less_pipeline(LessPipeline* pipeline);
H A Drun.c45 static void send_char(LessPipeline* pipeline, wchar ch) { in send_char()
54 static int read_screen(LessPipeline* pipeline, byte* buf, int buflen) { in read_screen()
70 static void read_and_display_screen(LessPipeline* pipeline) { in read_and_display_screen()
80 static int curr_screen_match(LessPipeline* pipeline, const byte* img, int imglen) { in curr_screen_match()
102 LessPipeline* pipeline = create_less_pipeline(argv, argc, envp); in run_interactive()
142 LessPipeline* pipeline = create_less_pipeline(setup->argv, setup->argc, in run_test()
H A Dpipeline.c85 static LessPipeline* new_pipeline(void) { in new_pipeline()
86 LessPipeline* pipeline = malloc(sizeof(LessPipeline)); in new_pipeline()
98 LessPipeline* create_less_pipeline(char* const* argv, int argc, char* const* envp) { in create_less_pipeline()
101 LessPipeline* pipeline = new_pipeline(); in create_less_pipeline()
158 void destroy_less_pipeline(LessPipeline* pipeline) { in destroy_less_pipeline()