Lines Matching refs:thisVal
38 napi_value thisVal = nullptr; in OnManagerWrapper() local
41 NAPI_CALL(env, napi_get_cb_info(env, info, ¶msCount, params, &thisVal, nullptr)); in OnManagerWrapper()
56 auto napiRet = napi_unwrap(env, thisVal, reinterpret_cast<void **>(&wrapper)); in OnManagerWrapper()
80 napi_value thisVal = nullptr; in OnceManagerWrapper() local
83 NAPI_CALL(env, napi_get_cb_info(env, info, ¶msCount, params, &thisVal, nullptr)); in OnceManagerWrapper()
97 auto napiRet = napi_unwrap(env, thisVal, reinterpret_cast<void **>(&wrapper)); in OnceManagerWrapper()
116 napi_value thisVal = nullptr; in OffManagerWrapper() local
119 NAPI_CALL(env, napi_get_cb_info(env, info, ¶msCount, params, &thisVal, nullptr)); in OffManagerWrapper()
140 auto napiRet = napi_unwrap(env, thisVal, reinterpret_cast<void **>(&wrapper)); in OffManagerWrapper()
168 napi_value thisVal = nullptr; in OnSharedManager() local
171 NAPI_CALL(env, napi_get_cb_info(env, info, ¶msCount, params, &thisVal, nullptr)); in OnSharedManager()
186 auto napiRet = napi_unwrap(env, thisVal, reinterpret_cast<void **>(&sharedManager)); in OnSharedManager()
210 napi_value thisVal = nullptr; in OnceSharedManager() local
213 NAPI_CALL(env, napi_get_cb_info(env, info, ¶msCount, params, &thisVal, nullptr)); in OnceSharedManager()
227 auto napiRet = napi_unwrap(env, thisVal, reinterpret_cast<void **>(&sharedManager)); in OnceSharedManager()
246 napi_value thisVal = nullptr; in OffSharedManager() local
249 NAPI_CALL(env, napi_get_cb_info(env, info, ¶msCount, params, &thisVal, nullptr)); in OffSharedManager()
270 auto napiRet = napi_unwrap(env, thisVal, reinterpret_cast<void **>(&sharedManager)); in OffSharedManager()
298 napi_value thisVal = nullptr; in On() local
301 NAPI_CALL(env, napi_get_cb_info(env, info, ¶msCount, params, &thisVal, nullptr)); in On()
316 napi_unwrap(env, thisVal, reinterpret_cast<void **>(&manager)); in On()
327 napi_value thisVal = nullptr; in Once() local
330 NAPI_CALL(env, napi_get_cb_info(env, info, ¶msCount, params, &thisVal, nullptr)); in Once()
344 napi_unwrap(env, thisVal, reinterpret_cast<void **>(&manager)); in Once()
354 napi_value thisVal = nullptr; in Off() local
357 NAPI_CALL(env, napi_get_cb_info(env, info, ¶msCount, params, &thisVal, nullptr)); in Off()
378 napi_unwrap(env, thisVal, reinterpret_cast<void **>(&manager)); in Off()
394 napi_value thisVal = nullptr; in DefineClass() local
395 NAPI_CALL(env, napi_get_cb_info(env, info, nullptr, nullptr, &thisVal, nullptr)); in DefineClass()
397 return thisVal; in DefineClass()
416 napi_value thisVal = nullptr; in NewInstanceWithManagerWrapper() local
417 NAPI_CALL(env, napi_get_cb_info(env, info, nullptr, nullptr, &thisVal, nullptr)); in NewInstanceWithManagerWrapper()
434 manager->CreateEventReference(env, thisVal); in NewInstanceWithManagerWrapper()
445 napi_value thisVal = nullptr; in NewInstanceWithSharedManager() local
446 NAPI_CALL(env, napi_get_cb_info(env, info, nullptr, nullptr, &thisVal, nullptr)); in NewInstanceWithSharedManager()
466 manager->CreateEventReference(env, thisVal); in NewInstanceWithSharedManager()
476 napi_value thisVal = nullptr; in NewInstance() local
477 NAPI_CALL(env, napi_get_cb_info(env, info, nullptr, nullptr, &thisVal, nullptr)); in NewInstance()
493 manager->CreateEventReference(env, thisVal); in NewInstance()
502 napi_value thisVal = nullptr; in NewInstanceNoManager() local
503 NAPI_CALL(env, napi_get_cb_info(env, info, nullptr, nullptr, &thisVal, nullptr)); in NewInstanceNoManager()
504 (void)thisVal; in NewInstanceNoManager()