Home
last modified time | relevance | path

Searched refs:iSession (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/native/android/tests/performance_hint/
H A DPerformanceHintNativeTest.cpp101 StrictMock<MockIHintSession>* iSession = new StrictMock<MockIHintSession>(); in TEST_F() local
102 sp<IHintSession> session_sp(iSession); in TEST_F()
113 EXPECT_CALL(*iSession, updateTargetWorkDuration(Eq(targetDurationNanos))).Times(Exactly(1)); in TEST_F()
121 EXPECT_CALL(*iSession, reportActualWorkDuration(Eq(actualDurations), _)).Times(Exactly(1)); in TEST_F()
131 EXPECT_CALL(*iSession, sendHint(Eq(hintId))).Times(Exactly(1)); in TEST_F()
135 EXPECT_CALL(*iSession, sendHint(Eq(hintId))).Times(Exactly(1)); in TEST_F()
139 EXPECT_CALL(*iSession, sendHint(Eq(hintId))).Times(Exactly(0)); in TEST_F()
146 EXPECT_CALL(*iSession, close()).Times(Exactly(1)); in TEST_F()
158 StrictMock<MockIHintSession>* iSession = new StrictMock<MockIHintSession>(); in TEST_F() local
159 sp<IHintSession> session_sp(iSession); in TEST_F()
/aosp14/frameworks/base/telephony/java/android/telephony/ims/
H A DImsCallSession.java540 public ImsCallSession(IImsCallSession iSession) { in ImsCallSession() argument
541 miSession = iSession; in ImsCallSession()
544 if (iSession != null) { in ImsCallSession()
546 iSession.setListener(mIImsCallSessionListenerProxy); in ImsCallSession()
554 public ImsCallSession(IImsCallSession iSession, Listener listener, Executor executor) { in ImsCallSession() argument
555 this(iSession); in ImsCallSession()