Searched defs:EventListener (Results 1 – 5 of 5) sorted by relevance
27 struct EventListener { struct28 napi_env env;29 napi_value thisVar = nullptr;30 napi_ref callbackRef = nullptr;31 napi_deferred deferred = nullptr;32 napi_async_work work = nullptr;33 Action action;
26 struct EventListener { struct27 napi_env env = nullptr;28 TelephonyUpdateEventType eventType = TelephonyUpdateEventType::NONE_EVENT_TYPE;29 int32_t slotId = 0;30 napi_ref callbackRef = nullptr;31 std::shared_ptr<bool> isDeleting = nullptr;
159 struct EventListener { struct160 TelephonyUpdateEventType eventType = TelephonyUpdateEventType::NONE_EVENT_TYPE;161 int32_t slotId = 0;162 int64_t funcId;163 std::function<void(void*)> callbackRef;164 std::shared_ptr<bool> isDeleting = nullptr;
257 EventListener() {}; in EventListener() function
240 class EventListener : public IEventListener { class