Lines Matching refs:method_name
64 std::string method_name = pair.first; in ExportAsync() local
65 VLOG(1) << "Exporting method: " << interface_name_ << "." << method_name; in ExportAsync()
66 std::string export_error = "Failed exporting " + method_name + " method"; in ExportAsync()
68 interface_name_, method_name, export_error, true); in ExportAsync()
72 interface_name_, method_name, method_handler, export_handler); in ExportAsync()
98 std::string method_name = pair.first; in ExportAndBlock() local
99 VLOG(1) << "Exporting method: " << interface_name_ << "." << method_name; in ExportAndBlock()
103 interface_name_, method_name, method_handler)) { in ExportAndBlock()
104 LOG(FATAL) << "Failed exporting " << method_name << " method"; in ExportAndBlock()
135 std::string method_name = method_call->GetMember(); in HandleMethodCall() local
140 << method_name << "(" << method_call->GetSignature() << ")"; in HandleMethodCall()
141 auto pair = handlers_.find(method_name); in HandleMethodCall()
146 "Unknown method: " + method_name); in HandleMethodCall()
150 VLOG(1) << "Dispatching DBus method call: " << method_name; in HandleMethodCall()
155 const std::string& method_name, in AddHandlerImpl() argument
158 << method_name; in AddHandlerImpl()
159 auto res = handlers_.insert(std::make_pair(method_name, std::move(handler))); in AddHandlerImpl()
160 CHECK(res.second) << "Method '" << method_name << "' already exists"; in AddHandlerImpl()