Searched refs:NapiNativeBool (Results 1 – 4 of 4) sorted by relevance
101 return NapiAsyncWorkRet(err, std::make_shared<NapiNativeBool>(true)); in IsWearDetectionEnabled()103 return NapiAsyncWorkRet(err, std::make_shared<NapiNativeBool>(false)); in IsWearDetectionEnabled()124 return NapiAsyncWorkRet(err, std::make_shared<NapiNativeBool>(isSupported)); in IsWearDetectionSupported()
49 class NapiNativeBool : public NapiNativeObject {51 explicit NapiNativeBool(bool value) : value_(value) {} in NapiNativeBool() function52 ~NapiNativeBool() override = default;
474 return NapiAsyncWorkRet(err, std::make_shared<NapiNativeBool>(false)); in IsAbsoluteVolumeSupported()476 return NapiAsyncWorkRet(err, std::make_shared<NapiNativeBool>(true)); in IsAbsoluteVolumeSupported()496 return NapiAsyncWorkRet(err, std::make_shared<NapiNativeBool>(true)); in IsAbsoluteVolumeEnabled()498 return NapiAsyncWorkRet(err, std::make_shared<NapiNativeBool>(false)); in IsAbsoluteVolumeEnabled()
33 napi_value NapiNativeBool::ToNapiValue(napi_env env) const in ToNapiValue()