Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DApexManagerTest.java201 when(mApexService.getStagedSessionInfo(anyInt())).thenReturn( in testGetStagedSessionInfo()
204 mApexManager.getStagedSessionInfo(TEST_SESSION_ID); in testGetStagedSessionInfo()
205 verify(mApexService, times(1)).getStagedSessionInfo(TEST_SESSION_ID); in testGetStagedSessionInfo()
210 when(mApexService.getStagedSessionInfo(anyInt())).thenReturn( in testGetStagedSessionInfo_unKnownStagedSessionId()
213 assertThat(mApexManager.getStagedSessionInfo(TEST_SESSION_ID)).isNull(); in testGetStagedSessionInfo_unKnownStagedSessionId()
/aosp12/system/apex/apexd/aidl/android/apex/
H A DIApexService.aidl31 ApexSessionInfo getStagedSessionInfo(int session_id); in getStagedSessionInfo() method
/aosp12/system/apex/apexd/
H A Dapexservice_test.cpp1761 ASSERT_TRUE(IsOk(service_->getStagedSessionInfo(123, &session))) in TEST_F()
1768 ASSERT_TRUE(IsOk(service_->getStagedSessionInfo(123, &session))) in TEST_F()
1778 ASSERT_TRUE(IsOk(service_->getStagedSessionInfo(123, &session))) in TEST_F()
1852 ASSERT_TRUE(IsOk(service_->getStagedSessionInfo(456, &session))) in TEST_F()
1902 ASSERT_TRUE(IsOk(service_->getStagedSessionInfo(10, &session))) in TEST_F()
1911 ASSERT_TRUE(IsOk(service_->getStagedSessionInfo(10, &session))) in TEST_F()
1948 ASSERT_TRUE(IsOk(service_->getStagedSessionInfo(666, &session))); in TEST_F()
1958 ASSERT_TRUE(IsOk(service_->getStagedSessionInfo(37, &session_info))); in TEST_F()
1973 ASSERT_TRUE(IsOk(service_->getStagedSessionInfo(73, &session_info))); in TEST_F()
1988 ASSERT_TRUE(IsOk(service_->getStagedSessionInfo(239, &session_info))); in TEST_F()
[all …]
H A Dapexservice.cpp80 BinderStatus getStagedSessionInfo(
358 BinderStatus ApexService::getStagedSessionInfo( in getStagedSessionInfo() function in android::apex::binder::__anonf34a850d0110::ApexService
932 BinderStatus status = getStagedSessionInfo(session_id, &session_info); in shellCommand()
/aosp12/frameworks/base/services/core/java/com/android/server/pm/
H A DApexManager.java232 abstract ApexSessionInfo getStagedSessionInfo(int sessionId); in getStagedSessionInfo() method in ApexManager
714 @Nullable ApexSessionInfo getStagedSessionInfo(int sessionId) { in getStagedSessionInfo() method in ApexManager.ApexManagerImpl
717 waitForApexService().getStagedSessionInfo(sessionId); in getStagedSessionInfo()
1233 ApexSessionInfo getStagedSessionInfo(int sessionId) { in getStagedSessionInfo() method in ApexManager.ApexManagerFlattenedApex
H A DStagingManager.java855 final ApexSessionInfo apexSession = mApexManager.getStagedSessionInfo(session.sessionId()); in ensureActiveApexSessionIsAborted()
/aosp12/frameworks/base/tests/StagedInstallTest/app/src/com/android/tests/stagedinstallinternal/
H A DStagedInstallInternalTest.java155 PackageInstaller.SessionInfo info = InstallUtils.getStagedSessionInfo(sessionId); in testStagedSessionShouldCleanUpOnOnSuccess_Verify()