dist/pf/sbin/pflogd/pflogd.c
164
logmsg(int pri, const char *message, ...)
dist/pf/sbin/pflogd/pflogd.c
167
va_start(ap, message);
dist/pf/sbin/pflogd/pflogd.c
170
vfprintf(stderr, message, ap);
dist/pf/sbin/pflogd/pflogd.c
173
vsyslog(pri, message, ap);
dist/pf/sbin/pflogd/pflogd.h
39
void logmsg(int priority, const char *message, ...) __printflike(2, 3);
dist/pf/usr.sbin/ftp-proxy/ftp-proxy.c
577
logmsg(int pri, const char *message, ...)
dist/pf/usr.sbin/ftp-proxy/ftp-proxy.c
584
va_start(ap, message);
dist/pf/usr.sbin/ftp-proxy/ftp-proxy.c
588
vsyslog(pri, message, ap);
dist/pf/usr.sbin/ftp-proxy/ftp-proxy.c
594
vsnprintf(buf, sizeof buf, message, ap);
distrib/utils/more/ch.c
397
char message[80];
distrib/utils/more/ch.c
406
(void)snprintf(message, sizeof(message),
distrib/utils/more/ch.c
408
error(message);
distrib/utils/more/main.c
117
else if ((m = bad_file(filename, message, sizeof(message))) != NULL) {
distrib/utils/more/main.c
123
(void)snprintf(message, sizeof(message), "%s: %s", filename,
distrib/utils/more/main.c
125
error(message);
distrib/utils/more/main.c
89
char message[100], *p;
distrib/utils/more/os.c
257
bad_file(filename, message, len)
distrib/utils/more/os.c
258
char *filename, *message;
distrib/utils/more/os.c
264
(void)snprintf(message, len, "%s: %s", filename,
distrib/utils/more/os.c
266
return(message);
distrib/utils/more/os.c
271
strtcpy(message, filename, (int)(len-sizeof(is_dir)-1));
distrib/utils/more/os.c
272
(void)strlcat(message, is_dir, len);
distrib/utils/more/os.c
273
return(message);
distrib/utils/more/prim.c
388
char message[40];
distrib/utils/more/prim.c
389
(void)sprintf(message, "File has only %d lines",
distrib/utils/more/prim.c
391
error(message);
games/adventure/hdr.h
140
axe, mirror, dragon, chasm, troll, troll2, bear, message,
games/adventure/init.c
112
axe, mirror, dragon, chasm, troll, troll2, bear, message,
games/adventure/init.c
217
message = vocab(DECR('m', 'e', 's', 's', 'a'), 1, 0);
games/adventure/main.c
431
if (here(message))
games/adventure/main.c
432
obj = obj * 100 + message;
games/adventure/main.c
680
if (obj == message)
games/adventure/subr.c
238
if (place[message] == 0)
games/adventure/subr.c
240
move(message, chloc2);
games/adventure/subr.c
255
move(message, chloc2);
games/backgammon/backgammon/backlocal.h
35
extern const char *const message[];
games/backgammon/backgammon/main.c
135
wrtext(message); /* print message */
games/backgammon/backgammon/main.c
143
wrtext(message); /* update message without pausing */
games/backgammon/backgammon/main.c
54
extern const char *const message[]; /* update message */
games/backgammon/backgammon/version.c
43
const char *const message[] = {
games/banner/banner.c
1023
static char message[MAXMSG];
games/banner/banner.c
1070
const size_t msize = sizeof(message);
games/banner/banner.c
1072
if (strlcpy(message, *argv, msize) >= msize)
games/banner/banner.c
1075
if (strlcat(message, " ", msize) >= msize)
games/banner/banner.c
1077
if (strlcat(message, *argv, msize) >= msize)
games/banner/banner.c
1080
nchars = strlen(message);
games/banner/banner.c
1084
(void)fgets(message, sizeof(message), stdin);
games/banner/banner.c
1085
nchars = strlen(message);
games/banner/banner.c
1086
message[nchars--] = '\0'; /* get rid of newline */
games/banner/banner.c
1115
if ((u_char) message[i] >= NCHARS ||
games/banner/banner.c
1116
asc_ptr[(u_char) message[i]] == 0) {
games/banner/banner.c
1118
message[i]);
games/banner/banner.c
1125
printf("Message '%s' is OK\n",message);
games/banner/banner.c
1130
printf("Char #%d: %c\n", i, message[i]);
games/banner/banner.c
1132
pc = asc_ptr[(u_char) message[i]];
games/hunt/huntd/driver.c
552
message(gotcha, "He has boots on!");
games/hunt/huntd/driver.c
740
message(np, Buf);
games/hunt/huntd/driver.c
743
message(np, Buf);
games/hunt/huntd/driver.c
786
message(np, "Volcano eruption.");
games/hunt/huntd/execute.c
275
message(newp, "Oooh, there's a short guy waving at you!");
games/hunt/huntd/execute.c
276
message(pp, "You couldn't quite reach him!");
games/hunt/huntd/execute.c
296
message(pp, "Wow! A pair of boots!");
games/hunt/huntd/execute.c
298
message(pp, "You can hobble around on one boot.");
games/hunt/huntd/execute.c
346
message(pp, "What you do?");
games/hunt/huntd/execute.c
351
message(pp, "Not enough charges.");
games/hunt/huntd/execute.c
393
message(pp, "What you do?");
games/hunt/huntd/execute.c
398
message(pp, "Not enough charges.");
games/hunt/huntd/execute.c
478
message(owner, "Out of memory");
games/hunt/huntd/execute.c
505
message(pp, "No more charges");
games/hunt/huntd/execute.c
510
message(pp, "Boots are too noisy to cloak!");
games/hunt/huntd/execute.c
534
message(pp, "No more charges");
games/hunt/huntd/hunt.h
172
void message(PLAYER *, const char *);
games/hunt/huntd/shots.c
1018
message(bp->b_owner, "Shot intercepted");
games/hunt/huntd/shots.c
291
message(pp, "Zing!");
games/hunt/huntd/shots.c
307
message(bp->b_owner,
games/hunt/huntd/shots.c
315
message(pp, "Absorbed charge (good shield!)");
games/hunt/huntd/shots.c
338
message(pp, "Zing!");
games/hunt/huntd/shots.c
341
message(bp->b_owner, bp->b_score &&
games/hunt/huntd/shots.c
498
message(pp, "**** Absorbed drone ****");
games/hunt/huntd/shots.c
825
message(pp, "You've been slimed.");
games/rogue/message.c
120
message(buf, intrpt);
games/rogue/message.c
132
message(msgs[((imsg - c) % NMESSAGES)], 0);
games/rogue/message.c
160
message(prompt, 0);
games/rogue/message.c
202
message(if_cancelled, 0);
games/sail/assorted.c
155
message = "firing round";
games/sail/assorted.c
158
message = "firing grape";
games/sail/assorted.c
161
message = "firing chain";
games/sail/assorted.c
164
message = "firing double";
games/sail/assorted.c
167
message = "exploding";
games/sail/assorted.c
173
makesignal(from, "%s shot on $$", on, message);
games/sail/assorted.c
177
message = "fore topsail sheets parted";
games/sail/assorted.c
180
message = "mizzen shrouds parted";
games/sail/assorted.c
183
message = "main topsail yard shot away";
games/sail/assorted.c
186
message = "fore topmast and foremast shrouds shot away";
games/sail/assorted.c
189
message = "mizzen mast and yard shot through";
games/sail/assorted.c
192
message = "foremast and spritsail yard shattered";
games/sail/assorted.c
195
message = "main topmast and mizzen mast shattered";
games/sail/assorted.c
200
makemsg(on, "%s", message);
games/sail/assorted.c
204
message = "anchor cables severed";
games/sail/assorted.c
207
message = "two anchor stocks shot away";
games/sail/assorted.c
210
message = "quarterdeck bulwarks damaged";
games/sail/assorted.c
213
message = "three gun ports shot away";
games/sail/assorted.c
216
message = "four guns dismounted";
games/sail/assorted.c
219
message = "rudder cables shot through";
games/sail/assorted.c
223
message = "shot holes below the water line";
games/sail/assorted.c
228
makemsg(on, "%s", message);
games/sail/assorted.c
57
const char *message;
games/sail/dr_1.c
147
char message[60];
games/sail/dr_1.c
193
snprintf(message, sizeof(message),
games/sail/dr_1.c
196
send_signal(to, message);
games/sail/dr_1.c
221
snprintf(message, sizeof(message),
games/sail/dr_1.c
223
send_signal(from, message);
games/sail/dr_1.c
224
snprintf(message, sizeof(message),
games/sail/dr_1.c
227
send_signal(to, message);
games/sail/pl_main.c
104
char message[60];
games/sail/pl_main.c
124
snprintf(message, sizeof message, "Captain %s assuming command",
games/sail/pl_main.c
126
send_signal(ms, message);
games/sail/sync.c
196
char message[BUFSIZ];
games/sail/sync.c
202
vsnprintf(message, sizeof(message), format, ap);
games/sail/sync.c
204
send_signal(from, message);
games/sail/sync.c
211
char message[BUFSIZ];
games/sail/sync.c
215
vsnprintf(message, sizeof(message), fmt, ap);
games/sail/sync.c
217
send_signal(from, message);
lib/libc/rpc/getnetconfig.c
612
const char *message;
lib/libc/rpc/getnetconfig.c
616
message = _nc_errors[0];
lib/libc/rpc/getnetconfig.c
619
message = _nc_errors[1];
lib/libc/rpc/getnetconfig.c
622
message = _nc_errors[2];
lib/libc/rpc/getnetconfig.c
625
message = _nc_errors[3];
lib/libc/rpc/getnetconfig.c
628
message = "Unknown network selection error";
lib/libc/rpc/getnetconfig.c
630
return __UNCONST(message);
lib/libc/softfloat/timesoftfloat.c
50
static void fail( const char *message, ... )
lib/libc/softfloat/timesoftfloat.c
55
va_start( varArgs, message );
lib/libc/softfloat/timesoftfloat.c
56
vfprintf( stderr, message, varArgs );
libexec/ftpd/cmds.c
825
replydirname(const char *name, const char *message)
libexec/ftpd/cmds.c
845
reply(257, "\"%s\" %s", npath, message);
libexec/ftpd/ftpd.c
3353
epsv_protounsupp(const char *message)
libexec/ftpd/ftpd.c
3359
reply(501, "%s", message); /* XXX */
libexec/ftpd/ftpd.c
3361
reply(522, "%s, use (%d)", message, proto);
libexec/identd/identd.c
1049
die(const char *message, ...)
libexec/identd/identd.c
1054
va_start(ap, message);
libexec/identd/identd.c
1055
vwarnx(message, ap);
libexec/identd/identd.c
1060
va_start(ap, message);
libexec/identd/identd.c
1061
vsyslog(LOG_ERR, message, ap);
libexec/identd/identd.c
1070
maybe_syslog(int priority, const char *message, ...)
libexec/identd/identd.c
1075
va_start(ap, message);
libexec/identd/identd.c
1076
vsyslog(priority, message, ap);
regress/lib/libc/ieeefp/testfloat/fail.c
66
void fail( const char *message, ... )
regress/lib/libc/ieeefp/testfloat/fail.c
71
va_start( varArgs, message );
regress/lib/libc/ieeefp/testfloat/fail.c
72
vfprintf( stderr, message, varArgs );
regress/sys/kern/unfdpass/unfdpass.c
101
message = malloc(CMSG_SPACE(MESSAGE_SIZE));
regress/sys/kern/unfdpass/unfdpass.c
102
if (message == NULL)
regress/sys/kern/unfdpass/unfdpass.c
104
memset(message, 0, CMSG_SPACE(MESSAGE_SIZE));
regress/sys/kern/unfdpass/unfdpass.c
226
msg.msg_control = message;
regress/sys/kern/unfdpass/unfdpass.c
93
void *message;
sbin/dump/optr.c
188
broadcast(const char *message)
sbin/dump/optr.c
203
if (message[0])
sbin/dump/optr.c
204
(void) fputs(message, fp);
sbin/dump/optr.c
215
do_timestamp(time_t thistime, const char *message)
sbin/dump/optr.c
228
fprintf(stderr, message, then);
sbin/init/init.c
395
print_console(int level, const char *message, va_list ap)
sbin/init/init.c
412
len = vsnprintf(errbuf, sizeof(errbuf), message, ap);
sbin/init/init.c
424
stall(const char *message, ...)
sbin/init/init.c
428
va_start(ap, message);
sbin/init/init.c
429
vsyslog(LOG_ALERT, message, ap);
sbin/init/init.c
441
warning(const char *message, ...)
sbin/init/init.c
445
va_start(ap, message);
sbin/init/init.c
446
vsyslog(LOG_ALERT, message, ap);
sbin/init/init.c
456
emergency(const char *message, ...)
sbin/init/init.c
460
va_start(ap, message);
sbin/init/init.c
461
vsyslog(LOG_EMERG, message, ap);
sbin/restore/utilities.c
305
badentry(struct entry *ep, const char *message)
sbin/restore/utilities.c
308
fprintf(stderr, "bad entry: %s\n", message);
sys/arch/atari/dev/ncr5380.c
1080
reqp->message = tmp;
sys/arch/atari/dev/ncr5380.c
2005
reqp->xcmd.opcode, reqp->status, reqp->message,
sys/arch/atari/dev/ncr5380.c
311
reqp->message = 0xff;
sys/arch/atari/dev/ncr5380reg.h
199
uint8_t message; /* returned message byte */
sys/arch/cobalt/stand/boot/lcd.c
104
lcd_puts(const struct lcd_message *message)
sys/arch/cobalt/stand/boot/lcd.c
110
CSR_WRITE(lcd_base, DREG, message->row1[i]);
sys/arch/cobalt/stand/boot/lcd.c
114
CSR_WRITE(lcd_base, DREG, message->row2[i]);
sys/arch/hpc/stand/hpcboot/hpcboot.cpp
262
(msg.message == WM_KEYDOWN ||
sys/arch/hpc/stand/hpcboot/hpcboot.cpp
263
msg.message == WM_LBUTTONDOWN)) {
sys/arch/hpc/stand/hpcboot/menu/rootwindow.cpp
309
if (msg.message != WM_KEYDOWN)
sys/arch/hpcmips/stand/pbsdboot/main.c
1087
if (msg.hwnd == hDlgLoad && msg.message == WM_TIMER) {
sys/arch/hpcmips/stand/pbsdboot/main.c
1230
LRESULT CALLBACK WndProc(HWND hWnd, UINT message,
sys/arch/hpcmips/stand/pbsdboot/main.c
1232
switch (message) {
sys/arch/hpcmips/stand/pbsdboot/main.c
1255
return (DefWindowProc(hWnd, message, wParam, lParam));
sys/arch/hpcmips/stand/pbsdboot/main.c
1261
BOOL CALLBACK MainDlgProc(HWND hWnd, UINT message,
sys/arch/hpcmips/stand/pbsdboot/main.c
1266
switch (message) {
sys/arch/hpcmips/stand/pbsdboot/main.c
618
if(msg.message == WM_KEYDOWN || msg.message == WM_LBUTTONDOWN){
sys/arch/hpcmips/stand/pbsdboot/main.c
637
BOOL CALLBACK DlgProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
sys/arch/hpcmips/stand/pbsdboot/main.c
639
switch (message) {
sys/arch/hpcmips/stand/pbsdboot/main.c
660
BOOL CALLBACK DlgProc2(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
sys/arch/hpcmips/stand/pbsdboot/main.c
662
switch (message) {
sys/arch/hpcmips/stand/pbsdboot/main.c
695
BOOL CALLBACK PropDlgProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
sys/arch/hpcmips/stand/pbsdboot/main.c
701
switch (message) {
sys/arch/hpcmips/stand/pbsdboot/main.c
907
BOOL CALLBACK FbDlgProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
sys/arch/hpcmips/stand/pbsdboot/main.c
912
switch (message) {
sys/arch/mac68k/dev/ncr5380.c
1056
reqp->message = tmp;
sys/arch/mac68k/dev/ncr5380.c
1931
reqp->xcmd.opcode, reqp->status, reqp->message,
sys/arch/mac68k/dev/ncr5380.c
303
reqp->message = 0xff;
sys/arch/mac68k/dev/ncr5380reg.h
199
u_char message; /* returned message byte */
sys/arch/newsmips/dev/sc_wrap.c
207
scb->message = 0;
sys/arch/newsmips/dev/scsi_1185.c
1226
scb->message = scb->identify;
sys/arch/newsmips/dev/scsi_1185.c
1279
scb->message = MSG_MREJ;
sys/arch/newsmips/dev/scsi_1185.c
1315
scb->message = MSG_MREJ;
sys/arch/newsmips/dev/scsi_1185.c
1341
if (scb->message != 0) {
sys/arch/newsmips/dev/scsi_1185.c
1344
if ((scb->message == MSG_EXTND)
sys/arch/newsmips/dev/scsi_1185.c
1354
mp = &scb->message;
sys/arch/newsmips/dev/scsi_1185.c
1442
sc_datr = scb->message;
sys/arch/newsmips/dev/scsireg.h
238
uint8_t message;
sys/arch/sparc/stand/boot/prompatch.c
304
for (e = p->patches; e->message != NULL; ++e) {
sys/arch/sparc/stand/boot/prompatch.c
305
printf("%s", e->message);
sys/arch/sparc/stand/boot/prompatch.c
46
const char *message;
sys/arch/x68k/dev/mha.c
595
mha_reselect(struct mha_softc *sc, u_char message)
sys/arch/x68k/dev/mha.c
622
lun = message & 0x07;
sys/arch/zaurus/dev/zapm.c
210
int message;
sys/arch/zaurus/dev/zapm.c
217
message = (int)msg;
sys/arch/zaurus/dev/zapm.c
219
message = *(int *)msg;
sys/arch/zaurus/dev/zapm.c
240
switch (message) {
sys/arch/zaurus/dev/zapm.c
313
switch (message) {
sys/dev/hpc/hpcapm.c
164
int message;
sys/dev/hpc/hpcapm.c
172
message = (int)msg;
sys/dev/hpc/hpcapm.c
174
message = *(int *)msg;
sys/dev/hpc/hpcapm.c
194
switch (message) {
sys/dev/hpc/hpcapm.c
267
switch (message) {
sys/dev/ic/aic6360.c
725
aic_reselect(struct aic_softc *sc, int message)
sys/dev/ic/aic6360.c
752
lun = message & 0x07;
sys/dev/ic/aic79xx.c
181
const char *message,
sys/dev/ic/aic79xx.c
4994
u_int lun, cam_status status, const char *message,
sys/dev/ic/aic79xx.c
5048
if (message != NULL
sys/dev/ic/aic79xx.c
5051
message, devinfo->channel, devinfo->target, found);
sys/dev/ic/aic7xxx.c
206
const char *message,
sys/dev/ic/aic7xxx.c
3729
cam_status status, const char *message, int verbose_level)
sys/dev/ic/aic7xxx.c
3774
if (message != NULL
sys/dev/ic/aic7xxx.c
3777
message, devinfo->channel, devinfo->target, found);
sys/dev/ic/mb89352.c
707
spc_reselect(struct spc_softc *sc, int message)
sys/dev/ic/mb89352.c
735
lun = message & 0x07;
sys/dev/ic/ncr53c9x.c
1442
ncr53c9x_reselect(struct ncr53c9x_softc *sc, int message, int tagtype,
sys/dev/ic/ncr53c9x.c
1469
lun = message & 0x07;
sys/dev/ofisa/if_cs_ofisa.c
101
const char *message = NULL;
sys/dev/ofisa/if_cs_ofisa.c
194
message = "unable to map memory space";
sys/dev/ofisa/if_cs_ofisa.c
221
if (message != NULL)
sys/dev/ofisa/if_cs_ofisa.c
222
aprint_normal_dev(self, "%s\n", message);
sys/dev/pci/twa.c
475
for (i = 0; table[i].message != NULL; i++)
sys/dev/pci/twa.c
477
return(table[i].message);
sys/dev/pci/twa.c
479
return(table[i].message);
sys/dev/pci/twavar.h
222
const char *message;
sys/net/if_pppoe.c
2096
pppoe_clear_softc(struct pppoe_softc *sc, const char *message)
sys/net/if_pppoe.c
2103
sc->sc_session, message);
tests/fs/fifofs/t_fifo.c
40
char message[MSG_SIZE] = MESSAGE;
tests/fs/fifofs/t_fifo.c
55
rv = write(fd, message, MSG_SIZE);
tests/net/mcast/mcast.c
181
show(const char *prefix, const struct message *msg)
tests/net/mcast/mcast.c
273
struct message msg;
tests/net/mcast/mcast.c
317
struct message msg;
tests/net/net/t_pktinfo_send.c
168
char buf[sizeof(message) * 2];
tests/net/net/t_pktinfo_send.c
237
do_send_pktinfo_tests(client, server, message, strlen(message));
tests/net/net/t_pktinfo_send.c
261
do_send_pktinfo_tests(client, server, message, strlen(message));
tests/net/net/t_pktinfo_send.c
285
do_send_pktinfo_tests(client, server, message, strlen(message));
tests/net/net/t_pktinfo_send.c
309
do_send_pktinfo_tests(client, server, message, strlen(message));
tests/net/net/t_pktinfo_send.c
333
do_send_pktinfo_tests(client, server, message, strlen(message));
tests/net/net/t_pktinfo_send.c
358
do_send_pktinfo_tests(client, server, message, strlen(message));
tests/net/net/t_pktinfo_send.c
387
rv = sendto_pktinfo(client, message, strlen(message), 0,
tests/net/net/t_pktinfo_send.c
419
rv = sendto_pktinfo(client, message, strlen(message), 0,
tests/net/net/t_pktinfo_send.c
452
rv = sendto_pktinfo(client, message, strlen(message), 0,
tests/net/net/t_pktinfo_send.c
55
char message[128] = "Hello IP_PKTINFO";
tests/net/net/t_pktinfo_send.c
566
rv = sendto_pktinfo(client, message, strlen(message), 0,
tests/net/net/t_pktinfo_send.c
575
rv = sendto_pktinfo(client, message, strlen(message), 0,
tests/net/net/t_pktinfo_send.c
636
snprintf(message, sizeof(message), "Hello PKTINFO %d", i);
tests/net/net/t_pktinfo_send.c
638
RL(rv = sendto_pktinfo(client, message, strlen(message),
tests/net/net/t_pktinfo_send.c
651
char buf[sizeof(message)];
tests/net/net/t_pktinfo_send.c
730
RL(rv = sendto_pktinfo(client, message, strlen(message),
tests/net/net/t_pktinfo_send.c
734
RL(rv = sendto_pktinfo(client, message, strlen(message),
tests/net/net/t_pktinfo_send.c
746
char buf[sizeof(message) * 2];
usr.bin/ftp/fetch.c
1075
struct authinfo *pauth, char **auth, const char *message,
usr.bin/ftp/fetch.c
1088
fprintf(ttyout, "%s\n", message);
usr.bin/ftp/fetch.c
1128
char *location, *message;
usr.bin/ftp/fetch.c
1130
*auth = message = location = NULL;
usr.bin/ftp/fetch.c
1142
message = ftp_strdup(ep);
usr.bin/ftp/fetch.c
1257
do_auth(hcode, url, penv, wauth, pauth, auth, message, rval,
usr.bin/ftp/fetch.c
1262
if (message)
usr.bin/ftp/fetch.c
1263
warnx("Error retrieving file `%s'", message);
usr.bin/ftp/fetch.c
1279
FREEPTR(message);
usr.bin/ftp/fetch.c
1294
char *message = NULL;
usr.bin/ftp/fetch.c
1323
message = ftp_strdup(ep);
usr.bin/ftp/fetch.c
1355
do_auth(hcode, url, penv, wauth, pauth, auth, message, rval,
usr.bin/ftp/fetch.c
1360
if (message)
usr.bin/ftp/fetch.c
1361
warnx("Error proxy connect " "`%s'", message);
usr.bin/ftp/fetch.c
1381
FREEPTR(message);
usr.bin/ftp/fetch.c
1414
char *volatile message;
usr.bin/ftp/fetch.c
1435
auth = location = message = NULL;
usr.bin/ftp/fetch.c
1909
FREEPTR(message);
usr.bin/mail/cmd1.c
105
struct message *mp;
usr.bin/mail/cmd1.c
245
sget_msgnum(struct message *mp, struct message *parent)
usr.bin/mail/cmd1.c
260
show_msgnum(FILE *obuf, struct message *mp, struct message *parent)
usr.bin/mail/cmd1.c
269
struct message *parent;
usr.bin/mail/cmd1.c
274
type1_core(struct message *mp, void *v)
usr.bin/mail/cmd1.c
355
struct message *mp;
usr.bin/mail/cmd1.c
495
struct message *parent;
usr.bin/mail/cmd1.c
498
top_core(struct message *mp, void *v)
usr.bin/mail/cmd1.c
553
struct message *mp;
usr.bin/mail/cmd1.c
635
struct message *mp;
usr.bin/mail/cmd2.c
181
save1_core(struct message *mp, void *v)
usr.bin/mail/cmd2.c
239
struct message *mp;
usr.bin/mail/cmd2.c
319
struct message *mp;
usr.bin/mail/cmd2.c
618
struct message *parent;
usr.bin/mail/cmd2.c
623
detach1_core(struct message *mp, void *v)
usr.bin/mail/cmd2.c
64
struct message *mp;
usr.bin/mail/cmd2.c
694
struct message *mp;
usr.bin/mail/cmd3.c
224
set_smopts(struct message *mp)
usr.bin/mail/cmd3.c
282
set_ident_fields(struct header *hp, struct message *mp)
usr.bin/mail/cmd3.c
302
struct message *mp;
usr.bin/mail/cmd3.c
374
struct message *mp;
usr.bin/mail/cmd3.c
432
struct message *mp;
usr.bin/mail/cmd3.c
493
struct message *mp;
usr.bin/mail/cmd3.c
650
struct message *mp;
usr.bin/mail/collect.c
240
struct message *mp;
usr.bin/mail/def.h
141
struct message *link; /* the usual content of the field */
usr.bin/mail/def.h
311
struct message *u_msg; /* message */
usr.bin/mail/def.h
320
struct message *a_msg; /* message */
usr.bin/mail/edit.c
159
struct message *mp;
usr.bin/mail/extern.h
168
FILE * setinput(const struct message *);
usr.bin/mail/extern.h
267
int sendmessage(struct message *, FILE *, struct ignoretab *, const char *, struct mime_info *);
usr.bin/mail/extern.h
290
char * hfield(const char [], const struct message *);
usr.bin/mail/extern.h
295
char * nameof(struct message *, int);
usr.bin/mail/extern.h
298
struct message *set_m_flag(int, int, int);
usr.bin/mail/extern.h
301
void touch(struct message *);
usr.bin/mail/extern.h
346
struct message *next_message(struct message *);
usr.bin/mail/extern.h
347
struct message *prev_message(struct message *);
usr.bin/mail/extern.h
348
struct message *get_message(int);
usr.bin/mail/extern.h
349
int get_msgnum(struct message *);
usr.bin/mail/extern.h
361
# define thread_fix_new_links(message,omsgCount,msgCount)
usr.bin/mail/extern.h
66
char * sget_msgnum(struct message *, struct message *);
usr.bin/mail/extern.h
67
void show_msgnum(FILE *, struct message *, struct message *);
usr.bin/mail/fio.c
109
message_init(struct message *mp, off_t offset, short flags)
usr.bin/mail/fio.c
126
struct message *omessage; /* old message structure array */
usr.bin/mail/fio.c
127
struct message *nmessage;
usr.bin/mail/fio.c
152
message = nmessage;
usr.bin/mail/fio.c
174
append(struct message *mp, FILE *f)
usr.bin/mail/fio.c
189
struct message this;
usr.bin/mail/fio.c
360
setinput(const struct message *mp)
usr.bin/mail/fio.c
58
static struct message *message; /* message structure array */
usr.bin/mail/fio.c
61
PUBLIC struct message *
usr.bin/mail/fio.c
62
next_message(struct message *mp)
usr.bin/mail/fio.c
64
if (mp + 1 < message || mp + 1 >= message + msgCount)
usr.bin/mail/fio.c
70
PUBLIC struct message *
usr.bin/mail/fio.c
71
prev_message(struct message *mp)
usr.bin/mail/fio.c
73
if (mp - 1 < message || mp - 1 >= message + msgCount)
usr.bin/mail/fio.c
79
PUBLIC struct message *
usr.bin/mail/fio.c
85
return message + msgnum - 1;
usr.bin/mail/fio.c
89
get_msgnum(struct message *mp)
usr.bin/mail/fio.c
91
if (mp < message || mp >= message + msgCount)
usr.bin/mail/fio.c
94
return mp - message + 1;
usr.bin/mail/format.c
1034
smsgprintf(const char *fmtstr, struct message *mp)
usr.bin/mail/format.c
1058
fmsgprintf(FILE *fo, const char *fmtstr, struct message *mp)
usr.bin/mail/format.c
139
sfmtfield(const char **fmtbeg, const char *fmtch, struct message *mp)
usr.bin/mail/format.c
198
get_and_or_flags(struct message *mp, struct flags_s *flags)
usr.bin/mail/format.c
210
sfmtflag(const char **fmtbeg, const char *fmtch, struct message *mp)
usr.bin/mail/format.c
287
subformat(const char **src, struct message *mp, const char *addr,
usr.bin/mail/format.c
697
dateof(struct tm *tm, struct message *mp, int use_hl_date)
usr.bin/mail/format.c
807
addrof(struct message *mp)
usr.bin/mail/format.c
921
userof(struct message *mp)
usr.bin/mail/format.c
946
subjof(struct message *mp)
usr.bin/mail/format.c
981
preformat(struct tm *tm, const char *oldfmt, struct message *mp, int use_hl_date)
usr.bin/mail/format.h
35
char *smsgprintf(const char *, struct message *);
usr.bin/mail/format.h
36
void fmsgprintf(FILE *, const char *, struct message *);
usr.bin/mail/format.h
38
void dateof(struct tm *, struct message *, int);
usr.bin/mail/glob.h
69
EXTERN struct message *dot; /* Pointer to current message */
usr.bin/mail/lex.c
1013
struct message *mp;
usr.bin/mail/list.c
1002
struct message *mp;
usr.bin/mail/list.c
1210
struct message *mp;
usr.bin/mail/list.c
1226
struct message *mp;
usr.bin/mail/list.c
1276
struct message *mp;
usr.bin/mail/list.c
1299
struct message *mp;
usr.bin/mail/list.c
1321
struct message *mp;
usr.bin/mail/list.c
608
void *pattern, struct message *mp, char const *fieldname __unused)
usr.bin/mail/list.c
681
void *pattern, struct message *mp, char const *fieldname __unused)
usr.bin/mail/list.c
706
void *pattern, struct message *mp, char const *fieldname)
usr.bin/mail/list.c
722
void *pattern, struct message *mp, char const *fieldname __unused)
usr.bin/mail/list.c
743
void *pattern, struct message *mp, char const *fieldname __unused)
usr.bin/mail/list.c
773
void *, struct message *, char const *);
usr.bin/mail/list.c
804
void *, struct message *, char const *);
usr.bin/mail/list.c
849
struct message *mp;
usr.bin/mail/list.c
872
struct message *mp;
usr.bin/mail/list.c
925
struct message *mp;
usr.bin/mail/mime_decode.c
233
struct message *mp;
usr.bin/mail/mime_decode.c
279
static struct message *
usr.bin/mail/mime_decode.c
282
struct message *mp;
usr.bin/mail/mime_decode.c
298
struct message *top_mp, off_t end_pos, int partnum)
usr.bin/mail/mime_decode.c
321
struct message *top_mp;
usr.bin/mail/mime_decode.c
322
struct message *this_mp;
usr.bin/mail/mime_decode.c
412
struct message *top_mp;
usr.bin/mail/mime_decode.c
413
struct message *this_mp;
usr.bin/mail/mime_decode.c
648
mime_decode_open(struct message *mp)
usr.bin/mail/mime_decode.c
719
mime_sendmessage(struct message *mp, FILE *obuf, struct ignoretab *igntab,
usr.bin/mail/mime_decode.h
46
struct mime_info *mime_decode_open(struct message *);
usr.bin/mail/mime_decode.h
47
int mime_sendmessage(struct message *, FILE *, struct ignoretab *,
usr.bin/mail/mime_detach.h
68
struct message *mp; /* MP for this message regarded as a part. */
usr.bin/mail/mime_detach.h
71
struct message *mp; /* the original parent mp before being split! */
usr.bin/mail/quit.c
139
struct message *mp;
usr.bin/mail/quit.c
270
struct message *mp;
usr.bin/mail/quit.c
77
struct message *mp;
usr.bin/mail/send.c
120
sendmessage(struct message *mp, FILE *obuf, struct ignoretab *doign,
usr.bin/mail/send.c
97
statusput(struct message *mp, FILE *obuf, const char *prefix)
usr.bin/mail/support.c
113
set_m_flag_core(struct message *mp, void *v)
usr.bin/mail/support.c
122
PUBLIC struct message *
usr.bin/mail/support.c
125
struct message *mp;
usr.bin/mail/support.c
140
touch(struct message *mp)
usr.bin/mail/support.c
259
hfield(const char field[], const struct message *mp)
usr.bin/mail/support.c
565
name1(struct message *mp, int reptype)
usr.bin/mail/support.c
646
nameof(struct message *mp, int reptype)
usr.bin/mail/thread.c
1021
struct message *child;
usr.bin/mail/thread.c
108
show_thread(struct message *mp)
usr.bin/mail/thread.c
1127
struct message *mp;
usr.bin/mail/thread.c
1234
struct message *parent;
usr.bin/mail/thread.c
1241
struct message *mp;
usr.bin/mail/thread.c
1264
struct message *child;
usr.bin/mail/thread.c
1265
struct message *mp;
usr.bin/mail/thread.c
1287
struct message *mp;
usr.bin/mail/thread.c
1309
struct message *thread_start;
usr.bin/mail/thread.c
1310
struct message *mp;
usr.bin/mail/thread.c
1311
struct message *lastmp;
usr.bin/mail/thread.c
1312
struct message *old_flink;
usr.bin/mail/thread.c
137
is_tagged_core(struct message *mp)
usr.bin/mail/thread.c
1468
field_load(struct key_sort_s *marray, size_t mcount, struct message *mp,
usr.bin/mail/thread.c
1482
subj_load(struct key_sort_s *marray, size_t mcount, struct message *mp,
usr.bin/mail/thread.c
150
is_tagged(struct message *mp)
usr.bin/mail/thread.c
1503
lines_load(struct key_sort_s *marray, size_t mcount, struct message *mp,
usr.bin/mail/thread.c
1528
size_load(struct key_sort_s *marray, size_t mcount, struct message *mp,
usr.bin/mail/thread.c
1545
date_load(struct key_sort_s *marray, size_t mcount, struct message *mp,
usr.bin/mail/thread.c
1577
from_load(struct key_sort_s *marray, size_t mcount, struct message *mp,
usr.bin/mail/thread.c
1598
void (*loadfn)(struct key_sort_s *, size_t, struct message *, const char *, int);
usr.bin/mail/thread.c
161
has_parent(struct message *mp)
usr.bin/mail/thread.c
167
static struct message *
usr.bin/mail/thread.c
168
next_message1(struct message *mp)
usr.bin/mail/thread.c
1748
struct message *mp;
usr.bin/mail/thread.c
185
static struct message *
usr.bin/mail/thread.c
186
prev_message1(struct message *mp)
usr.bin/mail/thread.c
197
PUBLIC struct message *
usr.bin/mail/thread.c
198
next_message(struct message *mp)
usr.bin/mail/thread.c
209
PUBLIC struct message *
usr.bin/mail/thread.c
210
prev_message(struct message *mp)
usr.bin/mail/thread.c
221
static struct message *
usr.bin/mail/thread.c
222
first_message(struct message *mp)
usr.bin/mail/thread.c
229
PUBLIC struct message *
usr.bin/mail/thread.c
232
struct message *mp;
usr.bin/mail/thread.c
242
get_msgnum(struct message *mp)
usr.bin/mail/thread.c
259
PUBLIC struct message *
usr.bin/mail/thread.c
268
PUBLIC struct message *
usr.bin/mail/thread.c
269
next_abs_message(struct message *mp)
usr.bin/mail/thread.c
292
thread_recursion_flist(struct message *mp, int (*fn)(struct message *, void *), void *args)
usr.bin/mail/thread.c
307
thread_recursion(struct message *mp, int (*fn)(struct message *, void *), void *args)
usr.bin/mail/thread.c
336
reindex_core(struct message *mp)
usr.bin/mail/thread.c
361
struct message *mp;
usr.bin/mail/thread.c
393
redepth_core(struct message *mp, int depth, struct message *parent)
usr.bin/mail/thread.c
415
struct message *mp;
usr.bin/mail/thread.c
426
struct message *tp;
usr.bin/mail/thread.c
446
thread_save_old_links(struct message *omessage, int omsgCount)
usr.bin/mail/thread.c
454
p = (struct message *)(ptrdiff_t)((p) != NULL ? (p) - omessage : -1 ); \
usr.bin/mail/thread.c
472
thread_fix_old_links(struct message *nmessage, int omsgCount)
usr.bin/mail/thread.c
502
thread_init(struct thread_s *tp, struct message *mp, int msgCount)
usr.bin/mail/thread.c
522
thread_fix_new_links(struct message *message, int omsgCount, int msgCount)
usr.bin/mail/thread.c
525
struct message *lastmp;
usr.bin/mail/thread.c
528
assert(omsgCount == 0 || message->m_plink == NULL);
usr.bin/mail/thread.c
530
assert(message_array.t_head == message);
usr.bin/mail/thread.c
532
message_array.t_head = message;
usr.bin/mail/thread.c
562
message[i].m_index = i + 1;
usr.bin/mail/thread.c
563
message[i].m_depth = 0;
usr.bin/mail/thread.c
564
message[i].m_blink = lastmp;
usr.bin/mail/thread.c
565
message[i].m_flink = NULL;
usr.bin/mail/thread.c
566
message[i].m_clink = NULL;
usr.bin/mail/thread.c
567
message[i].m_plink = NULL;
usr.bin/mail/thread.c
569
lastmp->m_flink = &message[i];
usr.bin/mail/thread.c
57
struct message *t_head; /* head of the thread */
usr.bin/mail/thread.c
570
lastmp = &message[i];
usr.bin/mail/thread.c
577
thread_init(¤t_thread, message, msgCount);
usr.bin/mail/thread.c
58
struct message **t_msgtbl; /* message array indexed by msgnum */
usr.bin/mail/thread.c
620
static struct message *
usr.bin/mail/thread.c
621
first_visible_message(struct message *mp)
usr.bin/mail/thread.c
623
struct message *oldmp;
usr.bin/mail/thread.c
655
static struct message *
usr.bin/mail/thread.c
656
thread_top(struct message *mp)
usr.bin/mail/thread.c
696
flattencmd_core(struct message *mp)
usr.bin/mail/thread.c
698
struct message **marray;
usr.bin/mail/thread.c
700
struct message *tp;
usr.bin/mail/thread.c
701
struct message *nextmp;
usr.bin/mail/thread.c
752
struct message *mp;
usr.bin/mail/thread.c
759
struct message *mp;
usr.bin/mail/thread.c
778
struct message *mp; /* the message the following refer to */
usr.bin/mail/thread.c
817
struct message *lastmp;
usr.bin/mail/thread.c
858
struct message *parent;
usr.bin/mail/thread.c
898
adopt_child(struct message *parent, struct message *child)
usr.bin/mail/thread.c
90
show_msg(struct message *mp)
usr.bin/mail/thread.c
918
struct message *t;
usr.bin/mail/thread.c
942
get_parent_id(struct message *mp)
usr.bin/mail/thread.c
964
thread_on_reference(struct message *mp)
usr.bin/mail/thread.c
967
struct message *mp;
usr.bin/mail/thread.c
971
struct message *parent;
usr.bin/mail/thread.h
45
struct message *next_message(struct message *);
usr.bin/mail/thread.h
46
struct message *prev_message(struct message *);
usr.bin/mail/thread.h
47
struct message *get_message(int);
usr.bin/mail/thread.h
48
int get_msgnum(struct message *);
usr.bin/mail/thread.h
52
struct message *get_abs_message(int);
usr.bin/mail/thread.h
53
struct message *next_abs_message(struct message *);
usr.bin/mail/thread.h
59
void thread_save_old_links(struct message *, int);
usr.bin/mail/thread.h
60
void thread_fix_old_links(struct message *, int);
usr.bin/mail/thread.h
61
void thread_fix_new_links(struct message *, int, int);
usr.bin/mail/thread.h
65
int thread_recursion(struct message *, int (*)(struct message *, void *), void *);
usr.bin/rump_dhcpclient/dhcp.c
533
make_message(struct dhcp_message **message,
usr.bin/rump_dhcpclient/dhcp.c
741
*message = dhcp;
usr.bin/talk/init_disp.c
133
message("Connection closing. Exiting");
usr.bin/talk/invite.c
124
message("Ringing your party again");
usr.bin/talk/invite.c
158
message(answers[response.answer]);
usr.bin/talk/invite.c
92
message("Waiting for your party to respond");
usr.bin/talk/io.c
67
message("Connection established\007\007\007");
usr.bin/talk/io.c
91
message("Connection closed. Exiting");
usr.bin/talk/msgs.c
58
message(current_state);
usr.bin/talk/msgs.c
66
message(current_state);
usr.bin/talk/talk.h
76
void message(const char *);
usr.sbin/btattach/init_csr.c
56
} message;
usr.sbin/btattach/init_csr.c
92
cmd.message.type = htole16(CSR_BCCMD_MESSAGE_TYPE_SETREQ);
usr.sbin/btattach/init_csr.c
93
cmd.message.length = htole16(sizeof(cmd.message) >> 1);
usr.sbin/btattach/init_csr.c
94
cmd.message.seqno = htole16(0);
usr.sbin/btattach/init_csr.c
95
cmd.message.varid = htole16(CSR_BCCMD_MESSAGE_VARID_CONFIG_UART);
usr.sbin/btattach/init_csr.c
96
cmd.message.status = htole16(CSR_BCCMD_MESSAGE_STATUS_OK);
usr.sbin/btattach/init_csr.c
99
cmd.message.payload[0] = htole16((speed * 64 + 7812) / 15625);
usr.sbin/sdpd/log.c
103
log_notice(char const *message, ...)
usr.sbin/sdpd/log.c
107
va_start(ap, message);
usr.sbin/sdpd/log.c
108
vsyslog(LOG_NOTICE, message, ap);
usr.sbin/sdpd/log.c
113
log_info(char const *message, ...)
usr.sbin/sdpd/log.c
117
va_start(ap, message);
usr.sbin/sdpd/log.c
118
vsyslog(LOG_INFO, message, ap);
usr.sbin/sdpd/log.c
123
log_debug(char const *message, ...)
usr.sbin/sdpd/log.c
127
va_start(ap, message);
usr.sbin/sdpd/log.c
128
vsyslog(LOG_DEBUG, message, ap);
usr.sbin/sdpd/log.c
53
log_emerg(char const *message, ...)
usr.sbin/sdpd/log.c
57
va_start(ap, message);
usr.sbin/sdpd/log.c
58
vsyslog(LOG_EMERG, message, ap);
usr.sbin/sdpd/log.c
63
log_alert(char const *message, ...)
usr.sbin/sdpd/log.c
67
va_start(ap, message);
usr.sbin/sdpd/log.c
68
vsyslog(LOG_ALERT, message, ap);
usr.sbin/sdpd/log.c
73
log_crit(char const *message, ...)
usr.sbin/sdpd/log.c
77
va_start(ap, message);
usr.sbin/sdpd/log.c
78
vsyslog(LOG_CRIT, message, ap);
usr.sbin/sdpd/log.c
83
log_err(char const *message, ...)
usr.sbin/sdpd/log.c
87
va_start(ap, message);
usr.sbin/sdpd/log.c
88
vsyslog(LOG_ERR, message, ap);
usr.sbin/sdpd/log.c
93
log_warning(char const *message, ...)
usr.sbin/sdpd/log.c
97
va_start(ap, message);
usr.sbin/sdpd/log.c
98
vsyslog(LOG_WARNING, message, ap);
usr.sbin/timed/timed/acksend.c
101
bytenetorder(message);
usr.sbin/timed/timed/acksend.c
112
if (sendtsp(sock, message, addr) == -1)
usr.sbin/timed/timed/acksend.c
84
acksend(struct tsp *message, /* this message */
usr.sbin/timed/timed/acksend.c
94
message->tsp_vers = TSPVERSION;
usr.sbin/timed/timed/acksend.c
95
message->tsp_seq = sequence;
usr.sbin/timed/timed/acksend.c
99
print(message, addr);