Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 99410191 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "libradiocompat: Expose AIDL indications" into main

parents 8608726f 5c3e08bb
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -53,6 +53,10 @@ RadioResponse& CallbackManager::response() const {
    return *mRadioResponse;
}

RadioIndication& CallbackManager::indication() const {
    return *mRadioIndication;
}

void CallbackManager::setResponseFunctionsDelayed() {
    std::unique_lock<std::mutex> lock(mDelayedSetterGuard);
    mDelayedSetterDeadline = std::chrono::steady_clock::now() + kDelayedSetterDelay;
+1 −0
Original line number Diff line number Diff line
@@ -46,6 +46,7 @@ class CallbackManager {
    ~CallbackManager();

    RadioResponse& response() const;
    RadioIndication& indication() const;

    template <typename ResponseType, typename IndicationType>
    void setResponseFunctions(const std::shared_ptr<ResponseType>& response,