Home
last modified time | relevance | path

Searched refs:thisArg (Results 1 - 25 of 45) sorted by relevance

12

/base/customization/enterprise_device_management/interfaces/kits/bluetooth_manager/src/
H A Dbluetooth_manager_addon.cpp45 napi_value thisArg = nullptr; in GetBluetoothInfo() local
48 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in GetBluetoothInfo()
89 napi_value thisArg = nullptr; in SetBluetoothDisabled() local
92 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in SetBluetoothDisabled()
122 napi_value thisArg = nullptr; in IsBluetoothDisabled() local
124 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in IsBluetoothDisabled()
157 napi_value thisArg = nullptr; in GetAllowedBluetoothDevices() local
161 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in GetAllowedBluetoothDevices()
201 napi_value thisArg = nullptr; in AddOrRemoveBluetoothDevices() local
204 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, in AddOrRemoveBluetoothDevices()
[all...]
/base/customization/enterprise_device_management/interfaces/kits/device_control/src/
H A Ddevice_control_addon.cpp43 napi_value thisArg = nullptr; in ResetFactory() local
45 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in ResetFactory()
78 napi_value thisArg = nullptr; in LockScreen() local
80 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in LockScreen()
110 napi_value thisArg = nullptr; in Shutdown() local
112 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in Shutdown()
135 napi_value thisArg = nullptr; in Reboot() local
137 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in Reboot()
176 napi_value thisArg = nullptr; in OperateDevice() local
178 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, in OperateDevice()
[all...]
/base/hiviewdfx/hitrace/interfaces/js/kits/napi/src/
H A Dnapi_hitrace_js.cpp73 napi_value thisArg = nullptr; in Begin() local
75 NAPI_CALL(env, napi_get_cb_info(env, info, &paramNum, params, &thisArg, &data)); in Begin()
105 napi_value thisArg = nullptr; in End() local
107 NAPI_CALL(env, napi_get_cb_info(env, info, &paramNum, params, &thisArg, &data)); in End()
134 napi_value thisArg = nullptr; in SetId() local
136 NAPI_CALL(env, napi_get_cb_info(env, info, &paramNum, params, &thisArg, &data)); in SetId()
169 napi_value thisArg = nullptr; in Tracepoint() local
171 NAPI_CALL(env, napi_get_cb_info(env, info, &paramNum, params, &thisArg, &data)); in Tracepoint()
209 napi_value thisArg = nullptr; in IsValid() local
211 NAPI_CALL(env, napi_get_cb_info(env, info, &paramNum, params, &thisArg, in IsValid()
234 napi_value thisArg = nullptr; IsFlagEnabled() local
265 napi_value thisArg = nullptr; EnableFlag() local
[all...]
/base/powermgr/power_manager/frameworks/napi/runninglock/
H A Drunninglock_interface.cpp44 napi_value thisArg = nullptr; in CreateRunningLock() local
47 napi_status status = napi_get_cb_info(env, info, &argc, argv, &thisArg, &data); in CreateRunningLock()
91 napi_value thisArg = nullptr; in IsRunningLockTypeSupported() local
94 napi_status status = napi_get_cb_info(env, info, &argc, argv, &thisArg, &data); in IsRunningLockTypeSupported()
132 napi_value thisArg = nullptr; in Lock() local
135 napi_status status = napi_get_cb_info(env, info, &argc, args, &thisArg, &data); in Lock()
148 status = napi_unwrap(env, thisArg, (void**)&entity); in Lock()
164 napi_value thisArg = nullptr; in IsUsed() local
168 napi_status status = napi_get_cb_info(env, info, nullptr, nullptr, &thisArg, &data); in IsUsed()
172 status = napi_unwrap(env, thisArg, (voi in IsUsed()
188 napi_value thisArg = nullptr; Unlock() local
[all...]
H A Drunninglock_napi.cpp89 napi_value thisArg = NapiUtils::GetCallbackInfo(env, info, argc, argv); in Hold() local
100 auto runningLock = UnwrapRunningLock(env, thisArg); in Hold()
113 napi_value thisArg = NapiUtils::GetCallbackInfo(env, info, argc, nullptr); in IsHolding() local
114 auto runningLock = UnwrapRunningLock(env, thisArg); in IsHolding()
125 napi_value thisArg = NapiUtils::GetCallbackInfo(env, info, argc, nullptr); in UnHold() local
126 auto runningLock = UnwrapRunningLock(env, thisArg); in UnHold()
220 std::shared_ptr<RunningLock> RunningLockNapi::UnwrapRunningLock(napi_env& env, napi_value& thisArg) in UnwrapRunningLock() argument
223 if (napi_ok != napi_unwrap(env, thisArg, (void**)&entity)) { in UnwrapRunningLock()
H A Drunninglock_module.cpp80 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()
/base/powermgr/battery_manager/frameworks/napi/src/
H A Dcharger.cpp30 napi_value thisArg = nullptr; in EnumChargeTypeClassConstructor() local
33 napi_get_cb_info(env, info, nullptr, nullptr, &thisArg, &data); in EnumChargeTypeClassConstructor()
38 return thisArg; in EnumChargeTypeClassConstructor()
H A Dbattery_info.cpp276 napi_value thisArg = nullptr; in EnumHealthClassConstructor() local
279 napi_get_cb_info(env, info, nullptr, nullptr, &thisArg, &data); in EnumHealthClassConstructor()
284 return thisArg; in EnumHealthClassConstructor()
289 napi_value thisArg = nullptr; in EnumLevelClassConstructor() local
292 napi_get_cb_info(env, info, nullptr, nullptr, &thisArg, &data); in EnumLevelClassConstructor()
297 return thisArg; in EnumLevelClassConstructor()
371 napi_value thisArg = nullptr; in EnumChargeClassConstructor() local
374 napi_get_cb_info(env, info, nullptr, nullptr, &thisArg, &data); in EnumChargeClassConstructor()
379 return thisArg; in EnumChargeClassConstructor()
412 napi_value thisArg in EnumPluggedClassConstructor() local
453 napi_value thisArg = nullptr; EnumEventChangedCodeConstructor() local
[all...]
/base/customization/enterprise_device_management/interfaces/kits/security_manager/src/
H A Dsecurity_manager_addon.cpp61 napi_value thisArg = nullptr; in GetSecurityPatchTag() local
65 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in GetSecurityPatchTag()
92 napi_value thisArg = nullptr; in GetDeviceEncryptionStatus() local
95 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in GetDeviceEncryptionStatus()
131 napi_value thisArg = nullptr; in SetPasswordPolicy() local
134 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in SetPasswordPolicy()
168 napi_value thisArg = nullptr; in GetPasswordPolicy() local
171 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in GetPasswordPolicy()
207 napi_value thisArg = nullptr; in GetSecurityStatus() local
210 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, in GetSecurityStatus()
272 napi_value thisArg = nullptr; InstallUserCertificate() local
320 napi_value thisArg = nullptr; UninstallUserCertificate() local
382 napi_value thisArg = nullptr; SetAppClipboardPolicy() local
413 napi_value thisArg = nullptr; GetAppClipboardPolicy() local
464 napi_value thisArg = nullptr; SetWatermarkImage() local
511 napi_value thisArg = nullptr; CancelWatermarkImage() local
[all...]
/base/hiviewdfx/hisysevent/interfaces/js/kits/napi/src/
H A Dnapi_hisysevent_js.cpp76 napi_value thisArg = nullptr; in Write() local
78 NAPI_CALL(env, napi_get_cb_info(env, info, &paramNum, params, &thisArg, &data)); in Write()
128 napi_value thisArg = nullptr; in AddWatcher() local
130 NAPI_CALL(env, napi_get_cb_info(env, info, &paramNum, params, &thisArg, &data)); in AddWatcher()
168 napi_value thisArg = nullptr; in RemoveWatcher() local
170 NAPI_CALL(env, napi_get_cb_info(env, info, &paramNum, params, &thisArg, &data)); in RemoveWatcher()
202 napi_value thisArg = nullptr; in Query() local
204 NAPI_CALL(env, napi_get_cb_info(env, info, &paramNum, params, &thisArg, &data)); in Query()
264 napi_value thisArg = nullptr; in ExportSysEvents() local
266 NAPI_CALL(env, napi_get_cb_info(env, info, &paramNum, params, &thisArg, in ExportSysEvents()
308 napi_value thisArg = nullptr; Subscribe() local
[all...]
H A Dnapi_hisysevent_init.cpp33 napi_value thisArg = nullptr; in ClassConstructor() local
35 napi_get_cb_info(env, info, &argc, &argv, &thisArg, &data); in ClassConstructor()
40 return thisArg; in ClassConstructor()
/base/customization/enterprise_device_management/interfaces/kits/application_manager/src/
H A Dapplication_manager_addon.cpp58 napi_value thisArg = nullptr; in AddOrRemoveAutoStartApps() local
62 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in AddOrRemoveAutoStartApps()
93 napi_value thisArg = nullptr; in GetAutoStartApps() local
97 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in GetAutoStartApps()
139 napi_value thisArg = nullptr; in GetDisallowedRunningBundles() local
141 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in GetDisallowedRunningBundles()
268 napi_value thisArg = nullptr; in AddOrRemovellowedRunningBundles() local
272 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in AddOrRemovellowedRunningBundles()
345 napi_value thisArg = nullptr; in AddOrRemoveDisallowedRunningBundlesSync() local
347 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, in AddOrRemoveDisallowedRunningBundlesSync()
396 napi_value thisArg = nullptr; GetDisallowedRunningBundlesSync() local
[all...]
/base/customization/enterprise_device_management/interfaces/kits/network_manager/src/
H A Dnetwork_manager_addon.cpp139 napi_value thisArg = nullptr; in GetAllNetworkInterfaces() local
141 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in GetAllNetworkInterfaces()
203 napi_value thisArg = nullptr; in GetIpOrMacAddress() local
205 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in GetIpOrMacAddress()
259 napi_value thisArg = nullptr; in SetNetworkInterfaceDisabled() local
261 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in SetNetworkInterfaceDisabled()
316 napi_value thisArg = nullptr; in IsNetworkInterfaceDisabled() local
318 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in IsNetworkInterfaceDisabled()
372 napi_value thisArg = nullptr; in AddIptablesFilterRule() local
374 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, in AddIptablesFilterRule()
455 napi_value thisArg = nullptr; RemoveIptablesFilterRule() local
528 napi_value thisArg = nullptr; ListIptablesFilterRules() local
576 napi_value thisArg = nullptr; AddFirewallRule() local
604 napi_value thisArg = nullptr; RemoveFirewallRule() local
634 napi_value thisArg = nullptr; GetFirewallRules() local
739 napi_value thisArg = nullptr; AddDomainFilterRule() local
765 napi_value thisArg = nullptr; RemoveDomainFilterRule() local
796 napi_value thisArg = nullptr; GetDomainFilterRules() local
863 napi_value thisArg = nullptr; SetGlobalHttpProxy() local
1042 napi_value thisArg = nullptr; GetGlobalHttpProxy() local
1147 napi_value thisArg = nullptr; GetAllNetworkInterfacesSync() local
1192 napi_value thisArg = nullptr; GetIpOrMacAddressSync() local
1230 napi_value thisArg = nullptr; SetNetworkInterfaceDisabledSync() local
1270 napi_value thisArg = nullptr; IsNetworkInterfaceDisabledSync() local
1309 napi_value thisArg = nullptr; SetGlobalHttpProxySync() local
1350 napi_value thisArg = nullptr; GetGlobalHttpProxySync() local
[all...]
/base/sensors/miscdevice/frameworks/js/napi/vibrator/src/
H A Dvibrator_pattern_js.cpp302 napi_value thisArg = nullptr; in AddContinuousEvent() local
303 napi_status status = napi_get_cb_info(env, info, &argc, args, &thisArg, nullptr); in AddContinuousEvent()
332 CHKCP((napi_unwrap(env, thisArg, (void **)(&vibratorPattern)) == napi_ok), "napi_unwrap fail"); in AddContinuousEvent()
338 return thisArg; in AddContinuousEvent()
346 napi_value thisArg = nullptr; in AddTransientEvent() local
347 napi_status status = napi_get_cb_info(env, info, &argc, args, &thisArg, nullptr); in AddTransientEvent()
375 CHKCP((napi_unwrap(env, thisArg, (void **)(&vibratorPattern)) == napi_ok), "napi_unwrap fail"); in AddTransientEvent()
381 return thisArg; in AddTransientEvent()
389 napi_value thisArg = nullptr; in Build() local
390 napi_status status = napi_get_cb_info(env, info, &argc, args, &thisArg, nullpt in Build()
[all...]
/base/customization/enterprise_device_management/interfaces/kits/usb_manager/src/
H A Dusb_manager_addon.cpp82 napi_value thisArg = nullptr; in SetUsbPolicy() local
84 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in SetUsbPolicy()
150 napi_value thisArg = nullptr; in DisableUsb() local
152 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in DisableUsb()
182 napi_value thisArg = nullptr; in IsUsbDisabled() local
184 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in IsUsbDisabled()
223 napi_value thisArg = nullptr; in AddOrRemoveAllowedUsbDevices() local
225 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in AddOrRemoveAllowedUsbDevices()
305 napi_value thisArg = nullptr; in GetAllowedUsbDevices() local
307 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, in GetAllowedUsbDevices()
356 napi_value thisArg = nullptr; SetUsbStorageDeviceAccessPolicy() local
390 napi_value thisArg = nullptr; GetUsbStorageDeviceAccessPolicy() local
432 napi_value thisArg = nullptr; AddOrRemoveDisallowedUsbDevices() local
463 napi_value thisArg = nullptr; GetDisallowedUsbDevices() local
[all...]
/base/customization/enterprise_device_management/interfaces/kits/location_manager/src/
H A Dlocation_manager_addon.cpp43 napi_value thisArg = nullptr; in SetLocationPolicy() local
45 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in SetLocationPolicy()
81 napi_value thisArg = nullptr; in GetLocationPolicy() local
84 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in GetLocationPolicy()
/base/customization/enterprise_device_management/interfaces/kits/restrictions/src/
H A Drestrictions_addon.cpp96 napi_value thisArg = nullptr; in SetPolicyDisabled() local
98 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in SetPolicyDisabled()
163 napi_value thisArg = nullptr; in IsPolicyDisabled() local
165 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in IsPolicyDisabled()
238 napi_value thisArg = nullptr; in SetFingerprintAuthDisabled() local
240 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in SetFingerprintAuthDisabled()
271 napi_value thisArg = nullptr; in IsFingerprintAuthDisabled() local
273 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in IsFingerprintAuthDisabled()
309 napi_value thisArg = nullptr; in SetPolicyDisabledSync() local
311 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, in SetPolicyDisabledSync()
336 napi_value thisArg = nullptr; IsPolicyDisabledSync() local
370 napi_value thisArg = nullptr; SetDisallowedPolicy() local
419 napi_value thisArg = nullptr; GetDisallowedPolicy() local
473 napi_value thisArg = nullptr; SetDisallowedPolicyForAccount() local
521 napi_value thisArg = nullptr; GetDisallowedPolicyForAccount() local
578 napi_value thisArg = nullptr; GetDisallowedListForAccount() local
615 napi_value thisArg = nullptr; AddOrRemoveDisallowedListForAccount() local
[all...]
/base/hiviewdfx/hilog/interfaces/js/kits/napi/src/hilog/src/
H A Dhilog_napi.cpp32 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/
H A Dpower_module.cpp29 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()
/base/customization/enterprise_device_management/interfaces/kits/account_manager/src/
H A Daccount_manager_addon.cpp46 napi_value thisArg = nullptr; in DisallowAddLocalAccount() local
48 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in DisallowAddLocalAccount()
85 napi_value thisArg = nullptr; in DisallowAddOsAccountByUser() local
87 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in DisallowAddOsAccountByUser()
120 napi_value thisArg = nullptr; in IsAddOsAccountByUserDisallowed() local
122 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in IsAddOsAccountByUserDisallowed()
208 napi_value thisArg = nullptr; in AddOsAccountCommon() local
210 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in AddOsAccountCommon()
363 napi_value thisArg = nullptr; in DisallowAddOsAccount() local
365 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, in DisallowAddOsAccount()
408 napi_value thisArg = nullptr; IsAddOsAccountDisallowed() local
[all...]
/base/customization/enterprise_device_management/interfaces/kits/device_settings/src/
H A Ddevice_settings_addon.cpp86 napi_value thisArg = nullptr; in SetPowerPolicy() local
88 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in SetPowerPolicy()
116 napi_value thisArg = nullptr; in GetPowerPolicy() local
118 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in GetPowerPolicy()
186 napi_value thisArg = nullptr; in SetScreenOffTime() local
188 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in SetScreenOffTime()
222 napi_value thisArg = nullptr; in GetScreenOffTime() local
224 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in GetScreenOffTime()
270 napi_value thisArg = nullptr; in InstallUserCertificate() local
272 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, in InstallUserCertificate()
325 napi_value thisArg = nullptr; UninstallUserCertificate() local
394 napi_value thisArg = nullptr; SetValue() local
441 napi_value thisArg = nullptr; GetValue() local
[all...]
/base/sensors/sensor/vibration_convert/interfaces/js/src/
H A Dvibrator_convert_js.cpp154 napi_value thisArg = nullptr; in ConvertAudioToHapticConstructor() local
155 napi_status status = napi_get_cb_info(env, info, &argc, args, &thisArg, nullptr); in ConvertAudioToHapticConstructor()
176 return thisArg; in ConvertAudioToHapticConstructor()
184 napi_value thisArg = nullptr; in GetAudioAttribute() local
185 napi_status status = napi_get_cb_info(env, info, &argc, args, &thisArg, nullptr); in GetAudioAttribute()
218 napi_value thisArg = nullptr; in GetAudioData() local
219 napi_status status = napi_get_cb_info(env, info, &argc, args, &thisArg, nullptr); in GetAudioData()
261 napi_value thisArg = nullptr; in ConvertAudioToHaptic() local
262 napi_status status = napi_get_cb_info(env, info, &argc, args, &thisArg, nullptr); in ConvertAudioToHaptic()
/base/customization/enterprise_device_management/interfaces/kits/datetime_manager/src/
H A Ddatetime_manager_addon.cpp36 napi_value thisArg = nullptr; in SetDateTime() local
38 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in SetDateTime()
92 napi_value thisArg = nullptr; in DisallowModifyDateTime() local
94 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in DisallowModifyDateTime()
149 napi_value thisArg = nullptr; in IsModifyDateTimeDisallowed() local
151 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in IsModifyDateTimeDisallowed()
/base/customization/enterprise_device_management/interfaces/kits/admin_manager/src/
H A Dadmin_manager_addon.cpp35 napi_value thisArg = nullptr; in EnableAdmin() local
39 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in EnableAdmin()
145 napi_value thisArg = nullptr; in DisableAdmin() local
147 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in DisableAdmin()
204 napi_value thisArg = nullptr; in DisableSuperAdmin() local
206 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in DisableSuperAdmin()
247 napi_value thisArg = nullptr; in GetEnterpriseInfo() local
249 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in GetEnterpriseInfo()
336 napi_value thisArg = nullptr; in SetEnterpriseInfo() local
338 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, in SetEnterpriseInfo()
387 napi_value thisArg = nullptr; IsSuperAdmin() local
417 napi_value thisArg = nullptr; IsAdminEnabled() local
500 napi_value thisArg = nullptr; HandleManagedEvent() local
604 napi_value thisArg = nullptr; AuthorizeAdmin() local
781 napi_value thisArg = nullptr; HandleManagedEventSync() local
[all...]
/base/customization/enterprise_device_management/interfaces/kits/device_info/src/
H A Ddevice_info_addon.cpp57 napi_value thisArg = nullptr; in GetDeviceInfoSync() local
59 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in GetDeviceInfoSync()
89 napi_value thisArg = nullptr; in GetDeviceInfo() local
91 NAPI_CALL(env, napi_get_cb_info(env, info, &argc, argv, &thisArg, &data)); in GetDeviceInfo()

Completed in 18 milliseconds

12