Lines Matching defs:evt_key
368 scmi_get_active_handler(struct scmi_notify_instance *ni, u32 evt_key);
377 * @evt_key: The key to use to lookup the related notification chain
383 u32 evt_key, void *report)
394 hndl = scmi_get_active_handler(ni, evt_key);
399 KEY_XTRACT_EVT_ID(evt_key),
839 * @evt_key: 32bit key uniquely bind to the event identified by the tuple
852 scmi_allocate_event_handler(struct scmi_notify_instance *ni, u32 evt_key)
859 hndl->key = evt_key;
983 * @evt_key: The event key to use
1012 u32 evt_key, bool create)
1017 r_evt = SCMI_GET_REVT(ni, KEY_XTRACT_PROTO_ID(evt_key),
1018 KEY_XTRACT_EVT_ID(evt_key));
1025 hndl, evt_key);
1033 hndl = KEY_FIND(ni->pending_events_handlers, hndl, evt_key);
1040 hndl = scmi_allocate_event_handler(ni, evt_key);
1056 scmi_get_handler(struct scmi_notify_instance *ni, u32 evt_key)
1058 return __scmi_event_handler_get_ops(ni, evt_key, false);
1062 scmi_get_or_create_handler(struct scmi_notify_instance *ni, u32 evt_key)
1064 return __scmi_event_handler_get_ops(ni, evt_key, true);
1070 * @evt_key: The event key to use
1079 scmi_get_active_handler(struct scmi_notify_instance *ni, u32 evt_key)
1084 r_evt = SCMI_GET_REVT(ni, KEY_XTRACT_PROTO_ID(evt_key),
1085 KEY_XTRACT_EVT_ID(evt_key));
1089 hndl, evt_key);
1287 u32 evt_key;
1297 evt_key = MAKE_HASH_KEY(proto_id, evt_id,
1299 hndl = scmi_get_or_create_handler(ni, evt_key);
1335 u32 evt_key;
1345 evt_key = MAKE_HASH_KEY(proto_id, evt_id,
1347 hndl = scmi_get_handler(ni, evt_key);