Home
last modified time | relevance | path

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

/frameworks/native/libs/vr/libpdx/
Dservice_tests.cpp606 int32_t kValue = 12345; in TEST_F() local
607 LocalChannelHandle handle{nullptr, kValue}; in TEST_F()
610 ChannelHandleMatcher(kValue)))) in TEST_F()
619 int32_t kValue = 12345; in TEST_F() local
620 BorrowedChannelHandle handle{kValue}; in TEST_F()
624 ChannelHandleMatcher(kValue)))) in TEST_F()
633 int32_t kValue = 12345; in TEST_F() local
634 RemoteChannelHandle handle{kValue}; in TEST_F()
638 ChannelHandleMatcher(kValue)))) in TEST_F()
639 .WillOnce(Return(kValue)) in TEST_F()
[all …]
/frameworks/native/libs/binder/ndk/
Dibinder.cpp40 static void* kValue = static_cast<void*>(new bool{true}); variable
44 binder->attachObject(kId, kValue, nullptr /*cookie*/, clean); in attach()
47 return binder != nullptr && binder->findObject(kId) == kValue; in has()