mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 05:49:27 +00:00
Bug: 260644201 Test: atest VtsHalRadioTargetTest MO/MT SMS, MMS, voice calls with live network Change-Id: Ia95b773c7ddd51d32ea987295d70a9a2e16ebf7a
57 lines
2.2 KiB
C++
57 lines
2.2 KiB
C++
/*
|
|
* Copyright (C) 2022 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include "radio_satellite_utils.h"
|
|
|
|
RadioSatelliteIndication::RadioSatelliteIndication(RadioServiceTest& parent)
|
|
: parent_satellite(parent) {}
|
|
|
|
ndk::ScopedAStatus RadioSatelliteIndication::onPendingMessageCount(RadioIndicationType /*type*/,
|
|
int32_t /*count*/) {
|
|
return ndk::ScopedAStatus::ok();
|
|
}
|
|
|
|
ndk::ScopedAStatus RadioSatelliteIndication::onNewMessages(
|
|
RadioIndicationType /*type*/, const std::vector<std::string>& /*messages*/) {
|
|
return ndk::ScopedAStatus::ok();
|
|
}
|
|
|
|
ndk::ScopedAStatus RadioSatelliteIndication::onMessagesTransferComplete(
|
|
RadioIndicationType /*type*/, bool /*complete*/) {
|
|
return ndk::ScopedAStatus::ok();
|
|
}
|
|
|
|
ndk::ScopedAStatus RadioSatelliteIndication::onSatellitePointingInfoChanged(
|
|
RadioIndicationType /*type*/, const PointingInfo& /*pointingInfo*/) {
|
|
return ndk::ScopedAStatus::ok();
|
|
}
|
|
|
|
ndk::ScopedAStatus RadioSatelliteIndication::onSatelliteModeChanged(RadioIndicationType /*type*/,
|
|
SatelliteMode /*mode*/) {
|
|
return ndk::ScopedAStatus::ok();
|
|
}
|
|
|
|
ndk::ScopedAStatus RadioSatelliteIndication::onSatelliteRadioTechnologyChanged(
|
|
RadioIndicationType /*type*/, NTRadioTechnology /*technology*/) {
|
|
return ndk::ScopedAStatus::ok();
|
|
}
|
|
|
|
ndk::ScopedAStatus RadioSatelliteIndication::onProvisionStateChanged(
|
|
RadioIndicationType /*type*/, bool /*provisioned*/,
|
|
const std::vector<SatelliteFeature>& /*features*/) {
|
|
return ndk::ScopedAStatus::ok();
|
|
}
|