Lines Matching defs:evt_key
371 scmi_get_active_handler(struct scmi_notify_instance *ni, u32 evt_key);
380 * @evt_key: The key to use to lookup the related notification chain
386 u32 evt_key, void *report)
397 hndl = scmi_get_active_handler(ni, evt_key);
402 KEY_XTRACT_EVT_ID(evt_key),
863 * @evt_key: 32bit key uniquely bind to the event identified by the tuple
876 scmi_allocate_event_handler(struct scmi_notify_instance *ni, u32 evt_key)
883 hndl->key = evt_key;
1019 * @evt_key: The event key to use
1048 u32 evt_key, bool create)
1053 r_evt = SCMI_GET_REVT(ni, KEY_XTRACT_PROTO_ID(evt_key),
1054 KEY_XTRACT_EVT_ID(evt_key));
1061 hndl, evt_key);
1069 hndl = KEY_FIND(ni->pending_events_handlers, hndl, evt_key);
1076 hndl = scmi_allocate_event_handler(ni, evt_key);
1092 scmi_get_handler(struct scmi_notify_instance *ni, u32 evt_key)
1094 return __scmi_event_handler_get_ops(ni, evt_key, false);
1098 scmi_get_or_create_handler(struct scmi_notify_instance *ni, u32 evt_key)
1100 return __scmi_event_handler_get_ops(ni, evt_key, true);
1106 * @evt_key: The event key to use
1115 scmi_get_active_handler(struct scmi_notify_instance *ni, u32 evt_key)
1120 r_evt = SCMI_GET_REVT(ni, KEY_XTRACT_PROTO_ID(evt_key),
1121 KEY_XTRACT_EVT_ID(evt_key));
1125 hndl, evt_key);
1347 u32 evt_key;
1355 evt_key = MAKE_HASH_KEY(proto_id, evt_id,
1357 hndl = scmi_get_or_create_handler(ni, evt_key);
1393 u32 evt_key;
1401 evt_key = MAKE_HASH_KEY(proto_id, evt_id,
1403 hndl = scmi_get_handler(ni, evt_key);