1 /* 2 * Copyright (C) 2021 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 #include "executor/env_param_dumper.h" 16 17 namespace OHOS { 18 namespace HiviewDFX { EnvParamDumper()19EnvParamDumper::EnvParamDumper() 20 { 21 } 22 ~EnvParamDumper()23EnvParamDumper::~EnvParamDumper() 24 { 25 } 26 PreExecute(const std::shared_ptr<DumperParameter> & parameter,StringMatrix dumpDatas)27DumpStatus EnvParamDumper::PreExecute(const std::shared_ptr<DumperParameter>& parameter, 28 StringMatrix dumpDatas) 29 { 30 return DumpStatus::DUMP_OK; 31 } 32 Execute()33DumpStatus EnvParamDumper::Execute() 34 { 35 DUMPER_HILOGI(MODULE_COMMON, "info|EnvParamDumper Execute"); 36 return DumpStatus::DUMP_OK; 37 } 38 AfterExecute()39DumpStatus EnvParamDumper::AfterExecute() 40 { 41 return DumpStatus::DUMP_OK; 42 } 43 RunDump()44void EnvParamDumper::RunDump() 45 { 46 } 47 StartDump()48void EnvParamDumper::StartDump() 49 { 50 } 51 Dump()52void EnvParamDumper::Dump() 53 { 54 } 55 StopDump()56void EnvParamDumper::StopDump() 57 { 58 } 59 ReadEnvVariable()60void EnvParamDumper::ReadEnvVariable() 61 { 62 } 63 } // namespace HiviewDFX 64 } // namespace OHOS 65