• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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()19 EnvParamDumper::EnvParamDumper()
20 {
21 }
22 
~EnvParamDumper()23 EnvParamDumper::~EnvParamDumper()
24 {
25 }
26 
PreExecute(const std::shared_ptr<DumperParameter> & parameter,StringMatrix dumpDatas)27 DumpStatus EnvParamDumper::PreExecute(const std::shared_ptr<DumperParameter>& parameter,
28     StringMatrix dumpDatas)
29 {
30     return DumpStatus::DUMP_OK;
31 }
32 
Execute()33 DumpStatus EnvParamDumper::Execute()
34 {
35     return DumpStatus::DUMP_OK;
36 }
37 
AfterExecute()38 DumpStatus EnvParamDumper::AfterExecute()
39 {
40     return DumpStatus::DUMP_OK;
41 }
42 
RunDump()43 void EnvParamDumper::RunDump()
44 {
45 }
46 
StartDump()47 void EnvParamDumper::StartDump()
48 {
49 }
50 
Dump()51 void EnvParamDumper::Dump()
52 {
53 }
54 
StopDump()55 void EnvParamDumper::StopDump()
56 {
57 }
58 
ReadEnvVariable()59 void EnvParamDumper::ReadEnvVariable()
60 {
61 }
62 } // namespace HiviewDFX
63 } // namespace OHOS
64