Searched refs:msg (Results 101 - 125 of 1708) sorted by relevance

1234567891011>>

/freebsd-13-stable/tools/regression/atm/
H A DRunTest.sh15 msg "Usage: RunTest.sh [-hq] [-b <localbase>]"
16 msg "Options:"
17 msg " -h show this info"
18 msg " -b <localbase> localbase if not /usr/local"
19 msg " -q be quite"
/freebsd-13-stable/contrib/unbound/services/cache/
H A Ddns.c2 * services/cache/dns.c - Cache services for DNS using msg and rrset caches.
130 /** remove servfail msg cache entry */
177 verbose(VERB_ALGO, "TTL 0: dropped msg from cache");
188 /* store msg in the cache */
229 struct dns_msg* msg, time_t now)
231 if((msg->rep->rrsets[msg->rep->rrset_count] =
233 msg->rep->ar_numrrsets++;
234 msg->rep->rrset_count++;
267 struct dns_msg** msg)
228 addr_to_additional(struct ub_packed_rrset_key* rrset, struct regional* region, struct dns_msg* msg, time_t now) argument
265 find_add_addrs(struct module_env* env, uint16_t qclass, struct regional* region, struct delegpt* dp, time_t now, struct dns_msg** msg) argument
375 find_add_ds(struct module_env* env, struct regional* region, struct dns_msg* msg, struct delegpt* dp, time_t now) argument
411 struct dns_msg* msg = (struct dns_msg*)regional_alloc(region, local
440 dns_msg_authadd(struct dns_msg* msg, struct regional* region, struct ub_packed_rrset_key* rrset, time_t now) argument
451 dns_msg_ansadd(struct dns_msg* msg, struct regional* region, struct ub_packed_rrset_key* rrset, time_t now) argument
462 dns_cache_find_delegation(struct module_env* env, uint8_t* qname, size_t qnamelen, uint16_t qtype, uint16_t qclass, struct regional* region, struct dns_msg** msg, time_t now) argument
514 struct dns_msg* msg = (struct dns_msg*)regional_alloc(region, local
542 struct dns_msg* msg; local
616 struct dns_msg* msg; local
646 struct dns_msg* msg; local
741 struct dns_msg* msg = NULL; local
823 struct dns_msg* msg = tomsg(env, &key->key, data, region, now, 0, local
841 struct dns_msg* msg = synth_dname_msg(rrset, region, now, &k, local
884 struct dns_msg* msg = rrset_msg(rrset, region, now, &k); local
911 struct dns_msg* msg = rrset_msg(rrset, region, now, &k); local
937 struct dns_msg* msg; local
1027 struct msgreply_entry* msg; local
[all...]
/freebsd-13-stable/sbin/setkey/
H A Dsetkey.c220 struct sadb_msg msg; local
222 msg.sadb_msg_version = PF_KEY_V2;
223 msg.sadb_msg_type = type;
224 msg.sadb_msg_errno = 0;
225 msg.sadb_msg_satype = satype;
226 msg.sadb_msg_len = PFKEY_UNIT64(sizeof(msg));
227 msg.sadb_msg_reserved = 0;
228 msg.sadb_msg_seq = 0;
229 msg
239 struct sadb_msg msg; local
309 struct sadb_msg *msg; local
[all...]
/freebsd-13-stable/lib/libmp/
H A Dmpasbn.c69 * routines take an extra argument, 'msg', that denotes what they
91 #define BN_ERRCHECK(msg, expr) do { \
92 if (!(expr)) _bnerr(msg); \
116 _bnerr(const char *msg) argument
120 MPERRX(("%s: %s", msg, ERR_reason_error_string(ERR_get_error())));
127 _dtom(const char *msg, const char *s) argument
133 MPERR(("%s", msg));
136 _bnerr(msg);
137 BN_ERRCHECK(msg, BN_dec2bn(&mp->bn, s));
166 _itom(const char *msg, shor argument
190 _madd(const char *msg, const MINT *mp1, const MINT *mp2, MINT *rmp) argument
233 _mdiv(const char *msg, const MINT *nmp, const MINT *dmp, MINT *qmp, MINT *rmp, BN_CTX *c) argument
339 _moveb(const char *msg, const BIGNUM *sbp, MINT *tmp) argument
349 _movem(const char *msg, const MINT *smp, MINT *tmp) argument
411 _msub(const char *msg, const MINT *mp1, const MINT *mp2, MINT *rmp) argument
435 _mtod(const char *msg, const MINT *mp) argument
454 _mtox(const char *msg, const MINT *mp) argument
492 _mult(const char *msg, const MINT *mp1, const MINT *mp2, MINT *rmp, BN_CTX *c) argument
566 _sdiv(const char *msg, const MINT *nmp, short d, MINT *qmp, short *ro, BN_CTX *c) argument
612 _xtom(const char *msg, const char *s) argument
[all...]
/freebsd-13-stable/contrib/googletest/googlemock/scripts/
H A Dgmock_doctor.py144 def _GenericDiagnoser(short_name, long_name, diagnoses, msg):
154 msg: Compiler's error messages.
160 if re.search(regex, msg):
162 for m in _FindAllMatches(regex, msg):
166 def _NeedToReturnReferenceDiagnoser(msg):
188 msg)
191 def _NeedToReturnSomethingDiagnoser(msg):
215 msg)
218 def _NeedToReturnNothingDiagnoser(msg):
252 msg)
[all...]
/freebsd-13-stable/contrib/wpa/src/wps/
H A Dwps_enrollee.c19 static int wps_build_wps_state(struct wps_data *wps, struct wpabuf *msg) argument
28 wpabuf_put_be16(msg, ATTR_WPS_STATE);
29 wpabuf_put_be16(msg, 1);
30 wpabuf_put_u8(msg, state);
35 static int wps_build_e_hash(struct wps_data *wps, struct wpabuf *msg) argument
54 wpabuf_put_be16(msg, ATTR_E_HASH1);
55 wpabuf_put_be16(msg, SHA256_MAC_LEN);
56 hash = wpabuf_put(msg, SHA256_MAC_LEN);
70 wpabuf_put_be16(msg, ATTR_E_HASH2);
71 wpabuf_put_be16(msg, SHA256_MAC_LE
83 wps_build_e_snonce1(struct wps_data *wps, struct wpabuf *msg) argument
93 wps_build_e_snonce2(struct wps_data *wps, struct wpabuf *msg) argument
106 struct wpabuf *msg; local
172 struct wpabuf *msg; local
210 struct wpabuf *msg, *plain; local
243 wps_build_cred_ssid(struct wps_data *wps, struct wpabuf *msg) argument
253 wps_build_cred_auth_type(struct wps_data *wps, struct wpabuf *msg) argument
277 wps_build_cred_encr_type(struct wps_data *wps, struct wpabuf *msg) argument
301 wps_build_cred_network_key(struct wps_data *wps, struct wpabuf *msg) argument
339 wps_build_cred_mac_addr(struct wps_data *wps, struct wpabuf *msg) argument
379 struct wpabuf *msg, *plain; local
425 struct wpabuf *msg; local
455 struct wpabuf *msg; local
708 struct wpabuf msg; local
950 wps_process_m2(struct wps_data *wps, const struct wpabuf *msg, struct wps_parse_attr *attr) argument
1086 wps_process_m4(struct wps_data *wps, const struct wpabuf *msg, struct wps_parse_attr *attr) argument
1141 wps_process_m6(struct wps_data *wps, const struct wpabuf *msg, struct wps_parse_attr *attr) argument
1198 wps_process_m8(struct wps_data *wps, const struct wpabuf *msg, struct wps_parse_attr *attr) argument
1268 wps_process_wsc_msg(struct wps_data *wps, const struct wpabuf *msg) argument
1353 wps_process_wsc_ack(struct wps_data *wps, const struct wpabuf *msg) argument
1399 wps_process_wsc_nack(struct wps_data *wps, const struct wpabuf *msg) argument
1477 wps_enrollee_process_msg(struct wps_data *wps, enum wsc_op_code op_code, const struct wpabuf *msg) argument
[all...]
H A Dwps_i.h141 void wps_fail_event(struct wps_context *wps, enum wps_msg_type msg,
155 int wps_build_public_key(struct wps_data *wps, struct wpabuf *msg);
156 int wps_build_req_type(struct wpabuf *msg, enum wps_request_type type);
157 int wps_build_resp_type(struct wpabuf *msg, enum wps_response_type type);
158 int wps_build_config_methods(struct wpabuf *msg, u16 methods);
159 int wps_build_uuid_e(struct wpabuf *msg, const u8 *uuid);
160 int wps_build_dev_password_id(struct wpabuf *msg, u16 id);
161 int wps_build_config_error(struct wpabuf *msg, u16 err);
162 int wps_build_authenticator(struct wps_data *wps, struct wpabuf *msg);
163 int wps_build_key_wrap_auth(struct wps_data *wps, struct wpabuf *msg);
[all...]
/freebsd-13-stable/sys/contrib/ngatm/netnatm/saal/
H A Dsaal_sscop.c168 struct sscop_msg *msg = NULL, *m; local
171 msg = m;
175 return msg;
644 struct sscop_msg *msg; local
656 MSG_ALLOC(msg);
657 if (msg == NULL) {
666 msg->m = m;
667 msg->rexmit = arg;
668 sscop_signal(sscop, SIG_ESTAB_REQ, msg);
672 msg
740 struct sscop_msg *msg; local
781 struct sscop_msg *msg; local
1046 struct sscop_msg *msg; local
1065 struct sscop_msg *msg; local
1097 struct sscop_msg *msg; local
1175 m_detect_retransmission(struct sscop *sscop, struct sscop_msg *msg) argument
1719 sscop_idle_bgn(struct sscop *sscop, struct sscop_msg *msg) argument
1776 sscop_ignore_pdu(struct sscop *sscop __unused, struct sscop_msg *msg) argument
1786 sscop_idle_end(struct sscop *sscop, struct sscop_msg *msg) argument
1797 sscop_idle_er(struct sscop *sscop, struct sscop_msg *msg) argument
1810 sscop_idle_bgrej(struct sscop *sscop, struct sscop_msg *msg) argument
1822 sscop_idle_poll(struct sscop *sscop, struct sscop_msg *msg) argument
1835 sscop_idle_sd(struct sscop *sscop, struct sscop_msg *msg) argument
1848 sscop_idle_bgak(struct sscop *sscop, struct sscop_msg *msg) argument
1861 sscop_idle_erak(struct sscop *sscop, struct sscop_msg *msg) argument
1874 sscop_idle_stat(struct sscop *sscop, struct sscop_msg *msg) argument
1887 sscop_idle_ustat(struct sscop *sscop, struct sscop_msg *msg) argument
1900 sscop_idle_rs(struct sscop *sscop, struct sscop_msg *msg) argument
1913 sscop_idle_rsak(struct sscop *sscop, struct sscop_msg *msg) argument
1942 sscop_outpend_bgak(struct sscop *sscop, struct sscop_msg *msg) argument
1964 sscop_outpend_bgrej(struct sscop *sscop, struct sscop_msg *msg) argument
2022 sscop_outpend_bgn(struct sscop *sscop, struct sscop_msg *msg) argument
2091 sscop_inpend_bgn(struct sscop *sscop, struct sscop_msg *msg) argument
2114 sscop_inpend_er(struct sscop *sscop, struct sscop_msg *msg) argument
2125 sscop_inpend_endak(struct sscop *sscop, struct sscop_msg *msg) argument
2141 sscop_inpend_bgak(struct sscop *sscop, struct sscop_msg *msg) argument
2153 sscop_inpend_bgrej(struct sscop *sscop, struct sscop_msg *msg) argument
2169 sscop_inpend_sd(struct sscop *sscop, struct sscop_msg *msg) argument
2188 sscop_inpend_ustat(struct sscop *sscop, struct sscop_msg *msg) argument
2207 sscop_inpend_stat(struct sscop *sscop, struct sscop_msg *msg) argument
2226 sscop_inpend_poll(struct sscop *sscop, struct sscop_msg *msg) argument
2245 sscop_inpend_erak(struct sscop *sscop, struct sscop_msg *msg) argument
2256 sscop_inpend_rs(struct sscop *sscop, struct sscop_msg *msg) argument
2267 sscop_inpend_rsak(struct sscop *sscop, struct sscop_msg *msg) argument
2279 sscop_inpend_end(struct sscop *sscop, struct sscop_msg *msg) argument
2321 sscop_outdis_end(struct sscop *sscop, struct sscop_msg *msg) argument
2342 sscop_outdis_endak(struct sscop *sscop, struct sscop_msg *msg) argument
2379 sscop_outdis_bgn(struct sscop *sscop, struct sscop_msg *msg) argument
2408 sscop_outsync_bgn(struct sscop *sscop, struct sscop_msg *msg) argument
2435 sscop_outsync_endak(struct sscop *sscop, struct sscop_msg *msg) argument
2449 sscop_outsync_bgrej(struct sscop *sscop, struct sscop_msg *msg) argument
2464 sscop_outsync_end(struct sscop *sscop, struct sscop_msg *msg) argument
2518 sscop_outsync_rs(struct sscop *sscop, struct sscop_msg *msg) argument
2545 sscop_outsync_rsak(struct sscop *sscop, struct sscop_msg *msg) argument
2595 sscop_insync_endak(struct sscop *sscop, struct sscop_msg *msg) argument
2608 sscop_insync_bgrej(struct sscop *sscop, struct sscop_msg *msg) argument
2621 sscop_insync_end(struct sscop *sscop, struct sscop_msg *msg) argument
2639 sscop_insync_er(struct sscop *sscop, struct sscop_msg *msg) argument
2650 sscop_insync_bgn(struct sscop *sscop, struct sscop_msg *msg) argument
2675 sscop_insync_sd(struct sscop *sscop, struct sscop_msg *msg) argument
2690 sscop_insync_poll(struct sscop *sscop, struct sscop_msg *msg) argument
2705 sscop_insync_stat(struct sscop *sscop, struct sscop_msg *msg) argument
2720 sscop_insync_ustat(struct sscop *sscop, struct sscop_msg *msg) argument
2735 sscop_insync_bgak(struct sscop *sscop, struct sscop_msg *msg) argument
2746 sscop_insync_erak(struct sscop *sscop, struct sscop_msg *msg) argument
2757 sscop_insync_rs(struct sscop *sscop, struct sscop_msg *msg) argument
2776 sscop_insync_rsak(struct sscop *sscop, struct sscop_msg *msg) argument
2788 sscop_outrec_userdata(struct sscop *sscop, struct sscop_msg *msg) argument
2803 sscop_outrec_bgak(struct sscop *sscop, struct sscop_msg *msg) argument
2815 sscop_outrec_erak(struct sscop *sscop, struct sscop_msg *msg) argument
2837 sscop_outrec_end(struct sscop *sscop, struct sscop_msg *msg) argument
2859 sscop_outrec_endak(struct sscop *sscop, struct sscop_msg *msg) argument
2876 sscop_outrec_bgrej(struct sscop *sscop, struct sscop_msg *msg) argument
2952 sscop_outrec_bgn(struct sscop *sscop, struct sscop_msg *msg) argument
2980 sscop_outrec_er(struct sscop *sscop, struct sscop_msg *msg) argument
3008 sscop_outrec_pduq(struct sscop *sscop, struct sscop_msg *msg) argument
3018 sscop_outrec_rsak(struct sscop *sscop, struct sscop_msg *msg) argument
3029 sscop_outrec_rs(struct sscop *sscop, struct sscop_msg *msg) argument
3054 sscop_rec_bgak(struct sscop *sscop, struct sscop_msg *msg) argument
3067 sscop_rec_end(struct sscop *sscop, struct sscop_msg *msg) argument
3086 sscop_rec_endak(struct sscop *sscop, struct sscop_msg *msg) argument
3099 sscop_rec_bgrej(struct sscop *sscop, struct sscop_msg *msg) argument
3128 sscop_rec_rsak(struct sscop *sscop, struct sscop_msg *msg) argument
3140 sscop_rec_rs(struct sscop *sscop, struct sscop_msg *msg) argument
3199 sscop_rec_pduq(struct sscop *sscop, struct sscop_msg *msg) argument
3209 sscop_rec_er(struct sscop *sscop, struct sscop_msg *msg) argument
3229 sscop_rec_bgn(struct sscop *sscop, struct sscop_msg *msg) argument
3254 sscop_rec_stat(struct sscop *sscop, struct sscop_msg *msg) argument
3269 sscop_rec_ustat(struct sscop *sscop, struct sscop_msg *msg) argument
3302 sscop_inrec_pduq(struct sscop *sscop, struct sscop_msg *msg) argument
3329 sscop_inrec_end(struct sscop *sscop, struct sscop_msg *msg) argument
3367 sscop_inrec_endak(struct sscop *sscop, struct sscop_msg *msg) argument
3380 sscop_inrec_bgrej(struct sscop *sscop, struct sscop_msg *msg) argument
3393 sscop_inrec_ustat(struct sscop *sscop, struct sscop_msg *msg) argument
3408 sscop_inrec_stat(struct sscop *sscop, struct sscop_msg *msg) argument
3423 sscop_inrec_poll(struct sscop *sscop, struct sscop_msg *msg) argument
3438 sscop_inrec_sd(struct sscop *sscop, struct sscop_msg *msg) argument
3453 sscop_inrec_rsak(struct sscop *sscop, struct sscop_msg *msg) argument
3464 sscop_inrec_rs(struct sscop *sscop, struct sscop_msg *msg) argument
3488 sscop_inrec_er(struct sscop *sscop, struct sscop_msg *msg) argument
3507 sscop_inrec_bgn(struct sscop *sscop, struct sscop_msg *msg) argument
3533 sscop_inrec_bgak(struct sscop *sscop, struct sscop_msg *msg) argument
3545 sscop_inrec_erak(struct sscop *sscop, struct sscop_msg *msg) argument
3595 sscop_ready_er(struct sscop *sscop, struct sscop_msg *msg) argument
3623 sscop_ready_bgn(struct sscop *sscop, struct sscop_msg *msg) argument
3653 sscop_ready_endak(struct sscop *sscop, struct sscop_msg *msg) argument
3668 sscop_ready_bgrej(struct sscop *sscop, struct sscop_msg *msg) argument
3683 sscop_ready_rs(struct sscop *sscop, struct sscop_msg *msg) argument
3710 sscop_ready_end(struct sscop *sscop, struct sscop_msg *msg) argument
3784 sscop_ready_userdata(struct sscop *sscop, struct sscop_msg *msg) argument
3798 struct sscop_msg *msg; local
3884 sscop_ready_sd(struct sscop *sscop, struct sscop_msg *msg) argument
3966 sscop_ready_poll(struct sscop *sscop, struct sscop_msg *msg) argument
4043 sscop_ready_ustat(struct sscop *sscop, struct sscop_msg *msg) argument
4138 sscop_ready_stat(struct sscop *sscop, struct sscop_msg *msg) argument
4310 sscop_udata_req(struct sscop *sscop, struct sscop_msg *msg) argument
4321 sscop_mdata_req(struct sscop *sscop, struct sscop_msg *msg) argument
4334 struct sscop_msg *msg; local
4352 struct sscop_msg *msg; local
4368 sscop_md(struct sscop *sscop, struct sscop_msg *msg) argument
4386 sscop_ud(struct sscop *sscop, struct sscop_msg *msg) argument
4409 sscop_retrieve(struct sscop *sscop, struct sscop_msg *msg) argument
4793 sig_exec(struct sscop *sscop, u_int sig, struct sscop_msg *msg) argument
4830 sscop_signal(struct sscop *sscop, u_int sig, struct sscop_msg *msg) argument
4906 sscop_save_signal(struct sscop *sscop, u_int sig, struct sscop_msg *msg) argument
[all...]
/freebsd-13-stable/tests/sys/netgraph/
H A Dng_macfilter_test.sh75 ngctl msg O2M: setconfig "{ xmitAlg=3 failAlg=1 enabledLinks=[ 1 1 ] }" # XMIT_FAILOVER -> send replies always out many0
107 local msg="$1"
109 printf '### %s ' "$msg"
110 printf '#%.0s' $(seq $((80 - ${#msg} - 5)))
117 local msg="$1"
121 echo "ok $TSTNR - $msg"
126 local msg="$1"
130 echo "not ok $TSTNR - $msg"
135 local v1="$1" v2="$2" msg="$3"
138 test_ok "$v1 $msg"
[all...]
H A Dhub.c48 char msg[] = "test"; local
64 ng_send_data("a", msg, sizeof(msg));
72 ng_send_data("a", msg, sizeof(msg));
77 ng_send_data("b", msg, sizeof(msg));
82 ng_send_data("c", msg, sizeof(msg));
89 ng_send_data("a", msg, sizeo
128 char msg[] = "LOOP Alert!"; local
188 char msg[] = "test"; local
[all...]
/freebsd-13-stable/contrib/wpa/src/radius/
H A Dradius.c52 struct radius_hdr * radius_msg_get_hdr(struct radius_msg *msg) argument
54 return msg->hdr;
58 struct wpabuf * radius_msg_get_buf(struct radius_msg *msg) argument
60 return msg->buf;
65 radius_get_attr_hdr(struct radius_msg *msg, int idx) argument
68 (wpabuf_mhead_u8(msg->buf) + msg->attr_pos[idx]);
72 static void radius_msg_set_hdr(struct radius_msg *msg, u8 code, u8 identifier) argument
74 msg->hdr->code = code;
75 msg
79 radius_msg_initialize(struct radius_msg *msg) argument
104 struct radius_msg *msg; local
127 radius_msg_free(struct radius_msg *msg) argument
352 radius_msg_dump(struct radius_msg *msg) argument
367 radius_msg_finish(struct radius_msg *msg, const u8 *secret, size_t secret_len) argument
398 radius_msg_finish_srv(struct radius_msg *msg, const u8 *secret, size_t secret_len, const u8 *req_authenticator) argument
439 radius_msg_finish_das_resp(struct radius_msg *msg, const u8 *secret, size_t secret_len, const struct radius_hdr *req_hdr) argument
478 radius_msg_finish_acct(struct radius_msg *msg, const u8 *secret, size_t secret_len) argument
499 radius_msg_finish_acct_resp(struct radius_msg *msg, const u8 *secret, size_t secret_len, const u8 *req_authenticator) argument
520 radius_msg_verify_acct_req(struct radius_msg *msg, const u8 *secret, size_t secret_len) argument
542 radius_msg_verify_das_req(struct radius_msg *msg, const u8 *secret, size_t secret_len, int require_message_authenticator) argument
607 radius_msg_add_attr_to_array(struct radius_msg *msg, struct radius_attr_hdr *attr) argument
630 radius_msg_add_attr(struct radius_msg *msg, u8 type, const u8 *data, size_t data_len) argument
677 struct radius_msg *msg; local
738 radius_msg_add_eap(struct radius_msg *msg, const u8 *data, size_t data_len) argument
762 radius_msg_get_eap(struct radius_msg *msg) argument
799 radius_msg_verify_msg_auth(struct radius_msg *msg, const u8 *secret, size_t secret_len, const u8 *req_auth) argument
849 radius_msg_verify(struct radius_msg *msg, const u8 *secret, size_t secret_len, struct radius_msg *sent_msg, int auth) argument
910 radius_msg_make_authenticator(struct radius_msg *msg) argument
923 radius_msg_get_vendor_attr(struct radius_msg *msg, u32 vendor, u8 subtype, size_t *alen) argument
1108 radius_msg_get_ms_keys(struct radius_msg *msg, struct radius_msg *sent_msg, const u8 *secret, size_t secret_len) argument
1157 radius_msg_get_cisco_keys(struct radius_msg *msg, struct radius_msg *sent_msg, const u8 *secret, size_t secret_len) argument
1186 radius_msg_add_mppe_keys(struct radius_msg *msg, const u8 *req_authenticator, const u8 *secret, size_t secret_len, const u8 *send_key, size_t send_key_len, const u8 *recv_key, size_t recv_key_len) argument
1261 radius_msg_add_wfa(struct radius_msg *msg, u8 subtype, const u8 *data, size_t len) argument
1288 radius_user_password_hide(struct radius_msg *msg, const u8 *data, size_t data_len, const u8 *secret, size_t secret_len, u8 *buf, size_t buf_len) argument
1342 radius_msg_add_attr_user_password(struct radius_msg *msg, const u8 *data, size_t data_len, const u8 *secret, size_t secret_len) argument
1359 radius_msg_get_attr(struct radius_msg *msg, u8 type, u8 *buf, size_t len) argument
1382 radius_msg_get_attr_ptr(struct radius_msg *msg, u8 type, u8 **buf, size_t *len, const u8 *start) argument
1406 radius_msg_count_attr(struct radius_msg *msg, u8 type, int min_len) argument
1452 radius_msg_get_vlanid(struct radius_msg *msg, int *untagged, int numtagged, int *tagged) argument
1555 radius_msg_get_tunnel_password(struct radius_msg *msg, int *keylen, const u8 *secret, size_t secret_len, struct radius_msg *sent_msg, size_t n) argument
1701 radius_msg_find_unlisted_attr(struct radius_msg *msg, u8 *attrs) argument
[all...]
/freebsd-13-stable/contrib/libarchive/cpio/test/
H A Dtest_basic.c29 verify_files(const char *msg) argument
36 failure("%s", msg);
38 failure("%s", msg);
40 failure("%s", msg);
44 failure("%s", msg);
52 failure("%s", msg);
54 failure("%s", msg);
56 failure("%s", msg);
133 const char *msg; local
228 msg
[all...]
/freebsd-13-stable/sys/dev/pst/
H A Dpst-iop.c208 struct i2o_exec_iop_reset_message *msg; local
213 msg = (struct i2o_exec_iop_reset_message *)(sc->ibase + mfa);
214 bzero(msg, sizeof(struct i2o_exec_iop_reset_message));
215 msg->version_offset = 0x1;
216 msg->message_flags = 0x0;
217 msg->message_size = sizeof(struct i2o_exec_iop_reset_message) >> 2;
218 msg->target_address = I2O_TID_IOP;
219 msg->initiator_address = I2O_TID_HOST;
220 msg->function = I2O_EXEC_IOP_RESET;
221 msg
241 struct i2o_exec_init_outqueue_message *msg; local
297 struct i2o_exec_get_lct_message *msg; local
341 struct i2o_util_get_param_message *msg; local
405 struct i2o_basic_message *msg = (struct i2o_basic_message *)(sc->ibase+mfa); local
429 iop_queue_wait_msg(struct iop_softc *sc, int mfa, struct i2o_basic_message *msg) argument
469 iop_create_sgl(struct i2o_basic_message *msg, caddr_t data, int count, int dir) argument
[all...]
/freebsd-13-stable/contrib/netbsd-tests/net/fdpass/
H A Dfdpass.c49 struct msghdr msg; local
64 memset(&msg, 0, sizeof(msg));
65 msg.msg_control = &cmsgbuf.buf;
66 msg.msg_controllen = CMSG_SPACE(sizeof(int));
67 cmsg = CMSG_FIRSTHDR(&msg);
72 msg.msg_controllen = cmsg->cmsg_len;
76 msg.msg_iov = &vec;
77 msg.msg_iovlen = 1;
81 while ((n = sendmsg(sock, &msg,
101 struct msghdr msg; local
[all...]
/freebsd-13-stable/contrib/wpa/src/p2p/
H A Dp2p_pd.c444 static int p2ps_validate_pd_req(struct p2p_data *p2p, struct p2p_message *msg, argument
456 if ((_val) && !msg->_attr) { \
475 if (msg->status && *msg->status != P2P_SC_SUCCESS_DEFERRED)
483 * backward compatible, therefore we allow processing of msg.feature_cap
485 * Note 2: Verification of msg.feature_cap_len below has to be changed
490 if (msg->feature_cap_len < sizeof(struct p2ps_feature_capab)) {
495 switch (*msg->conn_cap) {
532 if (msg->persistent_dev) {
535 if (os_memcmp(msg
557 struct p2p_message msg; local
1194 p2p_validate_p2ps_pd_resp(struct p2p_data *p2p, struct p2p_message *msg) argument
1296 struct p2p_message msg; local
[all...]
/freebsd-13-stable/contrib/netbsd-tests/net/net/
H A Dt_udp.c14 static const char msg[] = "sendto test"; variable
50 e = sendto(s, msg, sizeof(msg), 0, res->ai_addr, res->ai_addrlen);
51 ATF_REQUIRE_MSG(e == sizeof(msg), "sendto(1) AF=%d: %s", family,
54 e = sendto(s, msg, sizeof(msg), 0, res->ai_addr, res->ai_addrlen);
55 ATF_REQUIRE_MSG(e == sizeof(msg), "sendto(2) AF=%d: %s", family,
63 e = send(s, msg, sizeof(msg), 0);
64 ATF_REQUIRE_MSG(e == sizeof(msg), "sen
[all...]
/freebsd-13-stable/contrib/wpa/src/eap_common/
H A Deap_common.c17 * @msg: EAP frame (starting with EAP header)
25 int eap_hdr_len_valid(const struct wpabuf *msg, size_t min_payload) argument
30 if (msg == NULL)
33 hdr = wpabuf_head(msg);
35 if (wpabuf_len(msg) < sizeof(*hdr)) {
41 if (len < sizeof(*hdr) + min_payload || len > wpabuf_len(msg)) {
54 * @msg: EAP frame (starting with EAP header)
67 const struct wpabuf *msg, size_t *plen)
73 if (!eap_hdr_len_valid(msg, 1))
76 hdr = wpabuf_head(msg);
66 eap_hdr_validate(int vendor, EapType eap_type, const struct wpabuf *msg, size_t *plen) argument
167 eap_update_len(struct wpabuf *msg) argument
182 eap_get_id(const struct wpabuf *msg) argument
199 eap_get_type(const struct wpabuf *msg) argument
[all...]
/freebsd-13-stable/sbin/hastd/
H A Dproto_common.c68 struct msghdr msg; local
74 bzero(&msg, sizeof(msg));
77 msg.msg_iov = NULL;
78 msg.msg_iovlen = 0;
79 msg.msg_control = ctrl;
80 msg.msg_controllen = sizeof(ctrl);
82 cmsg = CMSG_FIRSTHDR(&msg);
88 if (sendmsg(sock, &msg, 0) == -1)
168 struct msghdr msg; local
[all...]
/freebsd-13-stable/contrib/llvm-project/libunwind/src/
H A Dconfig.h119 #define _LIBUNWIND_ABORT(msg) \
124 #define _LIBUNWIND_ABORT(msg) \
126 fprintf(stderr, "libunwind: %s - %s\n", __func__, msg); \
133 #define _LIBUNWIND_LOG0(msg)
134 #define _LIBUNWIND_LOG(msg, ...)
136 #define _LIBUNWIND_LOG0(msg) \
137 fprintf(stderr, "libunwind: " msg "\n")
138 #define _LIBUNWIND_LOG(msg, ...) \
139 fprintf(stderr, "libunwind: " msg "\n", __VA_ARGS__)
155 #define _LIBUNWIND_DEBUG_LOG(msg,
[all...]
/freebsd-13-stable/contrib/openbsm/bin/auditdistd/
H A Dproto_common.c65 struct msghdr msg; local
71 bzero(&msg, sizeof(msg));
74 msg.msg_iov = NULL;
75 msg.msg_iovlen = 0;
76 msg.msg_control = ctrl;
77 msg.msg_controllen = sizeof(ctrl);
79 cmsg = CMSG_FIRSTHDR(&msg);
85 if (sendmsg(sock, &msg, 0) == -1)
165 struct msghdr msg; local
[all...]
/freebsd-13-stable/sys/amd64/vmm/io/
H A Dvlapic_priv.h100 #define VLAPIC_CTR_IRR(vlapic, msg) \
104 VLAPIC_CTR1((vlapic), msg " irr0 0x%08x", irrptr[0 << 2]); \
105 VLAPIC_CTR1((vlapic), msg " irr1 0x%08x", irrptr[1 << 2]); \
106 VLAPIC_CTR1((vlapic), msg " irr2 0x%08x", irrptr[2 << 2]); \
107 VLAPIC_CTR1((vlapic), msg " irr3 0x%08x", irrptr[3 << 2]); \
108 VLAPIC_CTR1((vlapic), msg " irr4 0x%08x", irrptr[4 << 2]); \
109 VLAPIC_CTR1((vlapic), msg " irr5 0x%08x", irrptr[5 << 2]); \
110 VLAPIC_CTR1((vlapic), msg " irr6 0x%08x", irrptr[6 << 2]); \
111 VLAPIC_CTR1((vlapic), msg " irr7 0x%08x", irrptr[7 << 2]); \
114 #define VLAPIC_CTR_ISR(vlapic, msg) \
[all...]
/freebsd-13-stable/contrib/libarchive/libarchive/test/
H A Dtest_write_disk_sparse.c42 const char *msg = sparse ? "sparse" : "non-sparse"; local
62 failure("%s", msg);
68 failure("%s", msg);
74 failure("%s", msg);
77 failure("%s", msg);
92 failure("%s", msg);
95 failure("offset: %d, %s", (int)(p - buff), msg);
103 failure("offset: %d, %s", (int)(p - buff), msg);
114 failure("offset: %d, %s", (int)(p - buff), msg);
118 failure("%s", msg);
139 const char *msg = sparse ? "sparse" : "non-sparse"; local
[all...]
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_set/
H A Dmountpoint_003_pos.ksh110 msg=$(mount | grep "$tmpmnt ")
112 echo $msg | grep "${args[((i))]}" > /dev/null 2>&1
114 echo $msg | grep "${args[((i-1))]}" > /dev/null 2>&1
117 "Real option: $msg"
126 msg=$(mount | grep "^$tmpmnt ")
133 echo $msg | grep "${args[((i+1))]}" > /dev/null 2>&1
136 "Real option: $msg"
/freebsd-13-stable/sys/powerpc/powernv/
H A Dopal_async.c54 struct opal_msg msg; member in struct:async_completion
111 memcpy(buf, &completions[token].msg, size);
121 static void opal_handle_async_completion(void *arg, struct opal_msg *msg) argument
125 token = msg->params[0];
126 memcpy(&completions[token].msg, msg, sizeof(*msg));
/freebsd-13-stable/crypto/openssh/openbsd-compat/
H A Dport-aix.c179 char *authmsg = NULL, *msg = NULL, *name = ctxt->pw->pw_name; local
205 expired = passwdexpired(name, &msg);
206 if (msg && *msg) {
208 msg, strlen(msg))) != 0)
211 aix_remove_embedded_newlines(msg);
213 debug3("AIX/passwdexpired returned %d msg %.100s", expired, msg);
223 name, msg);
243 char *msg = NULL; local
286 char *msg = NULL; local
305 char *msg = lastlogin_msg; local
[all...]

Completed in 284 milliseconds

1234567891011>>