Home
last modified time | relevance | path

Searched defs:FuncCaller (Results 1 – 1 of 1) sorted by relevance

/frameworks/native/libs/binder/
DRpcTransportTls.cpp222 struct FuncCaller { struct
223 struct Monostate {};
224 static constexpr bool sIsVoid = std::is_void_v<std::invoke_result_t<Fn, Args...>>;
225 using Result = std::conditional_t<sIsVoid, Monostate, std::invoke_result_t<Fn, Args...>>;
226 static inline Result call(Fn fn, Args&&... args) { in call()