Home | History | Annotate | Download | only in functional

Lines Matching defs:tune

65 static constexpr auto tune = 30s;
412 * - after a successful tune call, onCurrentProgramInfoChanged callback is
422 /* TODO(b/69958777): there is a race condition between tune() and onCurrentProgramInfoChanged
437 auto result = mSession->tune(sel);
447 EXPECT_TIMEOUT_CALL_WAIT(*mCallback, onCurrentProgramInfoChanged_, timeout::tune);
451 // it should tune exactly to what was requested
478 auto result = mSession->tune(sel);
492 * - tune fails with NOT_SUPPORTED when program selector is not initialized.
499 auto result = mSession->tune(sel);
508 * - the program info is changed within timeout::tune;
520 EXPECT_TIMEOUT_CALL_WAIT(*mCallback, onCurrentProgramInfoChanged_, timeout::tune);
525 EXPECT_TIMEOUT_CALL_WAIT(*mCallback, onCurrentProgramInfoChanged_, timeout::tune);
533 * - the program info is changed within timeout::tune if the method succeeded;
549 EXPECT_TIMEOUT_CALL_WAIT(*mCallback, onCurrentProgramInfoChanged_, timeout::tune);
554 EXPECT_TIMEOUT_CALL_WAIT(*mCallback, onCurrentProgramInfoChanged_, timeout::tune);
558 * Test tune cancellation.