| /system/fidl/fuchsia-net-stack/ |
| A D | stack.fidl | 11 /// The interface is added. 13 /// The interface is removed. 25 /// The interface is administratively disabled. 27 /// The interface is administratively enabled. 38 /// The IP address of the interface. 51 /// All info of an interface except the interface name. 70 /// The enablement status of the interface. 73 /// The physcial link status of the interface. 136 interface Stack { 156 … /// Add an address to the interface. If the interface already has an address of a given type that [all …]
|
| /system/banjo/ddk-protocol-usb-composite/ |
| A D | usb-composite.banjo | 11 interface UsbComposite { 14 /// Returns the USB descriptors following the interface's existing descriptors. 16 /// Marks the interface as claimed and appends the interface descriptor to the 17 /// interface's existing descriptors.
|
| /system/host/banjo/examples/ |
| A D | interface-ordinals.banjo | 9 interface Foo { 15 interface Bar { 19 interface FooAndBarWaitTheresMore : Foo, Bar {
|
| /system/host/fidl/examples/ |
| A D | interface-ordinals.fidl | 10 interface Foo { 17 interface Bar { 21 interface FooAndBarWaitTheresMore : Foo, Bar {
|
| /system/utest/fidl/fidl/ |
| A D | messages.fidl | 5 // A set of structs and interface methods designed to exercise fidl_encode, 10 interface Handles { 23 interface Arrays { 30 interface Strings { 39 interface Vectors { 69 interface Unions { 128 interface Structs {
|
| /system/uapp/lspwr/ |
| A D | lspwr.cpp | 111 void handle_event(pwrdev_t& interface) { in handle_event() argument 114 if ((status = get_source_info(interface.fidl_channel, &info)) != ZX_OK) { in handle_event() 120 printf("%s (%s): state change %s (%#x) -> %s (%#x)\n", interface.name, in handle_event() 121 type_to_string[interface.type], in handle_event() 122 get_state_string(interface.state, &old_buf), interface.state, in handle_event() 125 if (interface.type == fuchsia_hardware_power_PowerType_BATTERY && in handle_event() 127 if (get_battery_info(interface.fidl_channel) != ZX_OK) { in handle_event() 132 interface.state = info.state; in handle_event()
|
| /system/banjo/ddk-protocol-usb-dci/ |
| A D | usb-dci.banjo | 12 interface UsbDci { 16 /// Registers callback interface with the DCI driver. 17 SetInterface(UsbDciInterface @interface) -> (zx.status s); 33 [Layout = "ddk-interface"] 34 interface UsbDciInterface {
|
| /system/banjo/ddk-protocol-usb-function/ |
| A D | usb-function.banjo | 12 interface UsbFunction { 14 SetInterface(UsbFunctionInterface @interface) -> (zx.status s); 16 /// Allocates a unique interface descriptor number. 48 [Layout = "ddk-interface"] 49 interface UsbFunctionInterface { 70 /// Called to set an alternate setting for an interface due to a SET_INTERFACE control request. 72 /// to configure or disable the interface's endpoints as appropriate. 73 SetInterface(uint8 interface, uint8 alt_setting) -> (zx.status s);
|
| /system/core/netsvc/ |
| A D | netsvc.c | 130 const char* interface = NULL; in main() local 143 interface = argv[2]; in main() 154 if (interface != NULL) { in main() 155 printf("netsvc: looking for interface %s\n", interface); in main() 159 if (netifc_open(interface) != 0) { in main()
|
| /system/banjo/ddk-protocol-usb-hub/ |
| A D | usb-hub.banjo | 9 [Layout = "ddk-interface"] 10 interface UsbHubInterface {
|
| /system/dev/input/usb-hid/ |
| A D | usb-hid.c | 42 uint8_t interface; member 167 hid->interface, desc_buf, desc_len, len); in usb_hid_get_descriptor() 187 hid->interface, data, len, out_len); in usb_hid_get_report() 195 hid->interface, (void*)data, len, NULL); in usb_hid_set_report() 201 USB_HID_GET_IDLE, rpt_id, hid->interface, in usb_hid_get_idle() 209 hid->interface, NULL, 0, NULL); in usb_hid_set_idle() 214 return usb_hid_control(hid, USB_DIR_IN, USB_HID_GET_PROTOCOL, 0, hid->interface, protocol, in usb_hid_get_protocol() 221 USB_HID_SET_PROTOCOL, protocol, hid->interface, NULL, in usb_hid_set_protocol() 304 usbhid->interface = usbhid->info.dev_num = intf->bInterfaceNumber; in usb_hid_bind()
|
| /system/banjo/ddk-protocol-ethernet-mac/ |
| A D | ethernet-mac.banjo | 12 interface EthMacCallbacks { 17 interface EthMac {
|
| /system/dev/usb/usb-peripheral/ |
| A D | usb-peripheral.c | 84 usb_function_interface_t interface; member 244 size_t length = usb_function_interface_get_descriptors_size(interface); in usb_func_set_interface() 302 memcpy(&function->interface, interface, sizeof(function->interface)); in usb_func_set_interface() 483 if (function->interface.ops) { in usb_dev_set_configuration() 499 static zx_status_t usb_dev_set_interface(usb_device_t* dev, unsigned interface, in usb_dev_set_interface() argument 501 usb_function_t* function = dev->interface_map[interface]; in usb_dev_set_interface() 502 if (function && function->interface.ops) { in usb_dev_set_interface() 503 return usb_function_interface_set_interface(&function->interface, interface, alt_setting); in usb_dev_set_interface() 555 if (function && function->interface.ops) { in usb_dev_control() 570 if (function && function->interface.ops) { in usb_dev_control() [all …]
|
| /system/fidl/fuchsia-hardware-input/ |
| A D | input.fidl | 28 interface Device { 29 // Get the HID boot interface protocol this device supports 50 // Get a single report of the given (type, id) pair. This interface is not intended
|
| /system/banjo/ddk-protocol-test/ |
| A D | test.banjo | 16 interface TestFunc { 21 interface Test {
|
| /system/banjo/ddk-protocol-hidbus/ |
| A D | hidbus.banjo | 40 [Layout = "ddk-interface"] 41 interface HidbusIfc { 47 interface Hidbus {
|
| /system/fidl/fuchsia-cobalt/ |
| A D | cobalt_controller.fidl | 11 interface Controller { 21 // requests or responses, on either this interface or the Logger interface,
|
| /system/utest/banjo-compiler/testdata/ |
| A D | goodformat.banjo | 49 // My interface is so wonderful. 50 // It is the most wonderful interface of them all. 52 interface Iface
|
| A D | badformat.banjo.noformat | 50 // My interface is so wonderful. 51 // It is the most wonderful interface of them all. 53 interface Iface
|
| /system/utest/fidl-compiler/testdata/ |
| A D | badformat.fidl.noformat | 55 // My interface is so wonderful. 56 // It is the most wonderful interface of them all. 58 interface Iface
|
| A D | goodformat.fidl | 60 // My interface is so wonderful. 61 // It is the most wonderful interface of them all. 63 interface Iface
|
| /system/banjo/ddk-protocol-usb-bus/ |
| A D | usb-bus.banjo | 17 interface UsbBus { 31 [Layout = "ddk-interface"] 32 interface UsbBusInterface {
|
| /system/ulib/inet6/ |
| A D | netifc.c | 269 const char* interface = cookie; in netifc_open_cb() local 279 if (interface[0] == '@') interface++; in netifc_open_cb() 281 if (strncmp(topo_path, interface, sizeof(buf))) { in netifc_open_cb() 382 int netifc_open(const char* interface) { in netifc_open() argument 389 fdio_watch_directory(dirfd, netifc_open_cb, ZX_TIME_INFINITE, (void*)interface); in netifc_open()
|
| /system/banjo/ddk-protocol-intelhda-dsp/ |
| A D | intel-hda-dsp.banjo | 15 interface IhdaDspIrq { 20 interface IhdaDsp {
|
| /system/dev/audio/usb-audio/ |
| A D | rules.mk | 15 $(LOCAL_DIR)/usb-audio-control-interface.cpp \ 20 $(LOCAL_DIR)/usb-audio-stream-interface.cpp \
|