Searched refs:omit_shellescapes (Results 1 – 4 of 4) sorted by relevance
/third_party/cups-filters/filter/foomatic-rip/ |
D | spooler.c | 66 strncpy_omit(cups_jobid, arglist_get(arglist, 0), 128, omit_shellescapes); in init_cups() 67 strncpy_omit(cups_user, arglist_get(arglist, 1), 128, omit_shellescapes); in init_cups() 69 omit_shellescapes); in init_cups() 70 strncpy_omit(cups_copies, arglist_get(arglist, 3), 128, omit_shellescapes); in init_cups() 75 omit_shellescapes); in init_cups() 86 strncpy_omit(cups_filename, arglist_get(arglist, 5), 256, omit_shellescapes); in init_cups() 206 strncpy_omit(tmp, (char*)i->data, 1024, omit_shellescapes); in init_direct()
|
D | foomaticrip.c | 894 strncpy_omit(job->title, str, 2048, omit_shellescapes); in main() 916 strncpy_omit(tmp, str, 1024, omit_shellescapes); in main() 930 strncpy_omit(job->printer, str, 256, omit_shellescapes); in main() 936 strncpy_omit(job->printer, str, 256, omit_shellescapes); in main()
|
D | util.h | 58 int omit_shellescapes(int c);
|
D | util.c | 139 int omit_shellescapes(int c) { return strchr(shellescapes, c) != NULL; } in omit_shellescapes() function 140 int omit_specialchars(int c) { return omit_unprintables(c) || omit_shellescapes(c); } in omit_specialchars()
|