Searched refs:msg (Results 1 - 25 of 1736) sorted by relevance

1234567891011>>

/freebsd-12-stable/contrib/netbsd-tests/lib/csu/
H A Dh_initfini1.cxx6 static const char msg[] = "main executed\n"; local
7 write(STDOUT_FILENO, msg, sizeof(msg) - 1);
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);
/freebsd-12-stable/contrib/gcclibs/libiberty/
H A Dmsdos.c1 char msg[] = "No vfork available - aborting\n"; variable
4 write(1, msg, sizeof(msg));
/freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/json/
H A Dusdt.d21 probe log__trace(const char *msg);
22 probe log__debug(const char *msg);
23 probe log__info(const char *msg);
24 probe log__warn(const char *msg);
25 probe log__error(const char *msg);
26 probe log__fatal(const char *msg);
/freebsd-12-stable/sys/contrib/ngatm/netnatm/sig/
H A Dgenmsgcpyh.awk53 print "copy_msg_" msg "(struct uni_" msg " *src, struct uni_" msg " *dst);"
/freebsd-12-stable/sys/xen/xenstore/
H A Dxenstore_internal.h38 int xs_dev_request_and_reply(struct xsd_sockmsg *msg, void **result);
/freebsd-12-stable/sys/contrib/ngatm/netnatm/misc/
H A Dunimsg_common.c39 uni_msg_prepend(struct uni_msg *msg, size_t len) argument
43 if (uni_msg_leading(msg) >= len) {
44 msg->b_rptr -= len;
47 need = len - uni_msg_leading(msg);
48 if (uni_msg_ensure(msg, need))
50 memcpy(msg->b_rptr + need, msg->b_rptr, uni_msg_len(msg));
51 msg->b_rptr += need - len;
52 msg
[all...]
/freebsd-12-stable/contrib/ntp/lib/isc/win32/
H A Dstrerror.c61 char *msg; local
72 msg = NTstrerror(num, &freebuf);
73 if (msg != NULL)
74 snprintf(buf, size, "%s", msg);
77 if(freebuf && msg != NULL) {
78 LocalFree(msg);
147 char *msg; local
149 msg = NTstrerror(errval, &bfreebuf);
150 fprintf(stderr, "%s: %s\n", errmsg, msg);
152 LocalFree(msg);
164 char *msg; local
378 char *msg; local
[all...]
/freebsd-12-stable/contrib/mandoc/
H A Dtest-cmsg.c7 struct msghdr msg; local
9 msg.msg_control = NULL;
10 msg.msg_controllen = 0;
12 return CMSG_FIRSTHDR(&msg) != NULL;
/freebsd-12-stable/lib/liby/
H A Dyyerror.h33 int yyerror(const char *msg);
H A Dyyerror.c44 yyerror(const char *msg) argument
47 fprintf(stderr, "%s\n", msg);
/freebsd-12-stable/contrib/ntp/sntp/libevent/include/event2/
H A Drpc_compat.h48 #define EVTAG_ASSIGN(msg, member, args...) \
49 (*(msg)->base->member##_assign)(msg, ## args)
50 #define EVTAG_GET(msg, member, args...) \
51 (*(msg)->base->member##_get)(msg, ## args)
52 #define EVTAG_ADD(msg, member, args...) \
53 (*(msg)->base->member##_add)(msg, ## args)
55 #define EVTAG_LEN(msg, membe
[all...]
/freebsd-12-stable/contrib/libevent/include/event2/
H A Drpc_compat.h48 #define EVTAG_ASSIGN(msg, member, args...) \
49 (*(msg)->base->member##_assign)(msg, ## args)
50 #define EVTAG_GET(msg, member, args...) \
51 (*(msg)->base->member##_get)(msg, ## args)
52 #define EVTAG_ADD(msg, member, args...) \
53 (*(msg)->base->member##_add)(msg, ## args)
55 #define EVTAG_LEN(msg, membe
[all...]
/freebsd-12-stable/release/picobsd/tinyware/msg/
H A DMakefile3 PROG=msg
4 SRCS= msg.c
/freebsd-12-stable/contrib/wpa/src/eap_common/
H A Deap_wsc_common.c19 struct wpabuf *msg; local
21 msg = eap_msg_alloc(EAP_VENDOR_WFA, EAP_VENDOR_TYPE_WSC, 2, code, id);
22 if (msg == NULL) {
29 wpabuf_put_u8(msg, WSC_FRAG_ACK); /* Op-Code */
30 wpabuf_put_u8(msg, 0); /* Flags */
32 return msg;
/freebsd-12-stable/crypto/heimdal/lib/hx509/
H A Derror.c45 char *msg; member in struct:hx509_error_data
49 free_error_string(hx509_error msg) argument
51 while(msg) {
52 hx509_error m2 = msg->next;
53 free(msg->msg);
54 free(msg);
55 msg = m2;
94 hx509_error msg; local
99 msg
161 hx509_error msg = context->error; local
216 const char *msg; local
[all...]
/freebsd-12-stable/sys/contrib/ngatm/netnatm/
H A Dgenfiles10 awk -f ${SRC}msg/parseie.awk -f ${SRC}msg/geniec.awk ${SRC}msg/ie.def >${DST}msg/uni_ietab.h
11 awk -f ${SRC}msg/parseie.awk -f ${SRC}msg/genieh.awk ${SRC}msg/ie.def >${DST}msg/uni_ie.h
12 awk -f ${SRC}msg/parsemsg.awk -f ${SRC}msg/genmsg
[all...]
/freebsd-12-stable/contrib/netbsd-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);
/freebsd-12-stable/crypto/heimdal/lib/krb5/
H A Dmk_error.c48 KRB_ERROR msg; local
56 memset(&msg, 0, sizeof(msg));
57 msg.pvno = 5;
58 msg.msg_type = krb_error;
59 msg.stime = sec;
60 msg.susec = usec;
61 msg.ctime = client_time;
62 msg.cusec = client_usec;
69 msg
[all...]
/freebsd-12-stable/contrib/wpa/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...]
/freebsd-12-stable/sys/crypto/aesni/
H A Dintel_sha256.c69 __m128i msg; local
94 msg = _mm_loadu_si128((const __m128i*) data);
95 msgtmp0 = _mm_shuffle_epi8(msg, shuf_mask);
96 msg = _mm_add_epi32(msgtmp0,
98 state1 = _mm_sha256rnds2_epu32(state1, state0, msg);
99 msg = _mm_shuffle_epi32(msg, 0x0E);
100 state0 = _mm_sha256rnds2_epu32(state0, state1, msg);
105 msg = _mm_add_epi32(msgtmp1,
107 state1 = _mm_sha256rnds2_epu32(state1, state0, msg);
[all...]
/freebsd-12-stable/tools/regression/atm/
H A DFuncs.sh9 msg() { function
14 msg "Usage: RunTest.sh [-hq] [-b <localbase>]"
15 msg "Options:"
16 msg " -h show this info"
17 msg " -b <localbase> localbase if not /usr/local"
18 msg " -q be quite"
19 msg " -u run user space test, not kernel"
/freebsd-12-stable/contrib/sendmail/libsm/
H A Dstrexit.c32 char *msg; local
35 msg = sm_sysexitmsg(ex);
36 if (msg == NULL)
40 msg = buf;
42 return msg;
60 char *msg; local
62 msg = sm_sysexmsg(ex);
63 if (msg != NULL)
64 return &msg[11];
66 return msg;
[all...]
/freebsd-12-stable/contrib/sendmail/libsmutil/
H A Derr.c20 message(const char *msg, ...) argument
22 message(msg, va_alist)
23 const char *msg;
30 m = msg;
35 SM_VA_START(ap, msg);
44 syserr(const char *msg, ...) argument
46 syserr(msg, va_alist)
47 const char *msg;
54 m = msg;
59 SM_VA_START(ap, msg);
[all...]
/freebsd-12-stable/tools/regression/capsicum/syscalls/
H A Dmisc.c59 struct msghdr msg; local
65 bzero(&msg, sizeof(msg));
68 msg.msg_iov = NULL;
69 msg.msg_iovlen = 0;
70 msg.msg_control = ctrl;
71 msg.msg_controllen = sizeof(ctrl);
73 cmsg = CMSG_FIRSTHDR(&msg);
79 if (sendmsg(sock, &msg, 0) == -1)
89 struct msghdr msg; local
[all...]

Completed in 336 milliseconds

1234567891011>>