Searched refs:msg (Results 26 - 50 of 4874) sorted by relevance

1234567891011>>

/netbsd-current/tests/lib/csu/dso/
H A Dh_initfini3_dso.cxx13 static const char msg[] = "constructor2 executed\n"; local
14 write(STDOUT_FILENO, msg, sizeof(msg) - 1);
25 static const char msg[] = "destructor2 executed\n"; local
26 write(STDOUT_FILENO, msg, sizeof(msg) - 1);
/netbsd-current/tests/lib/csu/
H A Dh_initfini_common.cxx13 static const char msg[] = "constructor executed\n"; local
14 write(STDOUT_FILENO, msg, sizeof(msg) - 1);
25 static const char msg[] = "destructor executed\n"; local
26 write(STDOUT_FILENO, msg, sizeof(msg) - 1);
/netbsd-current/tests/net/net/
H A Dtest.h31 # define FAIL(msg, ...) err(EXIT_FAILURE, msg, ## __VA_ARGS__)
32 # define CHECK_EQUAL(a, b, msg) \
36 msg, (uintmax_t)(a), (uintmax_t)(b)); \
41 # define FAIL(msg, ...) \
43 ATF_CHECK_MSG(0, msg, ## __VA_ARGS__); \
46 # define CHECK_EQUAL(a, b, msg) ATF_CHECK_EQ_MSG(a, b, "%s: " \
47 # a "(%ju) != " # b "(%ju) ", msg, (uintmax_t)(a), (uintmax_t)(b));
/netbsd-current/usr.sbin/sysinst/arch/bebox/
H A DMakefile7 MSG_MD= msg.md.${SYSINSTLANG} msg.mbr.${SYSINSTLANG}
/netbsd-current/usr.sbin/sysinst/arch/evbppc/
H A DMakefile7 MSG_MD= msg.md.${SYSINSTLANG} msg.mbr.${SYSINSTLANG}
/netbsd-current/usr.sbin/sysinst/arch/evbmips/
H A DMakefile7 MSG_MD= msg.md.${SYSINSTLANG} msg.mbr.${SYSINSTLANG}
/netbsd-current/usr.sbin/sysinst/arch/landisk/
H A DMakefile7 MSG_MD= msg.md.${SYSINSTLANG} msg.mbr.${SYSINSTLANG}
/netbsd-current/usr.sbin/sysinst/arch/hpcmips/
H A DMakefile7 MSG_MD= msg.md.${SYSINSTLANG} msg.mbr.${SYSINSTLANG}
/netbsd-current/usr.sbin/sysinst/arch/hpcarm/
H A DMakefile7 MSG_MD= msg.md.${SYSINSTLANG} msg.mbr.${SYSINSTLANG}
/netbsd-current/usr.sbin/sysinst/arch/playstation2/
H A DMakefile7 MSG_MD= msg.md.${SYSINSTLANG} msg.mbr.${SYSINSTLANG}
/netbsd-current/usr.sbin/sysinst/arch/sandpoint/
H A DMakefile7 MSG_MD= msg.md.${SYSINSTLANG} msg.mbr.${SYSINSTLANG}
/netbsd-current/external/gpl3/gdb.old/dist/gnulib/import/
H A Dstrerror.c44 const char *msg = strerror_override (n); local
45 if (msg)
46 return (char *) msg;
48 msg = strerror (n);
55 if (!msg || !*msg)
65 len = strlen (msg);
69 memcpy (buf, msg, len + 1);
/netbsd-current/external/gpl3/gdb/dist/gnulib/import/
H A Dstrerror.c44 const char *msg = strerror_override (n); local
45 if (msg)
46 return (char *) msg;
48 msg = strerror (n);
55 if (!msg || !*msg)
65 len = strlen (msg);
69 memcpy (buf, msg, len + 1);
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.multi/
H A Dmulti-target-interrupt.exp38 set msg "continue"
39 gdb_test_multiple "continue" $msg {
41 pass $msg
47 set msg "send_gdb control C"
48 gdb_test_multiple "" $msg {
50 pass $msg
54 set msg "all threads stopped"
55 gdb_test_multiple "info threads" "$msg" {
57 fail $msg
60 pass $msg
[all...]
/netbsd-current/distrib/notes/common/
H A Dextract-contrib-string.pl89 local($fn,$msg) = @_;
90 print "XXX $fn line $.: $msg\n"
155 $msg="";
158 $msg = $_;
163 $msg = $_;
164 $msg =~ s/^.*:\s+(This product.*)$/$1/;
173 $msg .= $_;
187 while ($msg !~ /^.*``.*\n/) {
188 last if (!$msg);
189 $msg
273 msg: label
[all...]
/netbsd-current/external/apache2/mDNSResponder/dist/unittests/
H A DDNSMessageTest.c12 DNSMessage *msg; variable
23 msg = (DNSMessage *)malloc (sizeof(DNSMessage));
24 UNITTEST_ASSERT_RETURN(msg != NULL);
27 UNITTEST_ASSERT(sizeof(msg->h) == 12);
33 InitializeDNSMessage(&msg->h, onesID, QueryFlags);
36 UNITTEST_ASSERT(msg->h.numAdditionals == 0);
37 UNITTEST_ASSERT(msg->h.numAnswers == 0);
38 UNITTEST_ASSERT(msg->h.numQuestions == 0);
39 UNITTEST_ASSERT(msg->h.numAuthorities == 0);
48 UNITTEST_ASSERT_RETURN(msg !
[all...]
/netbsd-current/external/bsd/wpa/dist/src/wps/
H A Dwps_attr_build.c21 int wps_build_public_key(struct wps_data *wps, struct wpabuf *msg) argument
81 wpabuf_put_be16(msg, ATTR_PUBLIC_KEY);
82 wpabuf_put_be16(msg, wpabuf_len(pubkey));
83 wpabuf_put_buf(msg, pubkey);
97 int wps_build_req_type(struct wpabuf *msg, enum wps_request_type type) argument
100 wpabuf_put_be16(msg, ATTR_REQUEST_TYPE);
101 wpabuf_put_be16(msg, 1);
102 wpabuf_put_u8(msg, type);
107 int wps_build_resp_type(struct wpabuf *msg, enum wps_response_type type) argument
110 wpabuf_put_be16(msg, ATTR_RESPONSE_TYP
117 wps_build_config_methods(struct wpabuf *msg, u16 methods) argument
127 wps_build_uuid_e(struct wpabuf *msg, const u8 *uuid) argument
139 wps_build_dev_password_id(struct wpabuf *msg, u16 id) argument
149 wps_build_config_error(struct wpabuf *msg, u16 err) argument
159 wps_build_authenticator(struct wps_data *wps, struct wpabuf *msg) argument
189 wps_build_version(struct wpabuf *msg) argument
206 wps_build_wfa_ext(struct wpabuf *msg, int req_to_enroll, const u8 *auth_macs, size_t auth_macs_count, u8 multi_ap_subelem) argument
274 wps_build_msg_type(struct wpabuf *msg, enum wps_msg_type msg_type) argument
284 wps_build_enrollee_nonce(struct wps_data *wps, struct wpabuf *msg) argument
294 wps_build_registrar_nonce(struct wps_data *wps, struct wpabuf *msg) argument
304 wps_build_auth_type_flags(struct wps_data *wps, struct wpabuf *msg) argument
328 wps_build_encr_type_flags(struct wps_data *wps, struct wpabuf *msg) argument
349 wps_build_conn_type_flags(struct wps_data *wps, struct wpabuf *msg) argument
359 wps_build_assoc_state(struct wps_data *wps, struct wpabuf *msg) argument
369 wps_build_key_wrap_auth(struct wps_data *wps, struct wpabuf *msg) argument
384 wps_build_encr_settings(struct wps_data *wps, struct wpabuf *msg, struct wpabuf *plain) argument
414 wps_build_oob_dev_pw(struct wpabuf *msg, u16 dev_pw_id, const struct wpabuf *pubkey, const u8 *dev_pw, size_t dev_pw_len) argument
486 wps_build_mac_addr(struct wpabuf *msg, const u8 *addr) argument
497 wps_build_rf_bands_attr(struct wpabuf *msg, u8 rf_bands) argument
507 wps_build_ap_channel(struct wpabuf *msg, u16 ap_channel) argument
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-pe/
H A Dpe-run.exp84 set msg "linking client (.dll)"
87 pass $msg
89 fail $msg
93 set msg "linking client (.sl)"
96 pass $msg
98 fail $msg
104 set msg "linking client (symlink -> .dll)"
107 pass $msg
109 fail $msg
115 set msg "linkin
[all...]
H A Dpe-run2.exp86 set msg "linking client (.dll) fastcall/stdcall"
89 pass $msg
91 fail $msg
95 set msg "linking client (.sl) fastcall/stdcall"
98 pass $msg
100 fail $msg
106 set msg "linking client (symlink -> .dll) fastcall/stdcall"
109 pass $msg
111 fail $msg
117 set msg "linkin
[all...]
/netbsd-current/external/bsd/libbind/dist/nameser/
H A Dns_newmsg.c35 ns_msg *msg = &handle->msg; local
38 msg->_msg = buffer;
39 msg->_eom = buffer + bufsiz;
40 msg->_sect = ns_s_qd;
41 msg->_rrnum = 0;
42 msg->_msg_ptr = buffer + NS_HFIXEDSZ;
43 handle->dnptrs[0] = msg->_msg;
53 ns_newmsg_copy(ns_newmsg *handle, ns_msg *msg) { argument
57 ns_newmsg_id(handle, ns_msg_id(*msg));
94 ns_msg *msg = &handle->msg; local
105 ns_msg *msg = &handle->msg; local
118 ns_msg *msg = &handle->msg; local
153 ns_msg *msg = &handle->msg; local
191 ns_msg *msg = &handle->msg; local
213 ns_msg *msg = &handle->msg; local
[all...]
/netbsd-current/external/gpl3/gcc/dist/fixincludes/tests/base/
H A DAvailabilityInternal.h24 #define __API_D(msg,x) __attribute__((availability(__API_DEPRECATED_PLATFORM_##x,message=msg)))
26 #define __API_D(msg,x)
29 #define __API_D(msg,x)
/netbsd-current/external/gpl3/gcc.old/dist/fixincludes/tests/base/
H A DAvailabilityInternal.h24 #define __API_D(msg,x) __attribute__((availability(__API_DEPRECATED_PLATFORM_##x,message=msg)))
26 #define __API_D(msg,x)
29 #define __API_D(msg,x)
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
H A Dlongjmp.exp65 set msg "next over longjmp(1)"
66 gdb_test_multiple "next" $msg {
68 pass $msg
73 fail $msg
95 set msg "next over call_longjmp (2)"
96 gdb_test_multiple "next" $msg {
98 pass $msg
104 fail $msg
/netbsd-current/external/bsd/ppp/dist/pppd/
H A Dsession.h61 * char** msg :
69 session_start(const int flags, const char* user, const char* passwd, const char* tty, char** msg);
72 #define session_auth(user, pass, tty, msg) \
73 session_start(SESS_AUTH, user, pass, tty, msg)
75 #define session_check(user, pass, tty, msg) \
76 session_start(SESS_ACCT, user, pass, tty, msg)
78 #define session_full(user, pass, tty, msg) \
79 session_start(SESS_ALL, user, pass, tty, msg)
/netbsd-current/external/gpl3/gcc/dist/libgomp/
H A Derror.c41 gomp_vdebug (int kind __attribute__ ((unused)), const char *msg, va_list list) argument
44 vfprintf (stderr, msg, list);
49 gomp_debug (int kind, const char *msg, ...) argument
53 va_start (list, msg);
54 gomp_vdebug (kind, msg, list);
94 GOMP_warning (const char *msg, size_t msglen) argument
96 if (msg && msglen == (size_t) -1)
97 gomp_error ("error directive encountered: %s", msg);
98 else if (msg)
101 fwrite (msg,
109 GOMP_error(const char *msg, size_t msglen) argument
[all...]

Completed in 409 milliseconds

1234567891011>>