Searched refs:outBinder (Results 1 – 5 of 5) sorted by relevance
/frameworks/native/libs/binder/tests/ |
D | binderRpcTest.cpp | 508 sp<IBinder> outBinder; in TEST_P() local 509 EXPECT_OK(proc.rootIface->repeatBinder(inBinder, &outBinder)); in TEST_P() 510 EXPECT_EQ(inBinder, outBinder); in TEST_P() 514 outBinder = nullptr; in TEST_P() 533 sp<IBinder> outBinder; in TEST_P() local 534 EXPECT_OK(proc.rootIface->repeatBinder(inBinder, &outBinder)); in TEST_P() 535 EXPECT_EQ(inBinder, outBinder); in TEST_P() 540 outBinder = nullptr; in TEST_P() 553 sp<IBinder> outBinder; in TEST_P() local 554 EXPECT_OK(proc.rootIface->repeatBinder(nullptr, &outBinder)); in TEST_P() [all …]
|
/frameworks/native/libs/binder/ndk/tests/ |
D | iface.cpp | 153 sp<IFoo> IFoo::getService(const char* instance, AIBinder** outBinder) { in getService() argument 164 if (outBinder != nullptr) { in getService() 166 *outBinder = binder; in getService()
|
/frameworks/native/cmds/servicemanager/ |
D | ServiceManager.h | 37 binder::Status getService(const std::string& name, sp<IBinder>* outBinder) override; 38 binder::Status checkService(const std::string& name, sp<IBinder>* outBinder) override;
|
D | ServiceManager.cpp | 183 Status ServiceManager::getService(const std::string& name, sp<IBinder>* outBinder) { in getService() argument 184 *outBinder = tryGetService(name, true); in getService() 189 Status ServiceManager::checkService(const std::string& name, sp<IBinder>* outBinder) { in checkService() argument 190 *outBinder = tryGetService(name, false); in checkService()
|
/frameworks/native/libs/binder/ndk/tests/include/iface/ |
D | iface.h | 39 static ::android::sp<IFoo> getService(const char* instance, AIBinder** outBinder = nullptr);
|