Searched refs:connected (Results 1 - 11 of 11) sorted by relevance

/fuchsia/zircon/system/ulib/ddk/include/ddk/protocol/
H A Dusb-dci.h22 void (*set_connected)(void* ctx, bool connected);
36 static inline void usb_dci_set_connected(usb_dci_interface_t* intf, bool connected) { argument
37 intf->ops->set_connected(intf->ctx, connected);
/fuchsia/zircon/system/host/xdc-server/
H A Dxdc-server.h22 void SetConnected(bool connected);
41 bool connected() const { return connected_; } function in class:xdc::Client
H A Dxdc-server.cpp36 void Client::SetConnected(bool connected) { argument
37 if (connected == connected_) {
39 stream_id(), connected ? "connected" : "disconnected");
43 stream_id(), connected ? "connected" : "disconnected");
44 connected_ = connected;
52 if (!stream_id() || (usb_writable && connected())) {
104 if (!connected()) {
312 (poll_fds_[i].revents & POLLHUP) && !client->connected();
[all...]
/fuchsia/zircon/system/host/bootserver/
H A Dtftp.c96 bool connected; member in struct:__anon555
114 if (!state->connected) {
149 if (!state->connected) {
161 if (!state->connected) {
167 state->connected = true;
195 state->connected = false;
223 .connected = false,
/fuchsia/zircon/system/host/netprotocol/
H A Dnetcp.c42 bool connected; member in struct:__anon580
115 if (!transport_info->connected) {
150 if (!transport_info->connected) {
163 if (!transport_info->connected) {
170 transport_info->connected = true;
213 transport_info.connected = false;
/fuchsia/zircon/system/dev/usb/xhci/
H A Dxdc.h71 // Whether a Root Hub Port is connected to a Debug Host and assigned to the Debug Capability.
72 bool connected; member in struct:__anon526
H A Dxdc.c35 // The maximum duration to transition from connected to configured state.
54 bool connected; member in struct:xdc_instance
274 if (!inst->connected) {
295 if (writable && inst->connected) {
363 inst->connected = xdc_get_host_stream(xdc, stream_id) != NULL;
787 // Check if any instance is registered to this stream id and update its connected status.
794 state->stream_id, state->online ? "connected" : "disconnected");
795 test->connected = state->online;
909 poll_state->connected = dcportsc & DCPORTSC_CCS;
910 if (poll_state->connected) {
[all...]
H A Dxhci-root-hub.c518 bool connected = !!(portsc & PORTSC_CCS); local
532 zxlogf(TRACE, "port %d PORTSC_CSC connected: %d\n", i, connected);
533 if (connected) {
/fuchsia/zircon/system/dev/usb/usb-peripheral/
H A Dusb-peripheral.c125 // true if we are connected to a host
126 bool connected; member in struct:usb_device
643 static void usb_dev_set_connected(void* ctx, bool connected) { argument
645 if (dev->connected != connected) {
646 if (!connected) {
655 dev->connected = connected;
/fuchsia/zircon/third_party/ulib/usb-dwc-regs/include/dwc2/
H A Dusb_dwc_regs.h328 * 1: a device is connected to this port.
329 * 0: no device is connected to this port.
333 uint32_t connected : 1; /* Bit 0 */ member in struct:dwc_regs::dwc_host_port_ctrlstatus::__anon1931
336 * Set by hardware when connected bit changes. Software can write
416 * considered meaningful if the connected bit is set.
559 * connected to, since that could be a full-speed or low-speed
/fuchsia/zircon/system/dev/usb/dwc2/
H A Ddwc2.c819 if (hw_status.connected)

Completed in 63 milliseconds