Home
last modified time | relevance | path

Searched refs:tuneComplete (Results 1 – 7 of 7) sorted by relevance

/hardware/interfaces/broadcastradio/1.0/
DITuner.hal48 * ITunerCallback.tuneComplete() MUST be called once locked on a station
64 * ITunerCallback.tuneComplete() MUST be called once locked on a station
80 * ITunerCallback.tuneComplete() MUST be called once locked on a station
97 * ITunerCallback.tuneComplete() MUST NOT be sent by the HAL.
DITunerCallback.hal44 oneway tuneComplete(Result result, ProgramInfo info);
/hardware/interfaces/broadcastradio/1.1/
DITunerCallback.hal24 * (eg. tuneComplete and tuneComplete_1_1), while 1.1 clients may ignore 1.0
32 * This callback supersedes V1_0::tuneComplete.
89 * partly V1_0::tuneComplete.
/hardware/interfaces/broadcastradio/1.1/default/
DTuner.cpp169 mCallback->tuneComplete(Result::OK, mCurrentProgramInfo.base); in tuneInternalLocked()
189 mCallback->tuneComplete(Result::TIMEOUT, {}); in scan()
/hardware/interfaces/broadcastradio/1.0/default/
DTuner.cpp50 mCallback->tuneComplete(Utils::convertHalResult(halEvent->status), info); in onCallback()
/hardware/interfaces/broadcastradio/1.1/vts/functional/
DVtsHalBroadcastradioV1_1TargetTest.cpp83 MOCK_METHOD2(tuneComplete, Return<void>(Result, const V1_0::ProgramInfo&));
330 EXPECT_CALL(*mCallback, tuneComplete(_, _)).Times(0); in TEST_P()
/hardware/interfaces/broadcastradio/1.0/vts/functional/
DVtsHalBroadcastradioV1_0TargetTest.cpp115 virtual Return<void> tuneComplete(Result result, const ProgramInfo& info) { in tuneComplete() function in BroadcastRadioHidlTest::MyCallback