Home
last modified time | relevance | path

Searched refs:BinderDebugContext (Results 1 – 6 of 6) sorted by relevance

/frameworks/native/libs/binderdebug/include/binderdebug/
DBinderDebug.h31 enum class BinderDebugContext { enum
40 status_t getBinderPidInfo(BinderDebugContext context, pid_t pid, BinderPidInfo* pidInfo);
44 status_t getBinderClientPids(BinderDebugContext context, pid_t pid, pid_t servicePid,
/frameworks/native/libs/binderdebug/
DBinderDebug.cpp29 static std::string contextToString(BinderDebugContext context) { in contextToString()
31 case BinderDebugContext::BINDER: in contextToString()
33 case BinderDebugContext::HWBINDER: in contextToString()
35 case BinderDebugContext::VNDBINDER: in contextToString()
70 status_t getBinderPidInfo(BinderDebugContext context, pid_t pid, BinderPidInfo* pidInfo) { in getBinderPidInfo()
133 status_t getBinderClientPids(BinderDebugContext context, pid_t pid, pid_t servicePid, in getBinderClientPids()
Dstats.cpp49 CHECK_EQ(OK, getBinderPidInfo(BinderDebugContext::BINDER, pid, &info)); in main()
53 getBinderClientPids(BinderDebugContext::BINDER, getpid(), pid, *handle, in main()
/frameworks/native/libs/binderdebug/tests/
Dbinderdebug_test.cpp48 const auto& status = getBinderPidInfo(BinderDebugContext::BINDER, getpid(), &pidInfo); in TEST()
56 const auto& status = getBinderPidInfo(BinderDebugContext::BINDER, getpid(), &pidInfo); in TEST()
/frameworks/native/cmds/dumpsys/
Ddumpsys.cpp370 status = getBinderPidInfo(BinderDebugContext::BINDER, pid, &pidInfo); in dumpThreadsToFd()
399 getBinderClientPids(BinderDebugContext::BINDER, myPid, servicePid, handle.value(), &pids); in dumpClientsToFd()
/frameworks/native/cmds/lshal/
DListCommand.cpp209 const auto& status = getBinderPidInfo(BinderDebugContext::HWBINDER, serverPid, pidInfo); in getPidInfo()