Lines Matching refs:innerEventId

98      * @param innerEventId The id of the event.
103 static Pointer Get(uint32_t innerEventId, int64_t param = 0, const Caller &caller = {});
108 * @param innerEventId The id of the event.
113 static Pointer Get(const EventId &innerEventId, int64_t param = 0, const Caller &caller = {});
118 * @param innerEventId The id of the event.
125 static inline Pointer Get(uint32_t innerEventId, const std::shared_ptr<T> &object,
128 auto event = Get(innerEventId, param, caller);
136 * @param innerEventId The id of the event.
143 static inline Pointer Get(const EventId &innerEventId, const std::shared_ptr<T> &object,
146 auto event = Get(innerEventId, param, caller);
154 * @param innerEventId The id of the event.
161 static inline Pointer Get(uint32_t innerEventId, const std::weak_ptr<T> &object,
164 auto event = Get(innerEventId, param, caller);
172 * @param innerEventId The id of the event.
179 static inline Pointer Get(const EventId &innerEventId, const std::weak_ptr<T> &object,
182 auto event = Get(innerEventId, param, caller);
190 * @param innerEventId The id of the event.
197 static inline Pointer Get(uint32_t innerEventId, std::unique_ptr<T, D> &&object,
200 auto event = Get(innerEventId, param, caller);
208 * @param innerEventId The id of the event.
215 static inline Pointer Get(const EventId &innerEventId, std::unique_ptr<T, D> &&object,
218 auto event = Get(innerEventId, param, caller);
226 * @param innerEventId The id of the event.
233 static inline Pointer Get(uint32_t innerEventId, std::unique_ptr<T, D> &object,
236 auto event = Get(innerEventId, param, caller);
244 * @param innerEventId The id of the event.
251 static inline Pointer Get(const EventId &innerEventId, std::unique_ptr<T, D> &object,
254 auto event = Get(innerEventId, param, caller);
262 * @param innerEventId The id of the event.
269 static inline Pointer Get(uint32_t innerEventId, int64_t param, const std::shared_ptr<T> &object,
272 auto event = Get(innerEventId, param, caller);
280 * @param innerEventId The id of the event.
287 static inline Pointer Get(const EventId &innerEventId, int64_t param, const std::shared_ptr<T> &object,
290 auto event = Get(innerEventId, param, caller);
298 * @param innerEventId The id of the event.
305 static inline Pointer Get(uint32_t innerEventId, int64_t param, const std::weak_ptr<T> &object,
308 auto event = Get(innerEventId, param, caller);
316 * @param innerEventId The id of the event.
323 static inline Pointer Get(const EventId &innerEventId, int64_t param, const std::weak_ptr<T> &object,
326 auto event = Get(innerEventId, param, caller);
334 * @param innerEventId The id of the event.
341 static inline Pointer Get(uint32_t innerEventId, int64_t param, std::unique_ptr<T, D> &&object,
344 auto event = Get(innerEventId, param, caller);
352 * @param innerEventId The id of the event.
359 static inline Pointer Get(const EventId &innerEventId, int64_t param, std::unique_ptr<T, D> &&object,
362 auto event = Get(innerEventId, param, caller);
370 * @param innerEventId The id of the event.
377 static inline Pointer Get(uint32_t innerEventId, int64_t param, std::unique_ptr<T, D> &object,
380 auto event = Get(innerEventId, param, caller);
388 * @param innerEventId The id of the event.
395 static inline Pointer Get(const EventId &innerEventId, int64_t param, std::unique_ptr<T, D> &object,
398 auto event = Get(innerEventId, param, caller);