Home
last modified time | relevance | path

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

/aosp12/system/tools/aidl/
H A Daidl_to_cpp_common.cpp123 const string GenLogBeforeExecute(const string className, const AidlMethod& method, bool isServer, in GenLogBeforeExecute() argument
133 WriteLogForArgument(*writer, *a, isServer, "_transaction_log.input_args", isNdk); in GenLogBeforeExecute()
146 const string& returnVarName, bool isServer, bool isNdk) { in GenLogAfterExecute() argument
152 const auto address = (isNdk && isServer) ? "_aidl_impl.get()" : "static_cast<const void*>(this)"; in GenLogAfterExecute()
158 (*writer) << "_transaction_log.stub_address = " << (isServer ? address : "nullptr") << ";\n"; in GenLogAfterExecute()
159 (*writer) << "_transaction_log.proxy_address = " << (isServer ? "nullptr" : address) << ";\n"; in GenLogAfterExecute()
181 WriteLogForArgument(*writer, *a, isServer, "_transaction_log.output_args", isNdk); in GenLogAfterExecute()
185 const string expr = (isServer ? "" : "*") + returnVarName; in GenLogAfterExecute()
H A Daidl_to_cpp_common.h56 const string GenLogBeforeExecute(const string className, const AidlMethod& method, bool isServer,
60 const string& returnVarName, bool isServer, bool isNdk);