Home
last modified time | relevance | path

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

/frameworks/base/native/android/tests/performance_hint/
DPerformanceHintNativeTest.cpp95 StrictMock<MockIHintSession>* iSession = new StrictMock<MockIHintSession>(); in TEST_F() local
96 sp<IHintSession> session_sp(iSession); in TEST_F()
107 EXPECT_CALL(*iSession, updateTargetWorkDuration(Eq(targetDurationNanos))).Times(Exactly(1)); in TEST_F()
115 EXPECT_CALL(*iSession, reportActualWorkDuration(Eq(actualDurations), _)).Times(Exactly(1)); in TEST_F()
124 EXPECT_CALL(*iSession, close()).Times(Exactly(1)); in TEST_F()
/frameworks/base/telephony/java/android/telephony/ims/
DImsCallSession.java530 public ImsCallSession(IImsCallSession iSession) { in ImsCallSession() argument
531 miSession = iSession; in ImsCallSession()
533 if (iSession != null) { in ImsCallSession()
535 iSession.setListener(new IImsCallSessionListenerProxy()); in ImsCallSession()
544 public ImsCallSession(IImsCallSession iSession, Listener listener, Executor executor) { in ImsCallSession() argument
545 this(iSession); in ImsCallSession()