Searched refs:TestClientCallback (Results 1 – 3 of 3) sorted by relevance
/aosp12/frameworks/av/media/libmediatranscoding/tests/ |
H A D | TranscodingClientManager_tests.cpp | 57 struct TestClientCallback : public BnTranscodingClientCallback { struct 58 TestClientCallback() { ALOGI("TestClientCallback Created"); } in TestClientCallback() function 60 virtual ~TestClientCallback() { ALOGI("TestClientCallback destroyed"); }; in ~TestClientCallback() argument 126 TestClientCallback(const TestClientCallback&) = delete; 127 TestClientCallback& operator=(const TestClientCallback&) = delete; 130 bool operator==(const TestClientCallback::Event& lhs, const TestClientCallback::Event& rhs) { in operator ==() 266 mClientCallback1 = ::ndk::SharedRefBase::make<TestClientCallback>(); in SetUp() 306 std::shared_ptr<TestClientCallback> mClientCallback1; 307 std::shared_ptr<TestClientCallback> mClientCallback2; 308 std::shared_ptr<TestClientCallback> mClientCallback3; [all …]
|
H A D | TranscodingSessionController_tests.cpp | 236 struct TestClientCallback : public BnTranscodingClientCallback { struct 237 TestClientCallback(TestTranscoder* owner, ClientIdType clientId, uid_t clientUid) in TestClientCallback() argument 279 virtual ~TestClientCallback() { ALOGI("TestClient destroyed"); }; in ~TestClientCallback() argument 285 TestClientCallback(const TestClientCallback&) = delete; 286 TestClientCallback& operator=(const TestClientCallback&) = delete; 353 const std::shared_ptr<TestClientCallback>& client, in testPacerHelperWithMultipleUids() 366 const std::shared_ptr<TestClientCallback>& client, in testPacerHelper() 418 std::shared_ptr<TestClientCallback> mClientCallback0; 419 std::shared_ptr<TestClientCallback> mClientCallback1; 420 std::shared_ptr<TestClientCallback> mClientCallback2; [all …]
|
/aosp12/frameworks/av/services/mediatranscoding/tests/ |
H A D | MediaTranscodingServiceTestHelper.h | 262 struct TestClientCallback : public BnTranscodingClientCallback, struct 264 public std::enable_shared_from_this<TestClientCallback> { 265 TestClientCallback(const char* packageName, int32_t id) in TestClientCallback() function 276 virtual ~TestClientCallback() { ALOGI("TestClientCallback %d destroyed", mClientId); } in ~TestClientCallback() argument 491 mClient1 = ::ndk::SharedRefBase::make<TestClientCallback>(kClientPackageA, 1); in SetUp() argument 492 mClient2 = ::ndk::SharedRefBase::make<TestClientCallback>(kClientPackageB, 2); in SetUp() 493 mClient3 = ::ndk::SharedRefBase::make<TestClientCallback>(kClientPackageC, 3); in SetUp() 496 Status registerOneClient(const std::shared_ptr<TestClientCallback>& callback) { in registerOneClient() 550 std::shared_ptr<TestClientCallback> mClient1; 551 std::shared_ptr<TestClientCallback> mClient2; [all …]
|