Lines Matching refs:thisVal
50 napi_value thisVal = nullptr; in InterfaceWithManagerWrapper() local
53 NAPI_CALL(env, napi_get_cb_info(env, info, ¶msCount, params, &thisVal, nullptr)); in InterfaceWithManagerWrapper()
56 auto napi_ret = napi_unwrap(env, thisVal, reinterpret_cast<void **>(&wrapper)); in InterfaceWithManagerWrapper()
78 if (!Work(env, thisVal, context)) { in InterfaceWithManagerWrapper()
83 context->CreateReference(thisVal); in InterfaceWithManagerWrapper()
100 napi_value thisVal = nullptr; in InterfaceWithSharedManager() local
103 NAPI_CALL(env, napi_get_cb_info(env, info, ¶msCount, params, &thisVal, nullptr)); in InterfaceWithSharedManager()
106 auto napi_ret = napi_unwrap(env, thisVal, reinterpret_cast<void **>(&sharedManager)); in InterfaceWithSharedManager()
128 if (!Work(env, thisVal, context)) { in InterfaceWithSharedManager()
133 context->CreateReference(thisVal); in InterfaceWithSharedManager()
150 napi_value thisVal = nullptr; in InterfaceWithOutAsyncWorkWithManagerWrapper() local
153 NAPI_CALL(env, napi_get_cb_info(env, info, ¶msCount, params, &thisVal, nullptr)); in InterfaceWithOutAsyncWorkWithManagerWrapper()
156 auto napi_ret = napi_unwrap(env, thisVal, reinterpret_cast<void **>(&wrapper)); in InterfaceWithOutAsyncWorkWithManagerWrapper()
178 context->CreateReference(thisVal); in InterfaceWithOutAsyncWorkWithManagerWrapper()
180 if (!Work(env, thisVal, context)) { in InterfaceWithOutAsyncWorkWithManagerWrapper()
199 napi_value thisVal = nullptr; in InterfaceWithOutAsyncWorkWithSharedManager() local
202 NAPI_CALL(env, napi_get_cb_info(env, info, ¶msCount, params, &thisVal, nullptr)); in InterfaceWithOutAsyncWorkWithSharedManager()
205 auto napi_ret = napi_unwrap(env, thisVal, reinterpret_cast<void **>(&sharedManager)); in InterfaceWithOutAsyncWorkWithSharedManager()
227 context->CreateReference(thisVal); in InterfaceWithOutAsyncWorkWithSharedManager()
229 if (!Work(env, thisVal, context)) { in InterfaceWithOutAsyncWorkWithSharedManager()
248 napi_value thisVal = nullptr; in Interface() local
251 NAPI_CALL(env, napi_get_cb_info(env, info, ¶msCount, params, &thisVal, nullptr)); in Interface()
254 auto napi_ret = napi_unwrap(env, thisVal, reinterpret_cast<void **>(&manager)); in Interface()
273 if (!Work(env, thisVal, context)) { in Interface()
278 context->CreateReference(thisVal); in Interface()
294 napi_value thisVal = nullptr; in InterfaceWithOutAsyncWork() local
297 NAPI_CALL(env, napi_get_cb_info(env, info, ¶msCount, params, &thisVal, nullptr)); in InterfaceWithOutAsyncWork()
300 auto napi_ret = napi_unwrap(env, thisVal, reinterpret_cast<void **>(&manager)); in InterfaceWithOutAsyncWork()
319 context->CreateReference(thisVal); in InterfaceWithOutAsyncWork()
321 if (!Work(env, thisVal, context)) { in InterfaceWithOutAsyncWork()