/base/update/updater/services/script/script_interpreter/ |
H A D | script_function.cpp | 27 delete params_;
in ~ScriptFunction() 42 if (inputParams == nullptr || params_ == nullptr) {
in Execute() 43 if (params_ != nullptr || inputParams != nullptr) {
in Execute() 49 if (params_->GetParams().size() != inputParams->GetParams().size()) {
in Execute() 83 for (auto expression : params_->GetParams()) {
in GetParamNames()
|
H A D | script_function.h | 36 : functionName_(functionName), params_(params), statements_(list)
in ScriptFunction() 49 ScriptParams* params_ = nullptr;
member in Uscript::ScriptFunction
|
H A D | script_expression.cpp | 158 return inter.ExecuteNativeFunc(local, functionName_, params_);
in Execute() 160 return inter.ExecuteFunction(local, functionName_, params_);
in Execute() 174 delete params_;
in ~FunctionCallExpression()
|
H A D | script_expression.h | 194 : UScriptExpression(UScriptExpression::EXPRESSION_TYPE_FUNC), functionName_(identifier), params_(params) {}
in FunctionCallExpression() 203 ScriptParams* params_ = nullptr;
member in Uscript::FunctionCallExpression
|
H A D | script_statement.h | 202 params_ = params;
in AddParams() 208 ScriptParams* params_ {};
|
H A D | script_statement.cpp | 340 delete params_;
in ~UScriptReturnStatement() 359 if (params_ == nullptr) {
in Execute() 369 for (auto id : params_->GetParams()) {
in Execute()
|
/base/theme/screenlock_mgr/interfaces/inner_api/include/ |
H A D | screenlock_system_ability_interface.h | 26 std::string params_; member 29 : eventType_(eventType), params_(params), userId_(userId) in SystemEvent()
|
/base/theme/screenlock_mgr/test/unittest/ |
H A D | screenlock_callback_test.cpp | 32 SCLOCK_HILOGD("event=%{public}s,params=%{public}s", systemEvent.eventType_.c_str(), systemEvent.params_.c_str()); in OnCallBack()
|
/base/powermgr/thermal_manager/services/native/include/thermal_observer/state_machine/ |
H A D | screen_state_collection.h | 38 std::string params_; member in OHOS::PowerMgr::ScreenStateCollection
|
H A D | charger_state_collection.h | 79 std::string params_; member in OHOS::PowerMgr::ChargerStateCollection
|
/base/theme/screenlock_mgr/services/src/ |
H A D | screenlock_system_ability_proxy.cpp | 41 if (!data.WriteString(systemEvent.params_)) { in OnCallBack()
|
H A D | screenlock_system_ability.cpp | 357 systemEvent.params_ = std::to_string(reasonFlag); in StrongAuthChanged() 718 systemEvent.params_.c_str()); in SystemEventCallBack()
|
/base/powermgr/thermal_manager/services/native/include/thermal_action/action/ |
H A D | action_thermal_level.h | 72 std::string params_; member in OHOS::PowerMgr::ActionThermalLevel
|
/base/powermgr/thermal_manager/services/native/src/thermal_observer/state_machine/ |
H A D | screen_state_collection.cpp | 44 params_ = params; in InitParam()
|
H A D | charger_state_collection.cpp | 56 params_ = params; in InitParam()
|
/base/theme/screenlock_mgr/frameworks/js/napi/src/ |
H A D | screenlock_system_ability_callback.cpp | 60 napi_create_string_utf8(entry->env, entry->systemEvent.params_.c_str(), NAPI_AUTO_LENGTH, ¶ms); in OnCallBack()
|