| /system/host/fidl/lib/ |
| A D | ordinals.cpp | 29 const raw::InterfaceMethod& method) { in GetOrdinal() argument 30 if (method.ordinal != nullptr) in GetOrdinal() 31 return *method.ordinal; in GetOrdinal() 33 std::string method_name = GetSelector(method.attributes.get(), method.identifier->location()); in GetOrdinal() 59 return raw::Ordinal(*method.identifier, ordinal); in GetOrdinal()
|
| A D | flat_ast.cpp | 2071 auto name_result = method_scope.names.Insert(method.name.data(), method.name); in CompileInterface() 2073 return Fail(method.name, in CompileInterface() 2076 auto ordinal_result = method_scope.ordinals.Insert(method.ordinal->value, method.name); in CompileInterface() 2081 fidl::ordinals::GetSelector(method.attributes.get(), method.name)); in CompileInterface() 2125 if (method.maybe_request) { in CompileInterface() 2129 if (method.maybe_response) { in CompileInterface() 2143 method.attributes.get()); in CompileInterface() 2148 if (method.maybe_request) { in CompileInterface() 2150 method.maybe_request, in CompileInterface() 2153 method.maybe_request, in CompileInterface() [all …]
|
| A D | tables_generator.cpp | 497 const auto& method = *method_pointer; in CompileFields() local 514 if (method.maybe_request) { in CompileFields() 515 CompileMessage(*method.maybe_request); in CompileFields() 517 if (method.maybe_response) { in CompileFields() 518 CompileMessage(*method.maybe_response); in CompileFields() 606 const auto& method = *method_pointer; in Compile() local 607 std::string method_name = NameMethod(interface_name, method); in Compile() 608 std::string method_qname = NameMethod(interface_qname, method); in Compile() 617 if (method.maybe_request) { in Compile() 620 if (method.maybe_response) { in Compile() [all …]
|
| A D | raw_ast.cpp | 200 for (auto method = methods.begin(); in Accept() local 201 method != methods.end(); in Accept() 202 ++method) { in Accept() 203 visitor.OnInterfaceMethod(*method); in Accept()
|
| A D | c_generator.cpp | 735 const auto& method = *method_pointer; in NameInterfaces() local 738 named_method.ordinal = method.ordinal->value; in NameInterfaces() 740 named_method.identifier = NameIdentifier(method.name); in NameInterfaces() 742 if (method.maybe_request != nullptr) { in NameInterfaces() 747 method.maybe_request->members, method.maybe_request->typeshape}); in NameInterfaces() 749 if (method.maybe_response != nullptr) { in NameInterfaces() 750 if (method.maybe_request == nullptr) { in NameInterfaces() 756 method.maybe_response->members, in NameInterfaces() 757 method.maybe_response->typeshape}); in NameInterfaces() 763 method.maybe_response->members, in NameInterfaces() [all …]
|
| /system/ulib/async/include/lib/async/cpp/ |
| A D | task.h | 165 … void (Class::*method)(async_dispatcher_t* dispatcher, async::TaskBase* task, zx_status_t status)> 175 (self->instance_->*method)(dispatcher, self, status); in CallHandler() 212 void (Class::*method)()> 223 (self->instance_->*method)(); in CallHandler()
|
| A D | receiver.h | 96 void (Class::*method)(async_dispatcher_t* dispatcher, async::ReceiverBase* receiver, 107 (self->instance_->*method)(dispatcher, self, status, data); in CallHandler()
|
| A D | exception.h | 110 void (Class::*method)(async_dispatcher_t* dispatcher, async::ExceptionBase* receiver, 124 (self->instance_->*method)(dispatcher, self, status, report); in CallHandler()
|
| A D | trap.h | 102 void (Class::*method)(async_dispatcher_t* dispatcher, async::GuestBellTrapBase* trap, 114 (self->instance_->*method)(dispatcher, self, status, bell); in CallHandler()
|
| A D | wait.h | 130 … void (Class::*method)(async_dispatcher_t* dispatcher, async::WaitBase* wait, zx_status_t status, 145 (self->instance_->*method)(dispatcher, self, status, signal); in CallHandler()
|
| /system/fidl/fuchsia-crash/ |
| A D | crash.fidl | 27 // This method is responsible for resuming or stopping the thread once the 30 // The behavior of this method varies depending on the implementation, but 47 // The behavior of this method varies depending on the implementation, but 58 // The behavior of this method varies depending on the implementation, but
|
| /system/host/fidl/include/fidl/ |
| A D | ordinals.h | 27 const raw::InterfaceMethod& method);
|
| /system/host/banjo/lib/ |
| A D | tables_generator.cpp | 441 const auto& method = *method_pointer; in CompileFields() local 458 if (method.maybe_request) { in CompileFields() 459 CompileMessage(*method.maybe_request); in CompileFields() 461 if (method.maybe_response) { in CompileFields() 462 CompileMessage(*method.maybe_response); in CompileFields() 525 const auto& method = *method_pointer; in Compile() local 526 std::string method_name = NameMethod(interface_name, method); in Compile() 527 std::string method_qname = NameMethod(interface_qname, method); in Compile() 536 if (method.maybe_request) { in Compile() 539 if (method.maybe_response) { in Compile() [all …]
|
| A D | raw_ast.cpp | 198 for (auto method = methods.begin(); in Accept() local 199 method != methods.end(); in Accept() 200 ++method) { in Accept() 201 visitor.OnInterfaceMethod(*method); in Accept()
|
| A D | flat_ast.cpp | 748 for (auto& method : interface_declaration->methods) { in ConsumeInterfaceDeclaration() local 749 auto attributes = std::move(method->attributes); in ConsumeInterfaceDeclaration() 754 if (method->maybe_request != nullptr) { in ConsumeInterfaceDeclaration() 766 if (method->maybe_response != nullptr) { in ConsumeInterfaceDeclaration() 1163 if (method.maybe_request != nullptr) { in DeclDependencies() 1168 if (method.maybe_response != nullptr) { in DeclDependencies() 1327 for (const auto& method : interface->methods) { in CompileInterface() local 1328 auto name_result = method_scope.names.Insert(method.name.data(), method.name); in CompileInterface() 1330 return Fail(method.name, in CompileInterface() 1358 if (method.maybe_request) { in CompileInterface() [all …]
|
| A D | ddk_generator.cpp | 1186 const auto& method = *method_pointer; in NameInterfaces() local 1187 std::string c_name = ToSnakeCase(method.name.data()); in NameInterfaces() 1189 .async = method.HasAttribute("Async"), in NameInterfaces() 1194 .doc = method.GetAttribute("Doc"), in NameInterfaces() 1195 .input_parameters = method.maybe_request->parameters, in NameInterfaces() 1232 const auto& method = *method_pointer; in NameInterfaces() local 1234 NameIdentifier(method.name); in NameInterfaces() 1235 std::string c_name = ToSnakeCase(method.name.data()); in NameInterfaces() 1236 std::string proxy_name = NameIdentifier(method.name); in NameInterfaces() 1238 .async = method.HasAttribute("Async"), in NameInterfaces() [all …]
|
| /system/fidl/fuchsia-process/ |
| A D | launcher.fidl | 128 // Calling this method multiple times concatenattes the arguments. 133 // Calling this method multiple times concatenates the variables. 141 // Calling this method multiple times concatenates the names. 146 // Calling this method multiple times concatenates the handles.
|
| /system/dev/bus/acpi/dev/ |
| A D | dev-ec.c | 265 char method[5] = {0}; in acpi_ec_thread() local 266 snprintf(method, sizeof(method), "_Q%02x", event_code); in acpi_ec_thread() 267 xprintf("acpi-ec: Invoking method %s\n", method); in acpi_ec_thread() 268 AcpiEvaluateObject(dev->acpi_handle, method, NULL, NULL); in acpi_ec_thread() 269 xprintf("acpi-ec: Invoked method %s\n", method); in acpi_ec_thread()
|
| /system/fidl/fuchsia-cobalt/ |
| A D | cobalt.fidl | 122 // with new versions of Cobalt. For other cases consider the method 146 // with new versions of Cobalt. For other cases consider the method 170 // with new versions of Cobalt. For other cases consider the method 193 // with new versions of Cobalt. For other cases consider the method 262 // the LogEventOccurred() method, but with a |component|. 329 // This method is intended to be used in the following situation: 403 // method. 456 // method. 503 // This method is intended to be used in situations where the client 558 // See the method LogIntHistogram() in the Logger interface for more [all …]
|
| /system/banjo/ddk-protocol-block/ |
| A D | block.banjo | 82 /// before the queue() method returns. 98 /// before the queue() method returns.
|
| /system/core/devmgr/devhost/ |
| A D | core.cpp | 333 #define DEFAULT_IF_NULL(ops,method) \ argument 334 if (ops->method == nullptr) { \ 335 ops->method = default_##method; \
|
| /system/utest/fbl/include/fbl/tests/intrusive_containers/ |
| A D | associative_container_test_environment.h | 53 bool SetTestObjKeys(const PtrType& test_obj, PopulateMethod method) { in SetTestObjKeys() argument 63 switch (method) { in SetTestObjKeys() 96 PopulateMethod method, 125 ASSERT_TRUE(SetTestObjKeys(new_object, method), "");
|
| /system/utest/fit/ |
| A D | traits_tests.cpp | 68 int method(float, bool);
|
| /system/banjo/ddk-protocol-nand/ |
| A D | nand.banjo | 10 /// NandOperation's are submitted for processing via the queue() method of the 117 /// via the callback. The callback may be called before the Queue() method returns.
|
| /system/fidl/fuchsia-sysmem/ |
| A D | allocator.fidl | 59 // This method returns once all tokens corresponding to the |token_peer| 83 // This method returns once all other tokens for the collection are
|