| /src/contrib/wpa/src/eap_server/ |
| H A D | eap_server_aka.c | 45 u16 notification; member 654 wpa_printf(MSG_DEBUG, " AT_NOTIFICATION (%d)", data->notification); in eap_aka_build_notification() 655 eap_sim_msg_add(msg, EAP_SIM_AT_NOTIFICATION, data->notification, in eap_aka_build_notification() 904 data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH; in eap_aka_determine_identity() 945 data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH; in eap_aka_fullauth() 991 data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH; in eap_aka_process_identity() 1003 data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH; in eap_aka_process_identity() 1010 data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH; in eap_aka_process_identity() 1055 data->notification = in eap_aka_process_challenge() 1076 data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH; in eap_aka_process_challenge() [all …]
|
| H A D | eap_server_sim.c | 40 u16 notification; member 329 wpa_printf(MSG_DEBUG, " AT_NOTIFICATION (%d)", data->notification); in eap_sim_build_notification() 330 eap_sim_msg_add(msg, EAP_SIM_AT_NOTIFICATION, data->notification, in eap_sim_build_notification() 700 data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH; in eap_sim_process_start() 716 data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH; in eap_sim_process_challenge() 725 data->notification = EAP_SIM_SUCCESS; in eap_sim_process_challenge() 799 data->notification = EAP_SIM_SUCCESS; in eap_sim_process_reauth() 818 data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH; in eap_sim_process_reauth() 833 if (data->notification == EAP_SIM_SUCCESS && data->use_result_ind) in eap_sim_process_client_error() 846 if (data->notification == EAP_SIM_SUCCESS && data->use_result_ind) in eap_sim_process_notification() [all …]
|
| /src/sys/contrib/openzfs/cmd/zed/zed.d/ |
| H A D | zed.rc | 29 # The string @SUBJECT@ will be replaced with the notification subject; 32 # If @SUBJECT@ was omited here, a "Subject: ..." header will be added to notification 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. 160 # This defines which topic will receive the ntfy notification.
|
| H A D | zed-functions.sh | 253 local subject="${1:-"ZED notification"}"
|
| /src/lib/libc/net/ |
| H A D | nscachedcli.c | 456 int notification; in __abandon_cached_mp_write_session() local 459 notification = CET_MP_WRITE_SESSION_ABANDON_NOTIFICATION; in __abandon_cached_mp_write_session() 460 result = safe_write(ws, ¬ification, sizeof(int)); in __abandon_cached_mp_write_session() 472 int notification; in __close_cached_mp_write_session() local 474 notification = CET_MP_WRITE_SESSION_CLOSE_NOTIFICATION; in __close_cached_mp_write_session() 475 (void)safe_write(ws, ¬ification, sizeof(int)); in __close_cached_mp_write_session()
|
| /src/contrib/ntp/ntpsnmpd/ |
| H A D | ntpv4-mib.mib | 664 "The interval at which the ntpEntNotifHeartbeat notification 675 notUsed(0), -- Used to sync up bit and 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, 728 "The notification to be sent when stratum level of NTP changes." 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 [all …]
|
| /src/tools/test/stress2/misc/ |
| H A D | machipc.sh | 115 MACH_PORT_NULL); /* No notification */ 177 MACH_PORT_NULL); /* No notification */
|
| H A D | machipc2.sh | 203 MACH_PORT_NULL); /* No notification */ 226 MACH_PORT_NULL); /* No notification */
|
| /src/contrib/wpa/src/eap_peer/ |
| H A D | eap_sim.c | 735 u8 id, u16 notification) in eap_sim_response_notification() argument 738 u8 *k_aut = (notification & 0x4000) == 0 ? data->k_aut : NULL; in eap_sim_response_notification() 1048 if (attr->notification == -1) { in eap_sim_process_notification() 1055 if ((attr->notification & 0x4000) == 0 && in eap_sim_process_notification() 1061 eap_sim_report_notification(sm->msg_ctx, attr->notification, 0); in eap_sim_process_notification() 1062 if (attr->notification >= 0 && attr->notification < 32768) { in eap_sim_process_notification() 1063 data->error_code = attr->notification; in eap_sim_process_notification() 1065 } else if (attr->notification == EAP_SIM_SUCCESS && in eap_sim_process_notification() 1068 return eap_sim_response_notification(data, id, attr->notification); in eap_sim_process_notification()
|
| H A D | eap_aka.c | 859 u8 id, u16 notification) in eap_aka_response_notification() argument 862 u8 *k_aut = (notification & 0x4000) == 0 ? data->k_aut : NULL; in eap_aka_response_notification() 1311 if (attr->notification == -1) { in eap_aka_process_notification() 1318 if ((attr->notification & 0x4000) == 0 && in eap_aka_process_notification() 1324 eap_sim_report_notification(sm->msg_ctx, attr->notification, 1); in eap_aka_process_notification() 1325 if (attr->notification >= 0 && attr->notification < 32768) { in eap_aka_process_notification() 1326 data->error_code = attr->notification; in eap_aka_process_notification() 1328 } else if (attr->notification == EAP_SIM_SUCCESS && in eap_aka_process_notification() 1331 return eap_aka_response_notification(data, id, attr->notification); in eap_aka_process_notification()
|
| /src/contrib/wpa/src/eap_common/ |
| H A D | eap_sim_common.c | 503 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 D | eap_sim_common.h | 196 int notification, counter, selected_version, client_error_code; member 228 void eap_sim_report_notification(void *msg_ctx, int notification, int aka);
|
| H A D | ikev2_common.h | 313 const u8 *notification; member
|
| /src/contrib/ntp/sntp/libevent/ |
| H A D | libevent.pc.in | 9 Description: libevent is an asynchronous notification event loop library
|
| /src/contrib/libevent/ |
| H A D | libevent.pc.in | 9 Description: libevent is an asynchronous notification event loop library
|
| /src/sys/contrib/device-tree/Bindings/arm/firmware/ |
| H A D | sdei.txt | 5 Linux to receive notification of events such as those generated by
|
| /src/sys/contrib/device-tree/src/arm/nxp/imx/ |
| H A D | imx7d-flex-concentrator.dts | 177 * Used for last gasp notification. 188 * Used for sealed cover opened/closed notification.
|
| /src/contrib/wpa/wpa_supplicant/ |
| H A D | README-NAN-USD | 119 Subscriber notification of a discovery: 123 Publisher notification of a Follow-up message with no ssi (to enter
|
| /src/sys/dev/isci/scil/ |
| H A D | intel_sata.h | 178 U32 notification :1; member
|
| /src/sys/contrib/device-tree/Bindings/mailbox/ |
| H A D | xlnx,zynqmp-ipi-mailbox.txt | 6 agent owns registers used for notification and buffers for message.
|
| /src/sys/netinet/ |
| H A D | sctp_input.c | 1335 struct sockaddr *init_src, int *notification, 1351 struct sockaddr *init_src, int *notification, in sctp_process_cookie_existing() argument 1508 *notification = SCTP_NOTIFY_ASSOC_UP; in sctp_process_cookie_existing() 1687 *notification = SCTP_NOTIFY_ASSOC_UP; in sctp_process_cookie_existing() 1741 inp, netp, init_src, notification, in sctp_process_cookie_existing() 1758 *notification = SCTP_NOTIFY_ASSOC_RESTART; in sctp_process_cookie_existing() 1959 struct sockaddr *init_src, int *notification, in sctp_process_cookie_new() argument 2163 *notification = SCTP_NOTIFY_ASSOC_UP; in sctp_process_cookie_new() 2257 int notification = 0; in sctp_handle_cookie_echo() local 2533 netp, to, ¬ification, in sctp_handle_cookie_echo() [all …]
|
| /src/contrib/libevent/cmake/ |
| H A D | UseDoxygen.cmake | 29 set(DOXYGEN_PROJECT_BRIEF "Event notification library")
|
| /src/contrib/ntp/sntp/libevent/cmake/ |
| H A D | UseDoxygen.cmake | 29 set(DOXYGEN_PROJECT_BRIEF "Event notification library")
|
| /src/sys/dev/usb/net/ |
| H A D | if_umb.c | 2788 struct usb_cdc_notification notification; in umb_intr() local 2809 usbd_copy_out(pc, 0, ¬ification, sizeof (notification)); in umb_intr() 2811 if (notification.bmRequestType != UCDC_NOTIFICATION) { in umb_intr() 2813 notification.bmRequestType); in umb_intr() 2817 switch (notification.bNotification) { in umb_intr() 2822 UGETW(notification.wValue) in umb_intr() 2838 notification.bNotification); in umb_intr()
|
| /src/sys/dev/dpaa2/ |
| H A D | dpaa2_swp_if.m | 59 * @brief Configure the channel data availability notification (CDAN)
|