/src/tests/usr.bin/xlint/lint1/ |
msg_293.c | 9 /* expect+2: warning: parameter 'msgid' unused in function 'my_printf' [231] */ 11 void my_printf(int msgid, ...) {
|
accept.sh | 119 msgid=${base} 120 msgid=${msgid#msg_00} 121 msgid=${msgid#msg_0} 122 msgid=${msgid#msg_} 123 msgid=${msgid%%_*} 124 if ! grep "\\[$msgid\\]\$" "$exp_file" >/dev/null; the [all...] |
/src/usr.bin/xlint/lint1/ |
err.c | 544 verror_at(int msgid, const pos_t *pos, va_list ap) 547 if (is_suppressed[msgid]) 553 (void)vfprintf(out, msgs[msgid], ap); 554 (void)fprintf(out, " [%d]\n", msgid); 560 vwarning_at(int msgid, const pos_t *pos, va_list ap) 563 if (is_suppressed[msgid]) 566 debug_step("%s: lwarn=%d msgid=%d", __func__, lwarn, msgid); 567 if (lwarn == LWARN_NONE || lwarn == msgid) 574 (void)vfprintf(out, msgs[msgid], ap) [all...] |
lint1.h | 594 # define wrap_check_printf_at(func, msgid, pos, args...) \ 596 check_printf(__CONCAT(MSG_, msgid), ##args); \ 597 (func)(msgid, pos, ##args); \ 600 # define error_at(msgid, pos, args...) \ 601 wrap_check_printf_at(error_at, msgid, pos, ##args) 602 # define warning_at(msgid, pos, args...) \ 603 wrap_check_printf_at(warning_at, msgid, pos, ##args) 604 # define message_at(msgid, pos, args...) \ 605 wrap_check_printf_at(message_at, msgid, pos, ##args) 607 # define wrap_check_printf(func, cond, msgid, args...) [all...] |
check-msgs.lua | 118 local msgid = filename:match("^msg_(%d%d%d)") 119 if msgs[msgid] then 120 local unescaped_msg = msgs[msgid]:gsub("\\(.)", "%1") 121 local expected_text = ("Test for message: %s [%s]"):format(unescaped_msg, msgid)
|
/src/lib/libintl/ |
libintl.h | 40 #define pgettext_expr(msgctxt, msgid) pgettext((msgctxt), (msgid)) 41 #define dpgettext_expr(domainname, msgctxt, msgid) \ 42 dpgettext((domainname), (msgctxt), (msgid)) 43 #define dcpgettext_expr(domainname, msgctxt, msgid, category) \ 44 dcpgettext((domainname), (msgctxt), (msgid), (category))
|
gettext.c | 83 gettext(const char *msgid) 86 return dcngettext(NULL, msgid, NULL, 1UL, LC_MESSAGES); 90 dgettext(const char *domainname, const char *msgid) 93 return dcngettext(domainname, msgid, NULL, 1UL, LC_MESSAGES); 97 dcgettext(const char *domainname, const char *msgid, int category) 100 return dcngettext(domainname, msgid, NULL, 1UL, category); 119 pgettext(const char *msgctxt, const char *msgid) 122 return pgettext_impl(NULL, msgctxt, msgid, NULL, 1UL, LC_MESSAGES); 126 dpgettext(const char *domainname, const char *msgctxt, const char *msgid) 129 return pgettext_impl(domainname, msgctxt, msgid, NULL, 1UL, LC_MESSAGES) 952 const char *msgid; local in function:dcngettext [all...] |
/src/lib/libc/gen/ |
syslog_ss.c | 89 syslogp_ss(int pri, struct syslog_data *data, const char *msgid, 95 _vxsyslogp_r(pri, &_syslog_ss_fun, data, msgid, sdfmt, msgfmt, ap); 106 vsyslogp_ss(int pri, struct syslog_data *data, const char *msgid, 109 _vxsyslogp_r(pri, &_syslog_ss_fun, data, msgid, sdfmt, msgfmt, ap);
|
syslog.c | 199 * like syslog but take additional arguments for MSGID and SD 202 syslogp(int pri, const char *msgid, const char *sdfmt, const char *msgfmt, ...) 208 msgid, sdfmt, msgfmt, ap); 213 vsyslogp(int pri, const char *msgid, const char *sdfmt, const char *msgfmt, 217 msgid, sdfmt, msgfmt, ap); 221 vsyslogp_r(int pri, struct syslog_data *data, const char *msgid, 224 _vxsyslogp_r(pri, &_syslog_fun, data, msgid, sdfmt, msgfmt, ap); 238 syslogp_r(int pri, struct syslog_data *data, const char *msgid, 244 _vxsyslogp_r(pri, &_syslog_fun, data, msgid, sdfmt, msgfmt, ap);
|
xsyslog.c | 129 struct syslog_data *data, const char *msgid, 134 _vxsyslogp_r(pri, fun, data, msgid, sdfmt, msgfmt, ap); 140 struct syslog_data *data, const char *msgid, 240 if (msgid != NULL && *msgid != '\0') { 241 strlcat(fmt_cat, msgid, FMT_LEN);
|
/src/usr.bin/logger/ |
logger.c | 72 const char *msgid = "-"; local in function:main 93 case 'm': /* msgid field */ 94 msgid = optarg; 127 syslogp(pri, msgid, sd, "%s", buf); 131 syslogp(pri, msgid, sd, "%s", *argv++); 140 syslogp(pri, msgid, sd, "%s", buf); 146 syslogp(pri, msgid, sd, "%s", buf); 199 "Usage: %s [-cins] [-d SD] [-f file] [-m msgid] "
|
/src/lib/libc/compat/gen/ |
compat_syslog.c | 138 syslogp_r(int pri, struct syslog_data60 *data60, const char *msgid, 146 __vsyslogp_r60(pri, &data, msgid, sdfmt, msgfmt, ap); 151 vsyslogp_r(int pri, struct syslog_data60 *data60, const char *msgid, 157 __vsyslogp_r60(pri, &data, msgid, sdfmt, msgfmt, ap); 176 syslogp_ss(int pri, struct syslog_data60 *data, const char *msgid, 182 vsyslogp_r(pri | LOG_SIGNAL_SAFE, data, msgid, sdfmt, msgfmt, ap); 193 vsyslogp_ss(int pri, struct syslog_data60 *data, const char *msgid, 196 vsyslogp_r(pri | LOG_SIGNAL_SAFE, data, msgid, sdfmt, msgfmt, ap);
|
/src/distrib/utils/libhack/ |
syslog.c | 103 syslogp_r(int priority, struct syslog_data *data, const char *msgid, 113 vsyslogp_r(int priority, struct syslog_data *data, const char *msgid, 120 syslogp_ss(int priority, struct syslog_data *data, const char *msgid, 130 vsyslogp_ss(int priority, struct syslog_data *data, const char *msgid, 137 syslogp(int priority, const char *msgid, const char *sdfmt, const char *fmt, 147 vsyslogp(int priority, const char *msgid, const char *sdfmt, const char *fmt,
|
/src/sys/sys/ |
ipmi.h | 57 long msgid; member in struct:ipmi_req 68 long msgid; member in struct:ipmi_recv
|
/src/sys/external/bsd/vchiq/dist/interface/vchiq_arm/ |
vchiq_core.c | 578 header->msgid = VCHIQ_MSGID_PADDING; 660 int msgid = header->msgid; local in function:process_free_queue 661 if (VCHIQ_MSG_TYPE(msgid) == VCHIQ_MSG_DATA) { 662 int port = VCHIQ_MSG_SRCPORT(msgid); 682 "(header %p, msgid %x, " 683 "header->msgid %x, " 688 header, msgid, 689 header->msgid, 723 ", msgid %x, 1130 int msgid = header->msgid; local in function:release_slot 1191 int msgid = VCHIQ_MAKE_MSG(msgtype, service->localport, local in function:notify_bulks 1513 int msgid, size; local in function:parse_open 1642 int msgid, size; local in function:parse_rx_slots 2172 int msgid, size; local in function:sync_func 2789 int msgid = header->msgid; local in function:release_service_messages 3528 int msgid = header->msgid; local in function:vchiq_release_message [all...] |
vchiq_core.h | 119 #define VCHIQ_MSG_TYPE(msgid) ((unsigned int)msgid >> 24) 120 #define VCHIQ_MSG_SRCPORT(msgid) \ 121 (unsigned short)(((unsigned int)msgid >> 12) & 0xfff) 122 #define VCHIQ_MSG_DSTPORT(msgid) \ 123 ((unsigned short)msgid & 0xfff)
|
vchiq_if.h | 83 int msgid; member in struct:vchiq_header_struct
|
/src/usr.bin/gencat/ |
gencat.c | 100 long msgId; 131 static void MCDelMsg(int msgId); 132 static void MCAddMsg(int msgId, const char *msg); 469 int msgid = 0; local in function:MCParse 481 msgid = 0; 518 msgid = atoi(cptr); 523 MCAddMsg(msgid, ""); 545 MCDelMsg(msgid); 548 MCAddMsg(msgid, str); 728 msg_hdr->__msgno = htonl(msg->msgId); [all...] |
/src/lib/libc/time/ |
private.h | 1024 ** '_(MSGID)' uses the current locale's message library string for MSGID. 1025 ** The default is to use gettext if available, and use MSGID otherwise. 1029 #define _(msgid) gettext(msgid) 1031 #define _(msgid) msgid
|
/src/lib/libpthread/ |
pthread_cancelstub.c | 381 msgrcv(int msgid, void *msgp, size_t msgsz, long msgtyp, int msgflg) 388 retval = _sys_msgrcv(msgid, msgp, msgsz, msgtyp, msgflg); 395 msgsnd(int msgid, const void *msgp, size_t msgsz, int msgflg) 402 retval = _sys_msgsnd(msgid, msgp, msgsz, msgflg);
|
/src/sys/external/bsd/acpica/dist/compiler/ |
dtcompilerparser.tab.c | 379 # define YY_(msgid) dgettext ("bison-runtime", msgid) 383 # define YY_(msgid) msgid
|
dtparser.tab.c | 396 # define YY_(msgid) dgettext ("bison-runtime", msgid) 400 # define YY_(msgid) msgid
|
prparser.tab.c | 398 # define YY_(msgid) dgettext ("bison-runtime", msgid) 402 # define YY_(msgid) msgid
|
/src/tests/lib/libpthread/ |
t_cancellation.c | 390 int msgid; local in function:cancelpoint_msgrcv 393 RL(msgid = msgget(IPC_PRIVATE, IPC_CREAT)); 394 pthread_cleanup_push(&cleanup_msgid, &msgid); 396 RL(msgrcv(msgid, buf, sizeof(buf), 0, 0)); 403 int msgid; local in function:cancelpoint_msgsnd 406 RL(msgid = msgget(IPC_PRIVATE, IPC_CREAT)); 407 pthread_cleanup_push(&cleanup_msgid, &msgid); 409 RL(msgsnd(msgid, buf, sizeof(buf), 0));
|
/src/usr.sbin/syslogd/ |
syslogd.h | 285 char *msgid; member in struct:buf_msg
|