blob: c03d9478288a39efc00b7178bcbb7b7bd06db9c3 [file] [log] [blame]
Sarah Chind2a41192021-12-21 11:34:00 -08001/*
2 * Copyright (C) 2021 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "radio_sim_utils.h"
18
Sarah Chin91997ac2021-12-29 00:35:12 -080019RadioSimIndication::RadioSimIndication(RadioServiceTest& parent) : parent_sim(parent) {}
Sarah Chind2a41192021-12-21 11:34:00 -080020
21ndk::ScopedAStatus RadioSimIndication::carrierInfoForImsiEncryption(RadioIndicationType /*info*/) {
22 return ndk::ScopedAStatus::ok();
23}
24
25ndk::ScopedAStatus RadioSimIndication::cdmaSubscriptionSourceChanged(
26 RadioIndicationType /*type*/, CdmaSubscriptionSource /*cdmaSource*/) {
27 return ndk::ScopedAStatus::ok();
28}
29
30ndk::ScopedAStatus RadioSimIndication::simPhonebookChanged(RadioIndicationType /*type*/) {
31 return ndk::ScopedAStatus::ok();
32}
33
34ndk::ScopedAStatus RadioSimIndication::simPhonebookRecordsReceived(
35 RadioIndicationType /*type*/, PbReceivedStatus /*status*/,
36 const std::vector<PhonebookRecordInfo>& /*records*/) {
37 return ndk::ScopedAStatus::ok();
38}
39
40ndk::ScopedAStatus RadioSimIndication::simRefresh(RadioIndicationType /*type*/,
41 const SimRefreshResult& /*refreshResult*/) {
42 return ndk::ScopedAStatus::ok();
43}
44
45ndk::ScopedAStatus RadioSimIndication::simStatusChanged(RadioIndicationType /*type*/) {
46 return ndk::ScopedAStatus::ok();
47}
48
49ndk::ScopedAStatus RadioSimIndication::stkEventNotify(RadioIndicationType /*type*/,
50 const std::string& /*cmd*/) {
51 return ndk::ScopedAStatus::ok();
52}
53
54ndk::ScopedAStatus RadioSimIndication::stkProactiveCommand(RadioIndicationType /*type*/,
55 const std::string& /*cmd*/) {
56 return ndk::ScopedAStatus::ok();
57}
58
59ndk::ScopedAStatus RadioSimIndication::stkSessionEnd(RadioIndicationType /*type*/) {
60 return ndk::ScopedAStatus::ok();
61}
62
63ndk::ScopedAStatus RadioSimIndication::subscriptionStatusChanged(RadioIndicationType /*type*/,
64 bool /*activate*/) {
65 return ndk::ScopedAStatus::ok();
66}
67
68ndk::ScopedAStatus RadioSimIndication::uiccApplicationsEnablementChanged(
69 RadioIndicationType /*type*/, bool /*enabled*/) {
70 return ndk::ScopedAStatus::ok();
71}