Searched refs:fprintf (Results 1 - 25 of 2840) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/gcc/config/i386/
H A Di386-aout.h24 #define TARGET_VERSION fprintf (stderr, " (80386, BSD a.out syntax)");
H A Dmach.h3 #define TARGET_VERSION fprintf (stderr, " (80386, Mach)");
H A Dnetbsd64.h63 fprintf (FILE, "\tcall *__mcount@PLT\n"); \
65 fprintf (FILE, "\tcall *__mcount@PLT\n"); \
67 fprintf (FILE, "\tcall __mcount\n"); \
73 #define TARGET_VERSION fprintf (stderr, " (NetBSD/x86_64 ELF)");
/freebsd-11-stable/contrib/gcc/config/rs6000/
H A Dvxworksae.h23 #define TARGET_VERSION fprintf (stderr, " (PowerPC VxWorks AE)");
/freebsd-11-stable/tools/regression/security/proc_to_proc/
H A Dtestuid.c41 fprintf(stderr, "test capabilities: ");
43 fprintf(stderr, "[SETSUGID_SUPPORTED] ");
46 fprintf(stderr, "[SETSUGID_SUPPORTED_BUT_NO_LIBC_STUB] ");
49 fprintf(stderr, "[CHECK_CRED_SET] ");
51 fprintf(stderr, "\n");
56 fprintf(stderr,
/freebsd-11-stable/usr.sbin/mptutil/
H A Dmptutil.c51 fprintf(stderr, "usage: mptutil [-u unit] <command> ...\n\n");
52 fprintf(stderr, "Commands include:\n");
53 fprintf(stderr, " version\n");
54 fprintf(stderr, " show adapter - display controller information\n");
55 fprintf(stderr, " show config - display RAID configuration\n");
56 fprintf(stderr, " show drives - list physical drives\n");
57 fprintf(stderr, " show events - display event log\n");
58 fprintf(stderr, " show volumes - list logical volumes\n");
59 fprintf(stderr, " fail <drive> - fail a physical drive\n");
60 fprintf(stder
[all...]
/freebsd-11-stable/sbin/growfs/
H A Ddebug.c107 fprintf(dbg_log, "===== START HEXDUMP =====\n");
108 fprintf(dbg_log, "# %d@%lx: %s\n", indent, (unsigned long)mem, comment);
113 fprintf(dbg_log, "%02x ", *mem++);
114 fprintf(dbg_log, " ");
116 fprintf(dbg_log, "\n");
119 fprintf(dbg_log, "===== END HEXDUMP =====\n");
135 fprintf(dbg_log, "===== START SUPERBLOCK =====\n");
136 fprintf(dbg_log, "# %d@%lx: %s\n", indent, (unsigned long)sb, comment);
139 fprintf(dbg_log, "sblkno int32_t 0x%08x\n",
141 fprintf(dbg_lo
[all...]
/freebsd-11-stable/contrib/com_err/
H A Dcompile_et.c78 fprintf(c_file, "/* Generated from %s */\n", filename);
80 fprintf(c_file, "/* %s */\n", id_str);
81 fprintf(c_file, "\n");
82 fprintf(c_file, "#include <stddef.h>\n");
83 fprintf(c_file, "#include <com_err.h>\n");
84 fprintf(c_file, "#include \"%s\"\n", hfn);
85 fprintf(c_file, "\n");
86 fprintf(c_file, "#define N_(x) (x)\n");
87 fprintf(c_file, "\n");
89 fprintf(c_fil
[all...]
/freebsd-11-stable/crypto/heimdal/lib/com_err/
H A Dcompile_et.c78 fprintf(c_file, "/* Generated from %s */\n", filename);
80 fprintf(c_file, "/* %s */\n", id_str);
81 fprintf(c_file, "\n");
82 fprintf(c_file, "#include <stddef.h>\n");
83 fprintf(c_file, "#include <com_err.h>\n");
84 fprintf(c_file, "#include \"%s\"\n", hfn);
85 fprintf(c_file, "\n");
86 fprintf(c_file, "#define N_(x) (x)\n");
87 fprintf(c_file, "\n");
89 fprintf(c_fil
[all...]
/freebsd-11-stable/usr.sbin/bluetooth/ath3kfw/
H A Dath3k_dbg.h37 #define ath3k_debug(...) if (ath3k_do_debug) fprintf(stderr, __VA_ARGS__)
38 #define ath3k_err(...) fprintf(stderr, __VA_ARGS__)
39 #define ath3k_info(...) if (ath3k_do_info) fprintf(stdout, __VA_ARGS__)
/freebsd-11-stable/usr.sbin/mfiutil/
H A Dmfiutil.c56 fprintf(stderr, "usage: mfiutil [-de] [-u unit] <command> ...\n\n");
57 fprintf(stderr, "Commands include:\n");
58 fprintf(stderr, " version\n");
59 fprintf(stderr, " show adapter - display controller information\n");
60 fprintf(stderr, " show battery - display battery information\n");
61 fprintf(stderr, " show config - display RAID configuration\n");
62 fprintf(stderr, " show drives - list physical drives\n");
63 fprintf(stderr, " show events - display event log\n");
64 fprintf(stderr, " show firmware - list firmware images\n");
65 fprintf(stder
[all...]
/freebsd-11-stable/crypto/heimdal/include/
H A Dbits.c59 fprintf(f, "%s", tmp2); \
60 while(tabs-- > 0) fprintf(f, "\t"); \
61 fprintf(f, "/* %2d bits */\n", b); \
89 fprintf(f, "/* There is no %d bit type */\n", len);
102 fprintf(f, "/* There is no %d bit type */\n", len);
109 fprintf(f, "/* For compatibility with various type definitions */\n");
110 fprintf(f, "#ifndef __BIT_TYPES_DEFINED__\n");
111 fprintf(f, "#define __BIT_TYPES_DEFINED__\n");
112 fprintf(f, "\n");
144 fprintf(
[all...]
/freebsd-11-stable/crypto/heimdal/lib/asn1/
H A Dgen_glue.c45 fprintf (headerfile,
49 fprintf (codefile,
56 fprintf (codefile, "if(f.%s) r |= (1U << %d);\n",
59 fprintf (codefile, "return r;\n"
68 fprintf (headerfile,
72 fprintf (codefile,
81 fprintf (codefile, "\tflags.%s = (n >> %d) & 1;\n",
85 fprintf (codefile, "\treturn flags;\n"
99 fprintf (headerfile,
102 fprintf (headerfil
[all...]
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dwarnerr.c46 fprintf(stderr, "%s", progname);
48 fprintf(stderr, ": ");
53 fprintf(stderr, ": ");
56 fprintf(stderr, "%s", strerror(sverrno));
57 fprintf(stderr, "\n");
/freebsd-11-stable/contrib/telnet/telnet/
H A Dutilities.c119 fprintf(stderr, "Cannot open %s.\n", file);
137 fprintf(NetTrace, "%c 0x%x\t", direction, offset);
142 fprintf(NetTrace, "%c%.2x",
152 fprintf(NetTrace, "%.2x", (*pThis)&0xff);
159 fprintf(NetTrace, "\r\n");
161 fprintf(NetTrace, "\n");
180 fprintf(NetTrace, "%s IAC %s", direction, TELCMD(option));
182 fprintf(NetTrace, "%s IAC %d", direction, option);
188 fprintf(NetTrace, "%s %s ", direction, fmt);
190 fprintf(NetTrac
[all...]
/freebsd-11-stable/crypto/heimdal/appl/telnet/telnet/
H A Dutilities.c60 fprintf(stderr, "Error: attempt to turn off an option 0x%x.\n",
89 fprintf(stderr, "Cannot open %s.\n", file);
106 fprintf(NetTrace, "%c 0x%x\t", direction, offset);
111 fprintf(NetTrace, "%c%.2x",
121 fprintf(NetTrace, "%.2x", (*pThis)&0xff);
128 fprintf(NetTrace, "\r\n");
130 fprintf(NetTrace, "\n");
149 fprintf(NetTrace, "%s IAC %s", direction, TELCMD(option));
151 fprintf(NetTrace, "%s IAC %d", direction, option);
157 fprintf(NetTrac
[all...]
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/regex/
H A Ddebug.c60 fprintf(d, "%ld states, %zu categories", (long)g->nstates,
62 fprintf(d, ", first %ld last %ld", (long)g->firststate,
65 fprintf(d, ", USEBOL");
67 fprintf(d, ", USEEOL");
69 fprintf(d, ", BAD");
71 fprintf(d, ", nsub=%ld", (long)g->nsub);
73 fprintf(d, ", must(%ld) `%*s'", (long)g->mlen, (int)g->mlen,
76 fprintf(d, ", backrefs");
78 fprintf(d, ", nplus %ld", (long)g->nplus);
79 fprintf(
[all...]
/freebsd-11-stable/contrib/groff/src/libs/libgroff/
H A Dassert.cpp29 fprintf(stderr, "%s: ", program_name);
30 fprintf(stderr, "Failed assertion at line %d, file `%s'.\n",
/freebsd-11-stable/usr.bin/keylogout/
H A Dkeylogout.c54 fprintf(stderr,
56 fprintf(stderr,
63 fprintf(stderr, "Could not unset your secret key.\n");
64 fprintf(stderr, "Maybe the keyserver is down?\n");
/freebsd-11-stable/crypto/heimdal/lib/vers/
H A Dprint_version.c53 fprintf(stderr, "%s (%s)\n", progname, package_list);
54 fprintf(stderr, "Copyright 1995-2011 Kungliga Tekniska H��gskolan\n");
56 fprintf(stderr, "Send bug-reports to %s\n", PACKAGE_BUGREPORT);
/freebsd-11-stable/contrib/netbsd-tests/include/
H A Dt_bitstring.c54 (void) fprintf(file, "%3d %3d ", jc, js);
57 (void) fprintf(file, "%c", (bit_test(b, i) ? '1' : '0'));
60 (void) fprintf(file, "%c", '\n');
71 (void) fprintf(file, "Testing with TEST_LENGTH = %d\n\n", test_length);
73 (void) fprintf(file, "test _bit_byte, _bit_mask, and bitstr_size\n");
74 (void) fprintf(file, " i _bit_byte(i) _bit_mask(i) bitstr_size(i)\n");
77 (void) fprintf(file, "%3d%15u%15u%15zu\n",
83 (void) fprintf(file, "\ntest bit_alloc, clearbits, bit_ffc, bit_ffs\n");
84 (void) fprintf(file, "be: 0 -1 ");
86 (void) fprintf(fil
[all...]
/freebsd-11-stable/libexec/bootpd/
H A Ddumptab.c108 fprintf(fp, "\n# %s %s.%d\n", progname, VERSION, PATCHLEVEL);
109 fprintf(fp, "# %s: dump of bootp server database.\n", filename);
110 fprintf(fp, "# Dump taken %s", ctime(&t));
117 fprintf(fp, "\n");
140 fprintf(fp, "%s:", (hp->hostname ?
143 fprintf(fp, "\\\n\t:bf=%s:", hp->bootfile->string);
146 fprintf(fp, "\\\n\t:bs=");
148 fprintf(fp, "auto:");
150 fprintf(fp, "%lu:", (u_long)hp->bootsize);
154 fprintf(f
[all...]
/freebsd-11-stable/lib/libc/regex/grot/
H A Ddebug.c32 fprintf(d, "%ld states", (long)g->nstates);
33 fprintf(d, ", first %ld last %ld", (long)g->firststate,
36 fprintf(d, ", USEBOL");
38 fprintf(d, ", USEEOL");
40 fprintf(d, ", BAD");
42 fprintf(d, ", nsub=%ld", (long)g->nsub);
44 fprintf(d, ", must(%ld) `%*s'", (long)g->mlen, (int)g->mlen,
47 fprintf(d, ", backrefs");
49 fprintf(d, ", nplus %ld", (long)g->nplus);
50 fprintf(
[all...]
/freebsd-11-stable/contrib/byacc/
H A Derror.c10 fprintf(stderr, "%s: f - %s\n", myname, msg);
17 fprintf(stderr, "%s: f - out of space\n", myname);
24 fprintf(stderr, "%s: f - cannot open \"%s\"\n", myname, filename);
31 fprintf(stderr, "%s: e - line %d of \"%s\", missing '}'\n",
39 fprintf(stderr, "%s: e - line %d of \"%s\", unexpected end-of-file\n",
73 fprintf(stderr, "%s: e - line %d of \"%s\", syntax error\n",
82 fprintf(stderr, "%s: e - line %d of \"%s\", unmatched /*\n",
91 fprintf(stderr, "%s: e - line %d of \"%s\", unterminated string\n",
100 fprintf(stderr, "%s: e - line %d of \"%s\", unmatched %%{\n",
109 fprintf(stder
[all...]
/freebsd-11-stable/contrib/gperf/src/
H A Doptions.cc75 fprintf (stream,
82 fprintf (stream,
84 fprintf (stream, "\n");
85 fprintf (stream,
88 fprintf (stream, "\n");
89 fprintf (stream,
92 fprintf (stream, "\n");
93 fprintf (stream,
95 fprintf (stream,
97 fprintf (strea
[all...]

Completed in 225 milliseconds

1234567891011>>