| /freebsd/share/man/man4/ |
| H A D | ugen.4 | 4 .\" All rights reserved. 50 Each USB device can have up to 16 endpoints. 51 Each of these endpoints 54 Each of the endpoints will have a different 63 To find out which endpoints exist, there are a series of 66 of the device, configurations, interfaces, and endpoints. 111 All endpoints handle the following 114 .Bl -tag -width indent 130 .Bl -tag -width indent 144 .Bd -literal [all …]
|
| H A D | usb.4 | 2 .\" Copyright (c) 2008 Hans Petter Selasky. All rights reserved. 35 .Bd -ragged -offset indent 42 .Bd -literal -offset indent 52 provides machine-independent bus support and drivers for 58 .Bl -tag -width 6n -offset indent 78 .Bl -tag -width 6n -offset indent 93 Within each device there can be up to 16 endpoints. 95 Each of these endpoints will communicate in one of four different modes: 104 The endpoints in a device are grouped into interfaces. 109 Different alternate settings can have different endpoints within it. [all …]
|
| /freebsd/sys/dev/usb/ |
| H A D | usb_device.h | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 4 * Copyright (c) 2008-2019 Hans Petter Selasky. All rights reserved. 66 * refer to the USB specification for a definition of "endpoints" and 110 * The following structure is used for power-save purposes. The data 122 * endpoints for an USB configuration in USB device side mode. 136 * endpoints for an USB configuration in USB device side mode. 210 struct usb_endpoint *endpoints; member 212 struct usb_endpoint endpoints[USB_MAX_EP_UNITS]; member 218 struct usb_device *parent_hs_hub; /* high-speed parent HUB */ [all …]
|
| H A D | usb_device.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 4 * Copyright (c) 2008-2023 Hans Petter Selasky 119 int usb_template = -1; 127 /*------------------------------------------------------------------------* 133 *------------------------------------------------------------------------*/ 147 max--; in usb_trigger_reprobe_on_off() 149 if (bus == NULL || bus->devices == NULL || in usb_trigger_reprobe_on_off() 150 bus->devices[USB_ROOT_HUB_ADDR] == NULL) { in usb_trigger_reprobe_on_off() 155 udev = bus->devices[USB_ROOT_HUB_ADDR]; in usb_trigger_reprobe_on_off() [all …]
|
| /freebsd/usr.bin/tr/ |
| H A D | tr.1 | 2 .\" The Regents of the University of California. All rights reserved. 60 .Bl -tag -width Ds 133 .Bl -tag -width [:equiv:] 140 To follow an octal sequence with a digit as a character, left zero-pad 145 .Bl -column "\ea" 148 .It "\ef <form-feed>" 156 .It c-c 157 For non-octal range endpoints 158 represents the range of characters between the range endpoints, inclusive, 161 If either or both of the range endpoints are octal sequences, it [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/interconnect/ |
| H A D | interconnect.txt | 14 etc. The consumer drivers set constraints on interconnect path (or endpoints) 16 consumers, such as in the case where two network-on-chip fabrics interface 20 - compatible : contains the interconnect provider compatible string 21 - #interconnect-cells : number of cells in a interconnect specifier needed to 28 compatible = "qcom,msm8916-snoc"; 29 #interconnect-cells = <1>; 31 clock-names = "bus_clk", "bus_a_clk"; 49 to both endpoints and in such cases, this information will be passed 54 interconnect-names : List of interconnect path name strings sorted in the same 56 interconnect-names to match interconnect paths with interconnect [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/usb/ |
| H A D | snps,dwc3-common.yaml | 1 # SPDX-License-Identifier: GPL-2.0 3 --- 4 $id: http://devicetree.org/schemas/usb/snps,dwc3-common.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Felipe Balbi <balbi@kernel.org> 14 vendor-specific implementation or as a standalone component. 17 - $ref: usb-drd.yaml# 18 - if: 24 - dr_mode 28 $ref: usb-xhci.yaml# [all …]
|
| /freebsd/sys/dev/vmware/vmci/ |
| H A D | vmci_defs.h | 1 /*- 4 * SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0) 15 #pragma GCC diagnostic ignored "-Wcast-qual" 58 * Maximum MSI/MSI-X interrupt vectors in the device. 85 /* VMCI reserved hypervisor datagram resource IDs. */ 110 * hypervisor (CID 0) because RID 1 is already reserved. 121 * VMCI reserved host datagram resource IDs. 176 /* The lowest 16 context ids are reserved for internal use. */ 186 * Well-known context id, a logical context that contains a set of 187 * well-known services. This context ID is now obsolete. [all …]
|
| /freebsd/sys/arm64/coresight/ |
| H A D | coresight.c | 1 /*- 2 * Copyright (c) 2018-2020 Ruslan Bukin <br@bsdpad.com> 3 * All rights reserved. 6 * Cambridge Computer Laboratory under DARPA/AFRL contract FA8750-10-C-0237 53 cs_dev->dev = desc->dev; in coresight_register() 54 cs_dev->pdata = desc->pdata; in coresight_register() 55 cs_dev->dev_type = desc->dev_type; in coresight_register() 69 if (pdata->out_ports != 1) in coresight_get_output_endpoint() 72 TAILQ_FOREACH(endp, &pdata->endpoints, link) { in coresight_get_output_endpoint() 73 if (endp->input == 0) in coresight_get_output_endpoint() [all …]
|
| H A D | coresight_fdt.c | 1 /*- 2 * Copyright (c) 2018-2020 Ruslan Bukin <br@bsdpad.com> 3 * All rights reserved. 6 * Cambridge Computer Laboratory under DARPA/AFRL contract FA8750-10-C-0237 66 if (ret == -1) in coresight_fdt_get_ports() 71 port_reg = -1; in coresight_fdt_get_ports() 78 "remote-endpoint", &xref, in coresight_fdt_get_ports() 79 sizeof(xref)) == -1) { in coresight_fdt_get_ports() 85 endp->my_node = endpoint_child; in coresight_fdt_get_ports() 86 endp->their_node = OF_node_from_xref(xref); in coresight_fdt_get_ports() [all …]
|
| /freebsd/sys/netinet/ |
| H A D | sctp_sysctl.h | 1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 4 * Copyright (c) 2007, by Cisco Systems, Inc. All rights reserved. 5 * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved. 6 * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved. 93 /* JRS - Variable for default congestion control module */ 95 /* RS - Variable for default stream scheduling module */ 138 /* autoasconf: Enable SCTP Auto-ASCONF */ 139 #define SCTPCTL_AUTOASCONF_DESC "Enable SCTP Auto-ASCONF" 144 /* autoasconf: Enable SCTP Auto-ASCONF */ [all …]
|
| /freebsd/contrib/netbsd-tests/net/if_bridge/ |
| H A D | t_bridge.sh | 1 # $NetBSD: t_bridge.sh,v 1.16 2016/11/25 08:51:16 ozaki-r Exp $ 4 # All rights reserved. 40 DEBUG=${DEBUG:-false} 89 atf_check -s exit:0 rump.ifconfig shmif0 inet6 ${addr} 91 atf_check -s exit:0 rump.ifconfig shmif0 inet ${addr} netmask 0xffffff00 94 atf_check -s exit:0 rump.ifconfig shmif0 up 106 atf_check -s exit:0 -o match:shmif0 rump.ifconfig 108 atf_check -s exit:0 -o ignore rump.ping6 -n -c 1 -X $TIMEOUT ${addr} 110 atf_check -s exit:0 -o ignore rump.ping -n -w $TIMEOUT -c 1 ${addr} 120 atf_check -s exit:0 -o match:shmif0 rump.ifconfig [all …]
|
| /freebsd/crypto/heimdal/lib/roken/ |
| H A D | sendmsg.c | 4 * All rights reserved. 47 struct iovec *iov = msg->msg_iov; in sendmsg() 49 for(i = 0; i < msg->msg_iovlen; ++i) in sendmsg() 54 return -1; in sendmsg() 57 for (i = 0; i < msg->msg_iovlen; ++i) { in sendmsg() 61 ret = sendto (s, buf, tot, flags, msg->msg_name, msg->msg_namelen); in sendmsg() 69 * Copyright (c) 2009, Secure Endpoints Inc. 70 * All rights reserved. 76 * - Redistributions of source code must retain the above copyright 79 * - Redistributions in binary form must reproduce the above copyright [all …]
|
| /freebsd/lib/libc/rpc/ |
| H A D | auth_time.c | 19 * All rights reserved. 45 #include "un-namespace.h" 68 * from internet time-service time, into UNIX time we subtract the 71 #define NYEARS (1970 - 1900) 93 sin->sin_addr.s_addr |= (a[i] & 0x000000FF) << (8 * i); in uaddr_to_sockaddr() 98 sin->sin_family = AF_INET; /* always */ in uaddr_to_sockaddr() 99 bcopy((char *)&p_bytes, (char *)&sin->sin_port, 2); in uaddr_to_sockaddr() 133 * host - name of the time host 134 * srv - nis_server struct to use. 135 * eps[] - array of endpoints [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | RegisterCoalescer.cpp | 1 //===- RegisterCoalescer.cpp - Generic Register Coalescing Interface ------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 13 //===----------------------------------------------------------------------===// 69 STATISTIC(NumReMats , "Number of instructions re-materialized"); 75 static cl::opt<bool> EnableJoining("join-liveintervals", 79 static cl::opt<bool> UseTerminalRule("terminal-rule", 85 EnableJoinSplits("join-splitedges", 90 EnableGlobalCopies("join-globalcopies", 95 VerifyCoalescing("verify-coalescing", [all …]
|
| /freebsd/sys/dev/usb/controller/ |
| H A D | avr32dci.h | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 4 * Copyright (c) 2009 Hans Petter Selasky. All rights reserved. 46 /* 0x08 - 0x0C Reserved */ 62 #define AVR32_EPTRST 0x1C /* Endpoints Reset */ 65 /* 0x20 - 0xCC Reserved */ 75 /* 0xE4 - 0xE8 Reserved */ 86 #define AVR32_EPTCFG_EPSIZE(n) ((n)-3) /* power of two */ 117 /* 0x110 Reserved */ 137 /* 0x300 - 0x30C Reserved */ [all …]
|
| H A D | musb_otg.h | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 4 * Copyright (c) 2008 Hans Petter Selasky. All rights reserved. 242 #define MUSB2_MASK_FIFOADD 0xFFF /* unit is 8-bytes */ 283 #define MUSB2_EP_MAX 16 /* maximum number of endpoints */ 289 bus_space_read_2((sc)->sc_io_tag, (sc)->sc_io_hdl, reg) 292 bus_space_write_2((sc)->sc_io_tag, (sc)->sc_io_hdl, reg, data) 295 bus_space_read_1((sc)->sc_io_tag, (sc)->sc_io_hdl, reg) 298 bus_space_write_1((sc)->sc_io_tag, (sc)->sc_io_hdl, reg, data) 416 * endpoints supported */ [all …]
|
| /freebsd/sys/dev/usb/net/ |
| H A D | if_auereg.h | 1 /*- 2 * SPDX-License-Identifier: BSD-4-Clause 5 * Bill Paul <wpaul@ee.columbia.edu>. All rights reserved. 18 * 4. Neither the name of the author nor the names of any co-contributors 37 * chip. The Pegasus uses a total of four USB endpoints: the control 56 * Note that while the ADMtek technically has four endpoints, the control 186 #define GET_MII(sc) uether_getmii(&(sc)->sc_ue) 218 #define AUE_LOCK(_sc) mtx_lock(&(_sc)->sc_mtx) 219 #define AUE_UNLOCK(_sc) mtx_unlock(&(_sc)->sc_mtx) 220 #define AUE_LOCK_ASSERT(_sc, t) mtx_assert(&(_sc)->sc_mtx, t)
|
| /freebsd/lib/libusb/ |
| H A D | libusb20.h | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 4 * Copyright (c) 2008-2009 Hans Petter Selasky. All rights reserved. 5 * Copyright (c) 2007-2008 Daniel Drake. All rights reserved. 6 * Copyright (c) 2001 Johannes Erdfelt. All rights reserved. 54 LIBUSB20_ERROR_IO = -1, 57 LIBUSB20_ERROR_INVALID_PARAM = -2, 60 LIBUSB20_ERROR_ACCESS = -3, 63 LIBUSB20_ERROR_NO_DEVICE = -4, 66 LIBUSB20_ERROR_NOT_FOUND = -5, [all …]
|
| H A D | libusb20_desc.h | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 4 * Copyright (c) 2008 Hans Petter Selasky. All rights reserved. 5 * Copyright (c) 2007-2008 Daniel Drake. All rights reserved. 6 * Copyright (c) 2001 Johannes Erdfelt. All rights reserved. 71 ((void *)(((const uint8_t *)(ptr)) + (off) - ((const uint8_t *)0))) 205 (ptr)->what##_FORMAT = what##_FORMAT; \ 349 /** Class is vendor-specific */ 422 /** In: device-to-host */ 425 /** Out: host-to-device */ [all …]
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | SSL_get_handshake_rtt.pod | 6 - get round trip time for SSL Handshake 16 SSL_get_handshake_rtt() retrieves the round-trip time (RTT) for I<ssl>. 37 metric includes processing time on both endpoints, as this is based on TLS 38 protocol-level messages and the TLS protocol is not designed to measure 46 Returns -1 if, while retrieving the TLS handshake RTT, an error occurs. 54 Copyright 2023-2024 The OpenSSL Project Authors. All Rights Reserved.
|
| /freebsd/share/man/man9/ |
| H A D | usbdi.9 | 3 .\" All rights reserved. 150 "xfer->priv_sc". 154 This pointer is used to initialize "xfer->priv_mtx". 156 A non-zero return value indicates failure. 185 This function is always non-blocking and must be called with the 186 so-called private USB mutex locked. 198 This function is always non-blocking and must be called with the 199 so-called private USB mutex locked. 257 .Bd -literal -offset indent 312 .Bd -literal -offset indent [all …]
|
| /freebsd/crypto/heimdal/lib/heimdal/ |
| H A D | dllmain.c | 2 * Copyright (c) 2009, Secure Endpoints Inc. 3 * All rights reserved. 9 * - Redistributions of source code must retain the above copyright 12 * - Redistributions in binary form must reproduce the above copyright
|
| H A D | heimdal-version.rc | 2 * Copyright (c) 2010, Secure Endpoints Inc. 3 * All rights reserved. 9 * - Redistributions of source code must retain the above copyright 12 * - Redistributions in binary form must reproduce the above copyright
|
| /freebsd/crypto/heimdal/lib/krb5/ |
| H A D | ccache_plugin.h | 2 * Copyright (c) 2010, Secure Endpoints Inc. 3 * All rights reserved. 9 * - Redistributions of source code must retain the above copyright 12 * - Redistributions in binary form must reproduce the above copyright
|