Searched refs:dstr_t (Results 1 – 11 of 11) sorted by relevance
/third_party/cups-filters/filter/foomatic-rip/ |
D | util.h | 148 } dstr_t; typedef 150 dstr_t * create_dstr(); 151 void free_dstr(dstr_t *ds); 152 void dstrclear(dstr_t *ds); 153 void dstrassure(dstr_t *ds, size_t alloc); 154 void dstrcpy(dstr_t *ds, const char *src); 155 void dstrncpy(dstr_t *ds, const char *src, size_t n); 156 void dstrncat(dstr_t *ds, const char *src, size_t n); 157 void dstrcpyf(dstr_t *ds, const char *src, ...); 158 void dstrcat(dstr_t *ds, const char *src); [all …]
|
D | util.c | 568 dstr_t * create_dstr() in create_dstr() 570 dstr_t *ds = malloc(sizeof(dstr_t)); in create_dstr() 578 void free_dstr(dstr_t *ds) in free_dstr() 584 void dstrclear(dstr_t *ds) in dstrclear() 590 void dstrassure(dstr_t *ds, size_t alloc) in dstrassure() 598 void dstrcpy(dstr_t *ds, const char *src) in dstrcpy() 621 void dstrncpy(dstr_t *ds, const char *src, size_t n) in dstrncpy() 635 void dstrncat(dstr_t *ds, const char *src, size_t n) in dstrncat() 651 void dstrcpyf(dstr_t *ds, const char *src, ...) in dstrcpyf() 674 void dstrputc(dstr_t *ds, int c) in dstrputc() [all …]
|
D | options.h | 158 int option_get_command(dstr_t *cmd, option_t *opt, int optset, int section); 172 void append_prolog_section(dstr_t *str, int optset, int comments); 173 void append_setup_section(dstr_t *str, int optset, int comments); 174 void append_page_setup_section(dstr_t *str, int optset, int comments); 175 int build_commandline(int optset, dstr_t *cmdline, int pdfcmdline);
|
D | postscript.c | 35 void get_renderer_handle(const dstr_t *prepend, FILE **fd, pid_t *pid); 148 int stream_next_line(dstr_t *line, stream_t *s) in stream_next_line() 319 dstr_t *line = create_dstr(); in _print_ps() 321 dstr_t *onelinebefore = create_dstr(); in _print_ps() 322 dstr_t *twolinesbefore = create_dstr(); in _print_ps() 325 dstr_t *psheader = create_dstr(); in _print_ps() 329 dstr_t *psfifo = create_dstr(); in _print_ps() 342 …dstr_t *linesafterlastbeginfeature = create_dstr(); /* All codelines after the last "%%BeginFeatur… in _print_ps() 348 dstr_t *pdest; in _print_ps() 357 dstr_t *tmp = create_dstr(); in _print_ps() [all …]
|
D | spooler.h | 31 void init_cups(list_t *arglist, dstr_t *filelist, jobparams_t *job); 32 void init_direct(list_t *arglist, dstr_t *filelist, jobparams_t *job);
|
D | options.c | 46 extern dstr_t *postpipe; /* command into which the output of this 72 dstr_t *prologprepend; 73 dstr_t *setupprepend; 74 dstr_t *pagesetupprepend; 689 dstr_t *res = create_dstr(); in paramvalues_to_string() 813 void build_foomatic_custom_command(dstr_t *cmd, option_t *opt, const char *values) in build_foomatic_custom_command() 847 void build_cups_custom_ps_command(dstr_t *cmd, option_t *opt, const char *values) in build_cups_custom_ps_command() 860 void build_cups_custom_jcl_command(dstr_t *cmd, option_t *opt, const char *values) in build_cups_custom_jcl_command() 875 int composite_get_command(dstr_t *cmd, option_t *opt, int optionset, int section) in composite_get_command() 880 dstr_t *depcmd; in composite_get_command() [all …]
|
D | pdf.c | 155 static int render_pages_with_generic_command(dstr_t *cmd, in render_pages_with_generic_command() 184 static int render_pages_with_ghostscript(dstr_t *cmd, in render_pages_with_ghostscript() 222 dstr_t *cmd = create_dstr(); in render_pages()
|
D | renderer.c | 69 void massage_gs_commandline(dstr_t *cmd) in massage_gs_commandline() 73 dstr_t *gscmd, *cmdcopy; in massage_gs_commandline() 409 dstr_t *commandline; in exec_kid3()
|
D | spooler.c | 41 void init_cups(list_t *arglist, dstr_t *filelist, jobparams_t *job) in init_cups() 195 void init_direct(list_t *arglist, dstr_t *filelist, jobparams_t *job) in init_direct()
|
D | renderer.h | 27 void massage_gs_commandline(dstr_t *cmd);
|
D | foomaticrip.c | 108 dstr_t *postpipe = NULL; /* command into which the output of this filter should be piped */ 153 dstr_t *jclappend; 791 dstr_t *filelist; in main()
|