Home
last modified time | relevance | path

Searched refs:outBinder (Results 1 – 5 of 5) sorted by relevance

/frameworks/native/libs/binder/tests/
DbinderRpcUniversalTests.cpp176 sp<IBinder> outBinder; in TEST_P() local
177 EXPECT_EQ(proc.rootIface->getNullBinder(&outBinder).transactionError(), UNEXPECTED_NULL); in TEST_P()
194 sp<IBinder> outBinder; in TEST_P() local
195 EXPECT_OK(proc.rootIface->repeatBinder(inBinder, &outBinder)); in TEST_P()
196 EXPECT_EQ(inBinder, outBinder); in TEST_P()
200 outBinder = nullptr; in TEST_P()
219 sp<IBinder> outBinder; in TEST_P() local
220 EXPECT_OK(proc.rootIface->repeatBinder(inBinder, &outBinder)); in TEST_P()
221 EXPECT_EQ(inBinder, outBinder); in TEST_P()
226 outBinder = nullptr; in TEST_P()
[all …]
/frameworks/native/libs/binder/ndk/tests/
Diface.cpp159 sp<IFoo> IFoo::getService(const char* instance, AIBinder** outBinder) { in getService() argument
173 if (outBinder != nullptr) { in getService()
175 *outBinder = binder; in getService()
/frameworks/native/libs/binder/ndk/tests/include/iface/
Diface.h45 static ::android::sp<IFoo> getService(const char* instance, AIBinder** outBinder = nullptr);
/frameworks/native/cmds/servicemanager/
DServiceManager.h38 binder::Status getService(const std::string& name, sp<IBinder>* outBinder) override;
39 binder::Status checkService(const std::string& name, sp<IBinder>* outBinder) override;
DServiceManager.cpp350 Status ServiceManager::getService(const std::string& name, sp<IBinder>* outBinder) { in getService() argument
351 *outBinder = tryGetService(name, true); in getService()
356 Status ServiceManager::checkService(const std::string& name, sp<IBinder>* outBinder) { in checkService() argument
357 *outBinder = tryGetService(name, false); in checkService()