| /src/usr.sbin/lpr/common_source/ |
| common_vars.c | 46 char *printer; /* printer name */ variable
|
| /src/external/gpl2/groff/dist/src/libs/libdriver/ |
| printer.cpp | 1 /* $NetBSD: printer.cpp,v 1.1.1.1 2016/01/13 18:41:48 christos Exp $ */ 5 // <groff_src_dir>/src/libs/libdriver/printer.cpp 87 printer::printer() function in class:printer 92 printer::~printer() 105 void printer::load_font(int n, const char *nm) 136 font *printer::find_font(const char *nm) 148 font *printer::make_font(const char *nm) 153 void printer::end_of_line( [all...] |
| /src/external/bsd/tcpdump/dist/ |
| print-ppi.c | 10 /* \summary: Per-Packet Information (DLT_PPI) printer */ 64 * This is the top level routine of the printer. 'p' points 73 if_printer printer; local 117 printer = lookup_printer(dlt); 118 if (printer != NULL) { 122 printer(ndo, &nhdr, p);
|
| print.c | 48 struct printer { struct 53 static const struct printer printers[] = { 279 const struct printer *p; 298 * If we don't have a printer for DLT_USER2, and type is 299 * DLT_USER2, we look up the printer for DLT_PKTAP and use 322 if_printer printer; local 324 printer = lookup_printer(type); 325 if (printer == NULL) 326 printer = unsupported_if_print; 327 return printer; [all...] |
| print-pktap.c | 27 /* \summary: Apple's DLT_PKTAP printer */ 97 * This is the top level routine of the printer. 'p' points 109 if_printer printer; local 156 printer = lookup_printer(dlt); 157 if (printer != NULL) { 161 printer(ndo, &nhdr, p);
|
| print-cdp.c | 32 /* \summary: Cisco Discovery Protocol (CDP) printer */ 190 void (*printer)(netdissect_options *ndo, const u_char *, u_int); member in struct:cdp_tlvinfo 303 if (info->printer) 304 info->printer(ndo, tptr, len); 308 * When the type is defined without a printer,
|
| /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/ |
| console_reporter.cc | 119 PrinterFn* printer = (output_options_ & OO_Color) ? local 123 printer(Out, name_color, "%-*s ", name_field_width_, 127 printer(Out, COLOR_RED, "ERROR OCCURRED: \'%s\'", 129 printer(Out, COLOR_DEFAULT, "\n"); 141 printer(Out, COLOR_YELLOW, "%10.2f %-4s %10.2f %-4s ", real_time, big_o.c_str(), 144 printer(Out, COLOR_YELLOW, "%10.0f %-4s %10.0f %-4s ", real_time * 100, "%", 148 printer(Out, COLOR_YELLOW, "%s %-4s %s %-4s ", real_time_str.c_str(), timeLabel, 153 printer(Out, COLOR_CYAN, "%10lld", result.iterations); 162 printer(Out, COLOR_DEFAULT, " %*s/s", cNameLen - 2, s.c_str()); 164 printer(Out, COLOR_DEFAULT, " %*s", cNameLen, s.c_str()) [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/benchmark/src/ |
| console_reporter.cc | 104 PrinterFn* printer = (output_options_ & OO_Color) ? local 108 printer(Out, name_color, "%-*s ", name_field_width_, 112 printer(Out, COLOR_RED, "ERROR OCCURRED: \'%s\'", 114 printer(Out, COLOR_DEFAULT, "\n"); 135 printer(Out, COLOR_YELLOW, "%10.2f %s %10.2f %s ", real_time, big_o.c_str(), 138 printer(Out, COLOR_YELLOW, "%10.0f %% %10.0f %% ", real_time * 100, 142 printer(Out, COLOR_YELLOW, "%10.0f %s %10.0f %s ", real_time, timeLabel, 147 printer(Out, COLOR_CYAN, "%10lld", result.iterations); 156 printer(Out, COLOR_DEFAULT, " %*s/s", cNameLen - 2, s.c_str()); 158 printer(Out, COLOR_DEFAULT, " %*s", cNameLen, s.c_str()) [all...] |
| /src/external/gpl2/groff/dist/src/include/ |
| printer.h | 1 /* $NetBSD: printer.h,v 1.1.1.1 2016/01/13 18:41:48 christos Exp $ */ 5 // <groff_src_dir>/src/include/printer.h 34 The class `printer' performs the postprocessing. Each 35 postprocessor only needs to implement a derived class of `printer' and 37 Then the methods of class `printer' are called automatically by 63 class printer { class 65 printer(); 66 virtual ~printer(); 109 printer *make_printer();
|
| /src/usr.sbin/rpc.pcnfsd/ |
| pcnfsd_test.c | 26 char *printer; local 32 fprintf(stderr, "usage: %s server host printer user password [transport]\n", 39 printer = argv[3]; 64 test_v2_init(host_name, printer); 66 test_v2_start(host_name, printer, user_name, "foo", "foo"); 68 test_v2_start(host_name, printer, user_name, "bar", "bar"); 70 test_v2_start(host_name, printer, user_name, "bletch", "gack"); 72 test_v2_queue(printer, user_name, FALSE); 75 test_v2_cancel(host_name, printer, "nosuchuser", last_id); 77 test_v2_cancel(host_name, printer, user_name, last_id) [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/ |
| ThreadSafetyTraverse.h | 403 // Pretty printer for TIL expressions 421 Self printer; local 422 printer.printSExpr(E, SS, Prec_MAX);
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| diagnostic.h | 168 pretty_printer *printer; member in struct:diagnostic_context 418 #define diagnostic_format_decoder(DC) ((DC)->printer->format_decoder) 421 #define diagnostic_prefixing_rule(DC) ((DC)->printer->wrapping.rule) 434 #define diagnostic_ready_p() (global_dc->printer != NULL)
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| CommandLine.h | 81 /// SetVersionPrinter - Override the default (LLVM specific) version printer 88 /// AddExtraVersionPrinter - Add an extra printer to use in addition to the 1248 OptionDiffPrinter<typename ParserClass::parser_data_type, ValDT> printer; local 1249 printer.print(O, static_cast<const ParserClass &>(P), V, Default,
|
| /src/external/gpl3/binutils/dist/opcodes/ |
| metag-dis.c | 3306 /* Printer table. */ 3381 insn_printer printer = insn_printers[encoding]; local 3383 if (printer) 3384 printer (insn_word, pc, template, outf);
|
| /src/external/gpl3/binutils.old/dist/opcodes/ |
| metag-dis.c | 3306 /* Printer table. */ 3381 insn_printer printer = insn_printers[encoding]; local 3383 if (printer) 3384 printer (insn_word, pc, template, outf);
|