HomeSort by relevance Sort by last modified time
    Searched defs:CallMethod (Results 1 - 12 of 12) sorted by null

  /external/libbrillo/brillo/dbus/
dbus_object_test_helpers.h 56 inline std::unique_ptr<dbus::Response> CallMethod(
75 // MethodHandlerInvoker is similar to CallMethod() function above, except
dbus_method_invoker.h 18 // CallMethod and CallMethodWithTimeout are similar to CallMethodAndBlock but
44 // using brillo::dbus_utils::CallMethod;
55 // brillo::dbus_utils::CallMethod(obj,
306 inline void CallMethod(dbus::ObjectProxy* object,
  /external/nanopb-c/generator/google/protobuf/
service.py 65 def CallMethod(self, method_descriptor, rpc_controller,
86 before CallMethod() returns or it may be at some point in the future.
96 CallMethod() requires that the request is of a particular subclass of
104 service.CallMethod(method, request, callback)
111 This method isn't really needed, as the RpcChannel's CallMethod constructs
217 def CallMethod(self, method_descriptor, rpc_controller,
222 procedure looks the same as Service.CallMethod(), but the requirements
  /external/protobuf/python/google/protobuf/
service.py 65 def CallMethod(self, method_descriptor, rpc_controller,
86 before CallMethod() returns or it may be at some point in the future.
96 CallMethod() requires that the request is of a particular subclass of
104 service.CallMethod(method, request, callback)
111 This method isn't really needed, as the RpcChannel's CallMethod constructs
217 def CallMethod(self, method_descriptor, rpc_controller,
222 procedure looks the same as Service.CallMethod(), but the requirements
  /system/tpm/attestation/server/
dbus_service_test.cc 55 std::unique_ptr<dbus::Response> CallMethod(dbus::MethodCall* method_call) {
56 return brillo::dbus_utils::testing::CallMethod(
105 auto response = CallMethod(call.get());
128 auto response = CallMethod(call.get());
157 auto response = CallMethod(call.get());
188 auto response = CallMethod(call.get());
218 auto response = CallMethod(call.get());
256 auto response = CallMethod(call.get());
289 auto response = CallMethod(call.get());
319 auto response = CallMethod(call.get())
    [all...]
  /system/tpm/tpm_manager/client/
tpm_nvram_dbus_proxy.cc 52 CallMethod<DefineNvramReply>(tpm_manager::kDefineNvram, request, callback);
57 CallMethod<DestroyNvramReply>(tpm_manager::kDestroyNvram, request, callback);
62 CallMethod<WriteNvramReply>(tpm_manager::kWriteNvram, request, callback);
67 CallMethod<ReadNvramReply>(tpm_manager::kReadNvram, request, callback);
72 CallMethod<IsNvramDefinedReply>(
78 CallMethod<IsNvramLockedReply>(
84 CallMethod<GetNvramSizeReply>(tpm_manager::kGetNvramSize, request, callback);
90 void TpmNvramDBusProxy::CallMethod(const std::string& method_name,
tpm_ownership_dbus_proxy.cc 53 CallMethod<GetTpmStatusReply>(tpm_manager::kGetTpmStatus, request, callback);
59 CallMethod<TakeOwnershipReply>(
66 CallMethod<RemoveOwnerDependencyReply>(
73 void TpmOwnershipDBusProxy::CallMethod(const std::string& method_name,
  /external/protobuf/python/google/protobuf/internal/
service_reflection_test.py 47 def CallMethod(self, method, controller, request, response, callback):
78 srvc.CallMethod(service_descriptor.methods[1], rpc_controller,
97 srvc.CallMethod(service_descriptor.methods[1], rpc_controller,
104 def CallMethod(self, method, controller, request,
  /external/clang/test/CodeGenCXX/
mangle-ms-templates-memptrs.cpp 87 void CallMethod(T &o) {
99 CallMethod<S, &S::f>(s);
100 CallMethod<M, &M::f>(m);
101 CallMethod<V, &V::f>(v);
102 CallMethod<U, &U::f>(u);
105 CallMethod<S, &S::g>(s);
106 CallMethod<M, &M::g>(m);
107 CallMethod<V, &V::g>(v);
108 CallMethod<U, &U::g>(u);
112 CallMethod<O, &O::g>(o)
    [all...]
  /external/libchrome/dbus/
object_proxy.cc 115 void ObjectProxy::CallMethod(MethodCall* method_call,
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_unittest.cc     [all...]
  /art/test/004-JniTest/
jni_test.cc 445 void CallMethod(jobject o, jclass c, jmethodID m, bool nonstatic, const char* test_case) {
484 CallMethod(nullptr, nullptr, super_static_, false, "null object, null class, super static");
487 CallMethod(nullptr, super_, super_static_, false, "null object, super class, super static");
490 CallMethod(nullptr, sub_, super_static_, false, "null object, sub class, super static");
494 CallMethod(nullptr, nullptr, sub_static_, false, "null object, null class, sub static");
497 CallMethod(nullptr, sub_, sub_static_, false, "null object, super class, sub static");
500 CallMethod(nullptr, super_, sub_static_, false, "null object, super class, sub static");
541 CallMethod(o, c, m, true, test_case);

Completed in 437 milliseconds