/aosp12/frameworks/base/core/tests/coretests/src/android/os/ |
H A D | PerformanceHintManagerTest.java | 55 private Session createSession() { in createSession() method in PerformanceHintManagerTest 62 Session a = createSession(); in testCreateHintSession() 63 Session b = createSession(); in testCreateHintSession() 73 if (createSession() != null) { in testGetPreferredUpdateRateNanos() 82 Session s = createSession(); in testUpdateTargetWorkDuration() 89 Session s = createSession(); in testUpdateTargetWorkDurationWithNegativeDuration() 98 Session s = createSession(); in testReportActualWorkDuration() 108 Session s = createSession(); in testReportActualWorkDurationWithIllegalArgument() 118 Session s = createSession(); in testCloseHintSession()
|
/aosp12/hardware/google/av/media/eco/tests/ |
H A D | EcoSessionTest.cpp | 56 sp<ECOSession> createSession(int32_t width, int32_t height, bool isCameraRecording) { in createSession() function in android::media::eco::EcoSessionTest 93 sp<ECOSession> ecoSession = createSession(kTestWidth, kTestHeight, kIsCameraRecording); in TEST_F() 106 sp<ECOSession> ecoSession = createSession(kTestWidth, kTestHeight, kIsCameraRecording); in TEST_F() 120 sp<ECOSession> ecoSession = createSession(kTestWidth, kTestHeight, kIsCameraRecording); in TEST_F() 136 sp<ECOSession> ecoSession = createSession(kTestWidth, kTestHeight, kIsCameraRecording); in TEST_F() 155 sp<ECOSession> ecoSession = createSession(kTestWidth, kTestHeight, kIsCameraRecording); in TEST_F() 169 sp<ECOSession> ecoSession = createSession(kTestWidth, kTestHeight, kIsCameraRecording); in TEST_F() 183 sp<ECOSession> ecoSession = createSession(kTestWidth, kTestHeight, kIsCameraRecording); in TEST_F() 204 sp<ECOSession> ecoSession = createSession(kTestWidth, kTestHeight, kIsCameraRecording); in TEST_F() 412 sp<ECOSession> ecoSession = createSession(kTestWidth, kTestHeight, kIsCameraRecording); in TEST_F() [all …]
|
/aosp12/packages/apps/Launcher3/tests/src/com/android/launcher3/compat/ |
H A D | PromiseIconUiTest.java | 66 private int createSession(String label, Bitmap icon) throws Throwable { in createSession() method in PromiseIconUiTest 72 return mTargetContext.getPackageManager().getPackageInstaller().createSession(params); in createSession() 82 mSessionId = createSession(appLabel, Bitmap.createBitmap(100, 100, Bitmap.Config.ALPHA_8)); in testPromiseIcon_addedFromEligibleSession() 104 mSessionId = createSession(null, null); in testPromiseIcon_notAddedFromIneligibleSession()
|
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
H A D | PackageInstallerSessionTest.java | 120 return createSession(false, false, 123, false, PackageInstaller.SessionInfo.INVALID_ID, in createSimpleSession() 125 return createSession(true, false, 123, false, PackageInstaller.SessionInfo.INVALID_ID, in createStagedSession() 130 return createSession(false, true, 123, false, PackageInstaller.SessionInfo.INVALID_ID, in createSessionWithGrantedPermissions() 136 return createSession(false, false, sessionId, true, in createMultiPackageParentSession() 142 return createSession(false, false, sessionId, false, parentSessionId, null); in createMultiPackageChildSession() 145 private PackageInstallerSession createSession(boolean staged, boolean withGrantedPermissions, in createSession() method in PackageInstallerSessionTest
|
/aosp12/frameworks/base/services/tests/mockingservicestests/src/com/android/server/pm/ |
H A D | StagingManagerTest.java | 119 StagingManager.StagedSession session1 = createSession(111, "com.foo", 1); in checkNonOverlappingWithStagedSessions_laterSessionShouldNotFailEarlierOnes() 120 StagingManager.StagedSession session2 = createSession(222, "com.foo", 2); in checkNonOverlappingWithStagedSessions_laterSessionShouldNotFailEarlierOnes() 122 mStagingManager.createSession(session1); in checkNonOverlappingWithStagedSessions_laterSessionShouldNotFailEarlierOnes() 123 mStagingManager.createSession(session2); in checkNonOverlappingWithStagedSessions_laterSessionShouldNotFailEarlierOnes() 469 mStagingManager.createSession(session); in getSessionIdByPackageName() 480 mStagingManager.createSession(session); in getSessionIdByPackageName_appliedSession_ignores() 491 mStagingManager.createSession(session); in getSessionIdByPackageName_failedSession_ignores() 502 mStagingManager.createSession(session); in getSessionIdByPackageName_destroyedSession_ignores() 518 mStagingManager.createSession(session); in getSessionIdByPackageName_noSessionHasThisPackage() 522 private StagingManager.StagedSession createSession(int sessionId, String packageName, in createSession() method in StagingManagerTest
|
/aosp12/frameworks/base/native/android/ |
H A D | performance_hint.cpp | 42 APerformanceHintSession* createSession(const int32_t* threadIds, size_t size, 119 APerformanceHintSession* APerformanceHintManager::createSession( in createSession() function in APerformanceHintManager 215 return manager->createSession(threadIds, size, initialTargetWorkDurationNanos); in APerformanceHint_createSession()
|
/aosp12/frameworks/base/core/tests/PackageInstallerSessions/src/android/content/pm/ |
H A D | PackageSessionTests.kt | 175 val sessionId = installer.createSession(params) 216 installer.createSession(SessionParams(SessionParams.MODE_FULL_INSTALL) 250 val sessionId = installer.createSession(params)
|
/aosp12/frameworks/layoutlib/remote/client/src/com/android/layoutlib/bridge/remote/client/ |
H A D | RemoteBridgeClient.java | 81 public RenderSession createSession(SessionParams params) { in createSession() method in RemoteBridgeClient 85 return new RemoteRenderSessionAdapter(mDelegate.createSession(remoteParams)); in createSession()
|
/aosp12/frameworks/base/core/java/android/speech/tts/ |
H A D | ITextToSpeechManager.aidl | 28 void createSession(in String engine, in ITextToSpeechSessionCallback managerCallback); in createSession() method
|
/aosp12/frameworks/opt/net/voip/src/java/android/net/sip/ |
H A D | SipManager.java | 531 ISipSession session = mSipService.createSession(localProfile, in register() 558 ISipSession session = mSipService.createSession(localProfile, in unregister() 611 ISipSession s = mSipService.createSession(localProfile, null, in createSipSession()
|
/aosp12/frameworks/base/core/java/android/speech/ |
H A D | IRecognitionServiceManager.aidl | 29 void createSession( in createSession() method
|
/aosp12/hardware/interfaces/biometrics/face/aidl/aidl_api/android.hardware.biometrics.face/1/android/hardware/biometrics/face/ |
H A D | IFace.aidl | 38 …android.hardware.biometrics.face.ISession createSession(in int sensorId, in int userId, in android… in createSession() method
|
/aosp12/hardware/interfaces/biometrics/face/aidl/aidl_api/android.hardware.biometrics.face/current/android/hardware/biometrics/face/ |
H A D | IFace.aidl | 38 …android.hardware.biometrics.face.ISession createSession(in int sensorId, in int userId, in android… in createSession() method
|
/aosp12/hardware/interfaces/biometrics/fingerprint/aidl/aidl_api/android.hardware.biometrics.fingerprint/1/android/hardware/biometrics/fingerprint/ |
H A D | IFingerprint.aidl | 38 …android.hardware.biometrics.fingerprint.ISession createSession(in int sensorId, in int userId, in … in createSession() method
|
/aosp12/hardware/interfaces/biometrics/fingerprint/aidl/aidl_api/android.hardware.biometrics.fingerprint/current/android/hardware/biometrics/fingerprint/ |
H A D | IFingerprint.aidl | 38 …android.hardware.biometrics.fingerprint.ISession createSession(in int sensorId, in int userId, in … in createSession() method
|
/aosp12/hardware/interfaces/biometrics/face/aidl/android/hardware/biometrics/face/ |
H A D | IFace.aidl | 54 ISession createSession(in int sensorId, in int userId, in ISessionCallback cb); in createSession() method
|
/aosp12/hardware/interfaces/biometrics/fingerprint/aidl/android/hardware/biometrics/fingerprint/ |
H A D | IFingerprint.aidl | 54 ISession createSession(in int sensorId, in int userId, in ISessionCallback cb); in createSession() method
|
/aosp12/hardware/interfaces/biometrics/face/aidl/default/ |
H A D | Face.h | 27 ndk::ScopedAStatus createSession(int32_t sensorId, int32_t userId,
|
/aosp12/frameworks/layoutlib/remote/server/src/com/android/layoutlib/bridge/remote/server/ |
H A D | RemoteBridgeImpl.java | 95 public RemoteRenderSession createSession(@NotNull RemoteSessionParams remoteParams) { in createSession() method in RemoteBridgeImpl 110 return RemoteRenderSessionAdapter.create(mBridge.createSession(params)); in createSession()
|
/aosp12/hardware/interfaces/biometrics/fingerprint/aidl/default/include/ |
H A D | Fingerprint.h | 33 ndk::ScopedAStatus createSession(int32_t sensorId, int32_t userId,
|
/aosp12/frameworks/av/drm/mediadrm/plugins/clearkey/default/include/ |
H A D | SessionLibrary.h | 34 android::sp<Session> createSession();
|
/aosp12/frameworks/av/drm/mediadrm/plugins/clearkey/hidl/include/ |
H A D | SessionLibrary.h | 38 sp<Session> createSession();
|
/aosp12/frameworks/base/media/java/android/media/tv/ |
H A D | ITvInputService.aidl | 32 void createSession(in InputChannel channel, in ITvInputSessionCallback callback, in createSession() method
|
/aosp12/hardware/interfaces/camera/device/3.3/default/ |
H A D | CameraDevice.cpp | 44 sp<V3_2::implementation::CameraDeviceSession> CameraDevice::createSession(camera3_device_t* device, in createSession() function in android::hardware::camera::device::V3_3::implementation::CameraDevice
|
H A D | CameraDevice_3_3.h | 62 virtual sp<V3_2::implementation::CameraDeviceSession> createSession(camera3_device_t*,
|