/base/hiviewdfx/hitrace/interfaces/js/kits/napi/src/ |
D | napi_hitrace_js.cpp | 69 napi_value thisArg = nullptr; in Begin() local 71 NAPI_CALL(env, napi_get_cb_info(env, info, ¶mNum, params, &thisArg, &data)); in Begin() 101 napi_value thisArg = nullptr; in End() local 103 NAPI_CALL(env, napi_get_cb_info(env, info, ¶mNum, params, &thisArg, &data)); in End() 130 napi_value thisArg = nullptr; in SetId() local 132 NAPI_CALL(env, napi_get_cb_info(env, info, ¶mNum, params, &thisArg, &data)); in SetId() 165 napi_value thisArg = nullptr; in Tracepoint() local 167 NAPI_CALL(env, napi_get_cb_info(env, info, ¶mNum, params, &thisArg, &data)); in Tracepoint() 205 napi_value thisArg = nullptr; in IsValid() local 207 NAPI_CALL(env, napi_get_cb_info(env, info, ¶mNum, params, &thisArg, &data)); in IsValid() [all …]
|
D | napi_hitrace_init.cpp | 34 napi_value thisArg = nullptr; in ClassConstructor() local 36 napi_get_cb_info(env, info, &argc, &argv, &thisArg, &data); in ClassConstructor() 41 return thisArg; in ClassConstructor()
|
/base/powermgr/power_manager/frameworks/napi/runninglock/ |
D | runninglock_interface.cpp | 40 napi_value thisArg = nullptr; in CreateRunningLock() local 43 napi_status status = napi_get_cb_info(env, info, &argc, argv, &thisArg, &data); in CreateRunningLock() 86 napi_value thisArg = nullptr; in IsRunningLockTypeSupported() local 89 napi_status status = napi_get_cb_info(env, info, &argc, argv, &thisArg, &data); in IsRunningLockTypeSupported() 127 napi_value thisArg = nullptr; in Lock() local 130 napi_status status = napi_get_cb_info(env, info, &argc, args, &thisArg, &data); in Lock() 143 status = napi_unwrap(env, thisArg, (void**)&entity); in Lock() 158 napi_value thisArg = nullptr; in IsUsed() local 162 napi_status status = napi_get_cb_info(env, info, nullptr, nullptr, &thisArg, &data); in IsUsed() 166 status = napi_unwrap(env, thisArg, (void**)&entity); in IsUsed() [all …]
|
D | runninglock_napi.cpp | 88 napi_value thisArg = NapiUtils::GetCallbackInfo(env, info, argc, argv); in Hold() local 99 auto runningLock = UnwrapRunningLock(env, thisArg); in Hold() 109 napi_value thisArg = NapiUtils::GetCallbackInfo(env, info, argc, nullptr); in IsHolding() local 110 auto runningLock = UnwrapRunningLock(env, thisArg); in IsHolding() 121 napi_value thisArg = NapiUtils::GetCallbackInfo(env, info, argc, nullptr); in UnHold() local 122 auto runningLock = UnwrapRunningLock(env, thisArg); in UnHold() 212 std::shared_ptr<RunningLock> RunningLockNapi::UnwrapRunningLock(napi_env& env, napi_value& thisArg) in UnwrapRunningLock() argument 215 if (napi_ok != napi_unwrap(env, thisArg, (void**)&entity)) { in UnwrapRunningLock()
|
D | runninglock_module.cpp | 80 napi_value thisArg = nullptr; in RunningLockTypeConstructor() local 82 napi_get_cb_info(env, info, nullptr, nullptr, &thisArg, &data); in RunningLockTypeConstructor() 85 return thisArg; in RunningLockTypeConstructor()
|
D | runninglock_napi.h | 45 static std::shared_ptr<RunningLock> UnwrapRunningLock(napi_env& env, napi_value& thisArg);
|
/base/powermgr/battery_manager/frameworks/js/napi/ |
D | battery_info.cpp | 181 napi_value thisArg = nullptr; in EnumHealthClassConstructor() local 184 napi_get_cb_info(env, info, nullptr, nullptr, &thisArg, &data); in EnumHealthClassConstructor() 189 return thisArg; in EnumHealthClassConstructor() 194 napi_value thisArg = nullptr; in EnumLevelClassConstructor() local 197 napi_get_cb_info(env, info, nullptr, nullptr, &thisArg, &data); in EnumLevelClassConstructor() 202 return thisArg; in EnumLevelClassConstructor() 276 napi_value thisArg = nullptr; in EnumChargeClassConstructor() local 279 napi_get_cb_info(env, info, nullptr, nullptr, &thisArg, &data); in EnumChargeClassConstructor() 284 return thisArg; in EnumChargeClassConstructor() 317 napi_value thisArg = nullptr; in EnumPluggedClassConstructor() local [all …]
|
/base/hiviewdfx/hisysevent/interfaces/js/kits/napi/src/ |
D | napi_hisysevent_js.cpp | 59 napi_value thisArg = nullptr; in Write() local 61 NAPI_CALL(env, napi_get_cb_info(env, info, ¶mNum, params, &thisArg, &data)); in Write() 106 napi_value thisArg = nullptr; in AddWatcher() local 108 NAPI_CALL(env, napi_get_cb_info(env, info, ¶mNum, params, &thisArg, &data)); in AddWatcher() 141 napi_value thisArg = nullptr; in RemoveWatcher() local 143 NAPI_CALL(env, napi_get_cb_info(env, info, ¶mNum, params, &thisArg, &data)); in RemoveWatcher() 169 napi_value thisArg = nullptr; in Query() local 171 NAPI_CALL(env, napi_get_cb_info(env, info, ¶mNum, params, &thisArg, &data)); in Query()
|
D | napi_hisysevent_init.cpp | 34 napi_value thisArg = nullptr; in ClassConstructor() local 36 napi_get_cb_info(env, info, &argc, &argv, &thisArg, &data); in ClassConstructor() 41 return thisArg; in ClassConstructor()
|
/base/hiviewdfx/hilog/interfaces/js/kits/napi/src/hilog/src/ |
D | hilog_napi.cpp | 32 napi_value thisArg = nullptr; in LogLevelTypeConstructor() local 35 napi_get_cb_info(env, info, nullptr, nullptr, &thisArg, &data); in LogLevelTypeConstructor() 40 return thisArg; in LogLevelTypeConstructor()
|
/base/powermgr/power_manager/frameworks/napi/power/ |
D | power_module.cpp | 29 napi_value thisArg = nullptr; in EnumPowerModeClassConstructor() local 32 napi_get_cb_info(env, info, nullptr, nullptr, &thisArg, &data); in EnumPowerModeClassConstructor() 37 return thisArg; in EnumPowerModeClassConstructor()
|
D | power.cpp | 176 napi_value thisArg = nullptr; in SuspendDevice() local 179 napi_status status = napi_get_cb_info(env, info, nullptr, nullptr, &thisArg, &data); in SuspendDevice()
|
/base/hiviewdfx/hiappevent/frameworks/js/napi/src/ |
D | napi_hiappevent_init.cpp | 41 napi_value thisArg = nullptr; in ClassConstructor() local 43 napi_get_cb_info(env, info, &argc, &argv, &thisArg, &data); in ClassConstructor() 48 return thisArg; in ClassConstructor()
|
/base/customization/enterprise_device_management/interfaces/kits/admin_manager/src/ |
D | admin_manager_addon.cpp | 34 napi_value thisArg = nullptr; in EnableAdmin() local 38 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in EnableAdmin() 171 napi_value thisArg = nullptr; in DisableAdmin() local 173 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in DisableAdmin() 228 napi_value thisArg = nullptr; in DisableSuperAdmin() local 230 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in DisableSuperAdmin() 276 napi_value thisArg = nullptr; in GetEnterpriseInfo() local 278 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in GetEnterpriseInfo() 367 napi_value thisArg = nullptr; in SetEnterpriseInfo() local 369 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in SetEnterpriseInfo() [all …]
|
/base/customization/enterprise_device_management/interfaces/kits/datetime_manager/src/ |
D | datetime_manager_addon.cpp | 34 napi_value thisArg = nullptr; in SetDateTime() local 36 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in SetDateTime()
|
/base/powermgr/battery_statistics/frameworks/js/napi/src/ |
D | battery_stats_module.cpp | 83 napi_value thisArg = nullptr; in EnumStatsTypeConstructor() local 85 napi_get_cb_info(env, info, nullptr, nullptr, &thisArg, &data); in EnumStatsTypeConstructor() 88 return thisArg; in EnumStatsTypeConstructor()
|
/base/hiviewdfx/hiview/plugins/faultlogger/interfaces/js/napi/ |
D | napi_faultlogger.cpp | 299 napi_value thisArg = nullptr; in FaultLogTypeConstructor() local 302 napi_get_cb_info(env, info, nullptr, nullptr, &thisArg, &data); in FaultLogTypeConstructor() 307 return thisArg; in FaultLogTypeConstructor() 338 napi_value thisArg = nullptr; in FaultLogInfoConstructor() local 341 napi_get_cb_info(env, info, nullptr, nullptr, &thisArg, &data); in FaultLogInfoConstructor() 346 return thisArg; in FaultLogInfoConstructor()
|
/base/telephony/call_manager/frameworks/js/napi/src/ |
D | napi_call_manager_utils.cpp | 268 napi_value thisArg = nullptr; in CreateEnumConstructor() local 270 napi_get_cb_info(env, info, nullptr, nullptr, &thisArg, &data); in CreateEnumConstructor() 273 return thisArg; in CreateEnumConstructor()
|
/base/sensors/miscdevice/interfaces/plugin/vibrator/src/ |
D | vibrator_js.cpp | 241 napi_value thisArg = nullptr; in Vibrate() local 242 napi_status status = napi_get_cb_info(env, info, &argc, args, &thisArg, nullptr); in Vibrate() 263 napi_value thisArg = nullptr; in Stop() local 264 napi_status status = napi_get_cb_info(env, info, &argc, args, &thisArg, nullptr); in Stop()
|
/base/notification/eventhandler/frameworks/napi/src/ |
D | events_emitter.cpp | 457 napi_value thisArg = nullptr; in EnumEventClassConstructor() local 460 napi_get_cb_info(env, info, nullptr, nullptr, &thisArg, &data); in EnumEventClassConstructor() 465 return thisArg; in EnumEventClassConstructor()
|
/base/telephony/cellular_data/frameworks/js/napi/src/ |
D | napi_cellular_data.cpp | 809 napi_value thisArg = nullptr; in CreateEnumConstructor() local 811 napi_get_cb_info(env, info, nullptr, nullptr, &thisArg, &data); in CreateEnumConstructor() 814 return thisArg; in CreateEnumConstructor()
|
/base/telephony/sms_mms/frameworks/js/napi/src/ |
D | napi_sms.cpp | 1531 napi_value thisArg = nullptr; in CreateEnumConstructor() local 1534 napi_get_cb_info(env, info, nullptr, nullptr, &thisArg, &data); in CreateEnumConstructor() 1537 return thisArg; in CreateEnumConstructor()
|
D | napi_mms.cpp | 1429 napi_value thisArg = nullptr; in CreateEnumConstructor() local 1431 napi_get_cb_info(env, info, nullptr, nullptr, &thisArg, &data); in CreateEnumConstructor() 1434 return thisArg; in CreateEnumConstructor()
|
/base/telephony/core_service/frameworks/js/network_search/src/ |
D | napi_radio.cpp | 2673 napi_value thisArg = nullptr; in CreateEnumConstructor() local 2675 napi_get_cb_info(env, info, nullptr, nullptr, &thisArg, &data); in CreateEnumConstructor() 2678 return thisArg; in CreateEnumConstructor()
|