Home
last modified time | relevance | path

Searched refs:notification (Results 1 – 25 of 67) sorted by relevance

123

/freebsd-13.1/contrib/wpa/src/eap_server/
H A Deap_server_aka.c44 u16 notification; member
741 data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH; in eap_aka_determine_identity()
792 data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH; in eap_aka_determine_identity()
837 data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH; in eap_aka_fullauth()
883 data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH; in eap_aka_process_identity()
895 data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH; in eap_aka_process_identity()
902 data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH; in eap_aka_process_identity()
947 data->notification = in eap_aka_process_challenge()
1003 data->notification = EAP_SIM_SUCCESS; in eap_aka_process_challenge()
1124 data->notification = EAP_SIM_SUCCESS; in eap_aka_process_reauth()
[all …]
H A Deap_server_sim.c38 u16 notification; member
312 eap_sim_msg_add(msg, EAP_SIM_AT_NOTIFICATION, data->notification, in eap_sim_build_notification()
579 data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH; in eap_sim_process_start()
595 data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH; in eap_sim_process_challenge()
604 data->notification = EAP_SIM_SUCCESS; in eap_sim_process_challenge()
678 data->notification = EAP_SIM_SUCCESS; in eap_sim_process_reauth()
697 data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH; in eap_sim_process_reauth()
712 if (data->notification == EAP_SIM_SUCCESS && data->use_result_ind) in eap_sim_process_client_error()
725 if (data->notification == EAP_SIM_SUCCESS && data->use_result_ind) in eap_sim_process_notification()
752 data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH; in eap_sim_process()
[all …]
/freebsd-13.1/sys/contrib/openzfs/cmd/zed/zed.d/
H A Dzed.rc30 # The string @SUBJECT@ will be replaced with the notification subject;
48 # If set to 0, suppress notification if the pool is healthy.
49 # If set to 1, send notification regardless of pool health.
69 # Pushbullet channel tag for push notification feeds that can be subscribed to.
87 # This defines the application from which the notification will be sent.
/freebsd-13.1/lib/libc/net/
H A Dnscachedcli.c459 int notification; in __abandon_cached_mp_write_session() local
462 notification = CET_MP_WRITE_SESSION_ABANDON_NOTIFICATION; in __abandon_cached_mp_write_session()
463 result = safe_write(ws, &notification, sizeof(int)); in __abandon_cached_mp_write_session()
475 int notification; in __close_cached_mp_write_session() local
477 notification = CET_MP_WRITE_SESSION_CLOSE_NOTIFICATION; in __close_cached_mp_write_session()
478 (void)safe_write(ws, &notification, sizeof(int)); in __close_cached_mp_write_session()
/freebsd-13.1/contrib/ntp/ntpsnmpd/
H A Dntpv4-mib.mib664 "The interval at which the ntpEntNotifHeartbeat notification
689 "A bit for each notification. A 1 for a particular bit enables
690 that particular notification, a 0 disables it.
710 -- SNMP notification definitions
719 "The notification to be sent when the NTP entity changes mode,
736 "The notification to be sent when a (new) syspeer has been
744 "The notification to be sent when a new association is
752 "The notification to be sent when an association is
760 "The notification to be sent when the NTP configuration has
769 "The notification to be sent when a leap second has been
[all …]
/freebsd-13.1/contrib/wpa/src/eap_peer/
H A Deap_sim.c610 u8 id, u16 notification) in eap_sim_response_notification() argument
613 u8 *k_aut = (notification & 0x4000) == 0 ? data->k_aut : NULL; in eap_sim_response_notification()
939 if (attr->notification == -1) { in eap_sim_process_notification()
946 if ((attr->notification & 0x4000) == 0 && in eap_sim_process_notification()
952 eap_sim_report_notification(sm->msg_ctx, attr->notification, 0); in eap_sim_process_notification()
953 if (attr->notification >= 0 && attr->notification < 32768) { in eap_sim_process_notification()
954 data->error_code = attr->notification; in eap_sim_process_notification()
956 } else if (attr->notification == EAP_SIM_SUCCESS && in eap_sim_process_notification()
959 return eap_sim_response_notification(data, id, attr->notification); in eap_sim_process_notification()
H A Deap_aka.c738 u8 id, u16 notification) in eap_aka_response_notification() argument
741 u8 *k_aut = (notification & 0x4000) == 0 ? data->k_aut : NULL; in eap_aka_response_notification()
1206 if (attr->notification == -1) { in eap_aka_process_notification()
1213 if ((attr->notification & 0x4000) == 0 && in eap_aka_process_notification()
1219 eap_sim_report_notification(sm->msg_ctx, attr->notification, 1); in eap_aka_process_notification()
1220 if (attr->notification >= 0 && attr->notification < 32768) { in eap_aka_process_notification()
1221 data->error_code = attr->notification; in eap_aka_process_notification()
1223 } else if (attr->notification == EAP_SIM_SUCCESS && in eap_aka_process_notification()
1226 return eap_aka_response_notification(data, id, attr->notification); in eap_aka_process_notification()
/freebsd-13.1/contrib/wpa/src/eap_common/
H A Deap_sim_common.c503 attr->notification = -1; in eap_sim_parse_attr()
610 attr->notification = apos[0] * 256 + apos[1]; in eap_sim_parse_attr()
612 attr->notification); in eap_sim_parse_attr()
1170 void eap_sim_report_notification(void *msg_ctx, int notification, int aka) in eap_sim_report_notification() argument
1176 switch (notification) { in eap_sim_report_notification()
1200 if (notification >= 32768) { in eap_sim_report_notification()
1203 type, notification); in eap_sim_report_notification()
1207 type, notification); in eap_sim_report_notification()
H A Deap_sim_common.h196 int notification, counter, selected_version, client_error_code; member
228 void eap_sim_report_notification(void *msg_ctx, int notification, int aka);
H A Dikev2_common.h313 const u8 *notification; member
/freebsd-13.1/contrib/ntp/sntp/libevent/
H A Dlibevent.pc.in9 Description: libevent is an asynchronous notification event loop library
/freebsd-13.1/contrib/libevent/
H A Dlibevent.pc.in9 Description: libevent is an asynchronous notification event loop library
/freebsd-13.1/sys/contrib/device-tree/Bindings/arm/firmware/
H A Dsdei.txt5 Linux to receive notification of events such as those generated by
/freebsd-13.1/sys/contrib/device-tree/Bindings/power/supply/
H A Dsbs,sbs-battery.yaml40 change notification.
/freebsd-13.1/sys/dev/isci/scil/
H A Dintel_sata.h180 U32 notification :1; member
/freebsd-13.1/sys/contrib/device-tree/Bindings/thermal/
H A Dthermal-zones.yaml142 - hot # send notification to driver
143 - critical # send notification to driver, trigger shutdown
154 The hot trip type can be used to send a notification to
/freebsd-13.1/crypto/openssl/doc/man3/
H A DX509_STORE_CTX_get_error.pod224 if issuer check debugging is enabled it is used for status notification and
232 for status notification and is B<not> in itself an error.
239 it is used for status notification and is B<not> in itself an error.
245 debugging is enabled it is used for status notification and is B<not> in itself
/freebsd-13.1/sys/contrib/device-tree/Bindings/mailbox/
H A Dxlnx,zynqmp-ipi-mailbox.txt6 agent owns registers used for notification and buffers for message.
/freebsd-13.1/sys/netinet/
H A Dsctp_input.c1320 struct sockaddr *init_src, int *notification,
1336 struct sockaddr *init_src, int *notification, in sctp_process_cookie_existing() argument
1499 *notification = SCTP_NOTIFY_ASSOC_UP; in sctp_process_cookie_existing()
1687 *notification = SCTP_NOTIFY_ASSOC_UP; in sctp_process_cookie_existing()
1745 inp, netp, init_src, notification, in sctp_process_cookie_existing()
1762 *notification = SCTP_NOTIFY_ASSOC_RESTART; in sctp_process_cookie_existing()
1967 struct sockaddr *init_src, int *notification, in sctp_process_cookie_new() argument
2174 *notification = SCTP_NOTIFY_ASSOC_UP; in sctp_process_cookie_new()
2274 int notification = 0; in sctp_handle_cookie_echo() local
2543 netp, to, &notification, in sctp_handle_cookie_echo()
[all …]
/freebsd-13.1/sys/contrib/device-tree/Bindings/soc/qcom/
H A Dqcom,smp2p.txt18 Definition: one entry specifying the smp2p notification interrupt
/freebsd-13.1/contrib/bsnmp/snmpd/
H A Dsnmpd.config134 # SNMPv3 notification targets
/freebsd-13.1/sys/contrib/device-tree/Bindings/arm/
H A Darm,scmi.txt39 messages and/or notification.
/freebsd-13.1/sys/dev/mmc/
H A Dmmcbr_if.m131 # requests are queued. Time passes. The bridge then gets notification
/freebsd-13.1/contrib/llvm-project/libcxx/include/
H A Dfuture81 // setting the result with deferred notification
110 // setting the result with deferred notification
138 // setting the result with deferred notification
1313 // setting the result with deferred notification
1457 // setting the result with deferred notification
1583 // setting the result with deferred notification
/freebsd-13.1/sys/contrib/device-tree/Bindings/remoteproc/
H A Dti,keystone-rproc.txt64 "exception" - interrupt for exception notification

123