Searched refs:method (Results 1 - 17 of 17) sorted by relevance

/fuchsia/zircon/system/ulib/async/include/lib/async/cpp/
H A Dtask.h163 void (Class::*method)(async_dispatcher_t* dispatcher, async::TaskBase* task, zx_status_t status)>
173 (self->instance_->*method)(dispatcher, self, status);
210 void (Class::*method)()>
221 (self->instance_->*method)();
H A Dreceiver.h94 void (Class::*method)(async_dispatcher_t* dispatcher, async::ReceiverBase* receiver,
105 (self->instance_->*method)(dispatcher, self, status, data);
H A Dexception.h99 void (Class::*method)(async_dispatcher_t* dispatcher, async::ExceptionBase* receiver,
113 (self->instance_->*method)(dispatcher, self, status, report);
H A Dwait.h128 void (Class::*method)(async_dispatcher_t* dispatcher, async::WaitBase* wait, zx_status_t status,
143 (self->instance_->*method)(dispatcher, self, status, signal);
H A Dtrap.h100 void (Class::*method)(async_dispatcher_t* dispatcher, async::GuestBellTrapBase* trap,
112 (self->instance_->*method)(dispatcher, self, status, bell);
/fuchsia/zircon/system/dev/bus/acpi/
H A Ddev-ec.c265 char method[5] = {0}; local
266 snprintf(method, sizeof(method), "_Q%02x", event_code);
267 xprintf("acpi-ec: Invoking method %s\n", method);
268 AcpiEvaluateObject(dev->acpi_handle, method, NULL, NULL);
269 xprintf("acpi-ec: Invoked method %s\n", method);
/fuchsia/zircon/system/host/fidl/lib/
H A Draw_ast.cpp6 // nodes. Generally, all they do is invoke the appropriate TreeVisitor method
203 for (auto method = methods.begin();
204 method != methods.end();
205 ++method) {
206 visitor.OnInterfaceMethod(*method);
H A Dflat_ast.cpp726 for (auto& method : interface_declaration->methods) {
727 auto attributes = std::move(method->attributes);
728 auto ordinal_literal = std::move(method->ordinal);
736 SourceLocation method_name = method->identifier->location();
739 if (method->maybe_request != nullptr) {
741 for (auto& parameter : method->maybe_request->parameter_list) {
751 if (method->maybe_response != nullptr) {
753 for (auto& parameter : method->maybe_response->parameter_list) {
1192 for (const auto& method : interface_decl->methods) {
1193 if (method
[all...]
H A Dtables_generator.cpp495 const auto& method = *method_pointer; local
512 if (method.maybe_request) {
513 CompileMessage(*method.maybe_request);
515 if (method.maybe_response) {
516 CompileMessage(*method.maybe_response);
602 const auto& method = *method_pointer; local
603 std::string method_name = NameMethod(interface_name, method);
604 std::string method_qname = NameMethod(interface_qname, method);
613 if (method.maybe_request) {
614 CreateMessage(*method
[all...]
H A Dc_generator.cpp662 const auto& method = *method_pointer; local
664 std::string method_name = NameMethod(named_interface.c_name, method);
665 named_method.ordinal = method.ordinal.Value();
667 named_method.identifier = NameIdentifier(method.name);
669 if (method.maybe_request != nullptr) {
674 method.maybe_request->parameters, method.maybe_request->typeshape});
676 if (method.maybe_response != nullptr) {
677 if (method.maybe_request == nullptr) {
683 method
[all...]
H A Djson_generator.cpp376 void JSONGenerator::Generate(const flat::Interface::Method* method) { argument
377 assert(method != nullptr);
378 const auto& value = *method;
H A Dnames.cpp323 std::string NameMethod(StringView interface_name, const flat::Interface::Method& method) { argument
324 return std::string(interface_name) + NameIdentifier(method.name);
/fuchsia/zircon/system/core/devmgr/
H A Ddevhost-core.cpp371 #define DEFAULT_IF_NULL(ops,method) \
372 if (ops->method == nullptr) { \
373 ops->method = default_##method; \
/fuchsia/zircon/system/host/fidl/include/fidl/
H A Dnames.h40 std::string NameMethod(StringView interface_name, const flat::Interface::Method& method);
/fuchsia/zircon/system/utest/fbl/include/fbl/tests/intrusive_containers/
H A Dassociative_container_test_environment.h45 // Utility method for checking the size of the container via either size()
53 bool SetTestObjKeys(const PtrType& test_obj, PopulateMethod method) { argument
59 // Assign a key to the object based on the chosen populate method.
63 switch (method) {
96 PopulateMethod method,
125 ASSERT_TRUE(SetTestObjKeys(new_object, method), "");
95 Populate(ContainerType& container, PopulateMethod method, RefAction ref_action = RefAction::HoldSome) argument
/fuchsia/zircon/third_party/lib/acpica/source/common/
H A Ddmextern.c403 /* Each line defines a method */
459 AcpiOsPrintf ("%s: Importing method external (%u arguments) %s\n",
479 AcpiOsPrintf ("%s: Imported %u external method definitions\n",
813 /* Duplicate method, check that the Value (ArgCount) is the same */
820 "External method arg count mismatch %s: "
970 * RETURN: The number of control method externals in the external list
972 * DESCRIPTION: Return the number of method externals that have been generated.
973 * If any control method externals have been found, we must
977 * method invocation itself.
1080 /* Emit any unresolved method external
[all...]
/fuchsia/zircon/third_party/ulib/musl/src/math/x86_64/
H A Dexpl.S4 # using the exact multiplication method of Dekker and Veltkamp

Completed in 176 milliseconds