• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2022 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 
16 #include "mock_stats_remote_object.h"
17 
18 namespace OHOS {
19 namespace PowerMgr {
MockStatsRemoteObject(std::u16string descriptor)20 MockStatsRemoteObject::MockStatsRemoteObject(std::u16string descriptor) : IRemoteObject(descriptor)
21 {
22 }
23 
~MockStatsRemoteObject()24 MockStatsRemoteObject::~MockStatsRemoteObject()
25 {
26 }
27 
GetObjectRefCount()28 int32_t MockStatsRemoteObject::GetObjectRefCount()
29 {
30     return 0;
31 }
32 
Dump(int fd,const std::vector<std::u16string> & args)33 int MockStatsRemoteObject::Dump([[maybe_unused]] int fd, [[maybe_unused]] const std::vector<std::u16string> &args)
34 {
35     return 0;
36 }
37 
SendRequest(uint32_t code,MessageParcel & data,MessageParcel & reply,MessageOption & option)38 int MockStatsRemoteObject::SendRequest(uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option)
39 {
40     (void)code;
41     (void)data;
42     (void)reply;
43     (void)option;
44     return 1;
45 }
46 
AddDeathRecipient(const sptr<DeathRecipient> & recipient)47 bool MockStatsRemoteObject::AddDeathRecipient(const sptr<DeathRecipient> &recipient)
48 {
49     (void)recipient;
50     return false;
51 }
52 
RemoveDeathRecipient(const sptr<DeathRecipient> & recipient)53 bool MockStatsRemoteObject::RemoveDeathRecipient(const sptr<DeathRecipient> &recipient)
54 {
55     (void)recipient;
56     return false;
57 }
58 } // namespace PowerMgr
59 } // namespace OHOS
60