/freebsd-src/contrib/tzdata/ |
H A D | backward | 18 # backward compatibility link. Each section is sorted by link name. 20 # A "#= TARGET1" comment labels each link inserted only because some 24 # "Link Australia/Sydney Australia/ACT #= Australia/Canberra" would be 25 # "Link Australia/Canberra Australia/ACT" were it not that data lines 33 # Link TARGET LINK-NAME #= TARGET1 34 Link Australia/Sydney Australia/ACT #= Australia/Canberra 35 Link Australia/Lord_Howe Australia/LHI 36 Link Australi [all...] |
/freebsd-src/sys/dev/qat/qat_api/firmware/include/ |
H A D | icp_qat_fw_mmp_ids.h | 22 * @li 1 input parameters : @link 24 * @li 2 output parameters : @link 25 * icp_qat_fw_mmp_ecsm2_generator_multiplication_output_s::xd xd @endlink @link 30 * @li 3 input parameters : @link 31 * icp_qat_fw_mmp_ecsm2_point_multiplication_input_s::k k @endlink @link 32 * icp_qat_fw_mmp_ecsm2_point_multiplication_input_s::x x @endlink @link 34 * @li 2 output parameters : @link 35 * icp_qat_fw_mmp_ecsm2_point_multiplication_output_s::xd xd @endlink @link 40 * @li 2 input parameters : @link icp_qat_fw_mmp_ecsm2_point_verify_input_s::x x 41 * @endlink @link icp_qat_fw_mmp_ecsm2_point_verify_input_s::y y @endlink [all …]
|
/freebsd-src/contrib/ntp/libntp/lib/isc/include/isc/ |
H A D | list.h | 36 #define ISC_LINK_INIT_TYPE(elt, link, type) \ argument 38 (elt)->link.prev = (type *)(-1); \ 39 (elt)->link.next = (type *)(-1); \ 41 #define ISC_LINK_INIT(elt, link) \ argument 42 ISC_LINK_INIT_TYPE(elt, link, void) 43 #define ISC_LINK_LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1)) argument 49 #define __ISC_LIST_PREPENDUNSAFE(list, elt, link) \ argument 52 (list).head->link.prev = (elt); \ 55 (elt)->link.prev = NULL; \ 56 (elt)->link.next = (list).head; \ [all …]
|
/freebsd-src/lib/libc/include/isc/ |
H A D | list.h | 34 #define LINK(type) struct { type *prev, *next; } macro 35 #define INIT_LINK_TYPE(elt, link, type) \ argument 37 (elt)->link.prev = (type *)(-1); \ 38 (elt)->link.next = (type *)(-1); \ 40 #define INIT_LINK(elt, link) \ argument 41 INIT_LINK_TYPE(elt, link, void) 42 #define LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1) && \ argument 43 (void *)((elt)->link.next) != (void *)(-1)) 49 #define PREPEND(list, elt, link) \ argument 51 INSIST(!LINKED(elt, link));\ [all …]
|
/freebsd-src/sys/dev/acpica/ |
H A D | acpi_pci_link.c | 50 ACPI_SERIAL_DECL(pci_link, "ACPI PCI link"); 56 * An ACPI PCI link device may contain multiple links. Each link has its 57 * own ACPI resource. _PRT entries specify which link is being used via 86 struct link; 91 struct link *pl_links; 95 struct link { struct 122 static MALLOC_DEFINE(M_PCI_LINK, "pci_link", "ACPI PCI Link structures"); 161 device_set_descf(dev, "ACPI PCI Link %s", name); in acpi_pci_link_probe() 163 device_set_desc(dev, "ACPI PCI Link"); in acpi_pci_link_probe() 209 struct link *link; in link_add_crs() local [all …]
|
/freebsd-src/sys/dev/ocs_fc/ |
H A D | ocs_list.h | 64 * @brief list/link structure 66 * used for both the list object, and the link object(s). offset 69 * when ocs_list_t is used as a link (ocs_list_link_t). 76 ocs_list_t *next; /*<< pointer to head of list (or next if link) */ 77 ocs_list_t *prev; /*<< pointer to tail of list (or previous if link) */ 78 uint32_t offset; /*<< offset in bytes to the link element of the objects in list */ 82 /* item2link - return pointer to link given pointer to an item */ 85 /* link2item - return pointer to item given pointer to a link */ 86 #define link2item(list, link) ((void*) (((uint8_t*)(link)) - (list)->offset)) argument 92 * offsetof(type, link) [all …]
|
/freebsd-src/bin/ln/ |
H A D | ln.1 | 37 .Nm link 38 .Nd link files 52 .Nm link 67 instead, a link 71 How a link 73 to a file is one of the differences between a hard and symbolic link. 79 so that the link may occur. 100 When creating a hard link to a symbolic link, 101 create a hard link to the target of the symbolic link. 107 When creating a hard link to a symbolic link, [all …]
|
/freebsd-src/bin/ln/tests/ |
H A D | ln_test.sh | 42 atf_set "descr" "Verify that when creating a hard link to a " \ 43 "symbolic link, '-L' option creates a hard" \ 44 "link to the target of the symbolic link" 58 atf_set "descr" "Verify that when creating a hard link to a " \ 59 "symbolic link, '-P' option creates a hard " \ 60 "link to the symbolic link itself" 74 "'-f' option unlinks it so that link may occur" 86 atf_set "descr" "Verify whether creating a hard link fails if the " \ 99 atf_set "descr" "Verify whether creating a symbolic link fails if " \ 112 "link, '-shf' option prevents following the link" [all …]
|
/freebsd-src/share/man/man4/ |
H A D | ng_ppp.4 | 56 multi-link PPP, Van Jacobson compression, PPP compression, PPP 58 A single PPP node corresponds to one PPP multi-link bundle. 60 There is a separate hook for each PPP link in the bundle, plus 75 In general, the PPP node enables a specific link or functionality when 82 When a link is connected but disabled, traffic can still flow on 83 the link via the 86 .Sh LINK HOOKS 96 information fields, but no checksum or other link-specific fields. 105 field compression has been enabled for the link, the address and 112 should not be connected and enabled until the corresponding link [all …]
|
H A D | ng_bridge.4 | 48 Each link (represented by a connected hook) is used to transmit 50 As packets are received, the node learns which link each 53 link only, and other links are spared the traffic. 55 every received packet to every other link. 65 If a host is detected on link A, and is then detected on link B 66 within a certain time period after first being detected on link A, 67 then link B is considered to be a looped back link. 70 A looped back link will be temporarily muted, i.e., all traffic 71 received on that link is ignored. 75 mechanism on a per-link basis is not yet implemented. [all …]
|
H A D | rtwn_usb.4 | 75 .It "D-Link DWA-121 rev C1A (N150 Nano)" Ta RTL8188EU Ta USB 2.0 76 .It "D-Link DWA-123 rev D1" Ta RTL8188EU Ta USB 2.0 77 .It "D-Link DWA-125 rev D1" Ta RTL8188EU Ta USB 2.0 78 .It "D-Link DWA-131" Ta RTL8192CU Ta USB 2.0 79 .It "D-Link DWA-131 rev E1" Ta RTL8192EU Ta USB 2.0 80 .It "D-Link DWA-171 rev A1" Ta RTL8821AU Ta USB 2.0 81 .It "D-Link DWA-172 rev A1" Ta RTL8821AU Ta USB 2.0 82 .It "D-Link DWA-180 rev A1" Ta RTL8812AU Ta USB 2.0 83 .It "D-Link DWA-182 rev C1" Ta RTL8812AU Ta USB 3.0 103 .It "TP-Link Arche [all...] |
/freebsd-src/lib/libsys/ |
H A D | link.2 | 32 .Nm link , 34 .Nd make a hard file link 40 .Fn link "const char *name1" "const char *name2" 47 .Fn link 49 atomically creates the specified directory entry (hard link) 53 If the link is successful: the link count of the underlying object 66 is not deleted and the link count of the 73 must exist for the hard link to 88 .Fa link 113 names a symbolic link, a new link for the target of the symbolic link is [all …]
|
/freebsd-src/usr.sbin/etcupdate/tests/ |
H A D | always_test.sh | 99 # /first/difflinks/second: Modified link removed. Should 101 ln -s "old link" $OLD/first/difflinks/second/link 102 ln -s "test link" $TEST/first/difflinks/second/link 115 # /second/second/difflinks: Newly added link conflicts with 116 # existing link in test tree. Should generate a warning. 117 ln -s "new link" $NEW/second/second/difflinks/link 118 ln -s "test link" $TEST/second/second/difflinks/link 141 # non-link to a link in both the new and test trees, but the 143 # generate a new link conflict. 144 mkfifo $OLD/difftype/difftype/difflinks/link [all …]
|
H A D | tests_test.sh | 111 ln -s "bar" $i/equal/equal/equal/link 120 ln -s "bar" $i/equal/first/first/link 133 # link. Nothing should happen. 135 ln -s "foo" $i/equal/difflinks/difflinks/link 137 ln -s "bar" $TEST/equal/difflinks/difflinks/link 152 ln -s "bar" $i/first/equal/second/link 165 ln -s "bar" $OLD/first/first/equal/link 181 # /first/difflinks/second: Modified link removed. Should 183 ln -s "old link" $OLD/first/difflinks/second/link 184 ln -s "test link" $TEST/first/difflinks/second/link [all …]
|
/freebsd-src/contrib/ntp/include/ |
H A D | ntp_lists.h | 13 * The name of the next link field is passed as an argument to allow 14 * membership in several lists at once using multiple next link fields. 16 * When possible, placing the link field first in the entry structure 100 * because both link chains are circular. The beginning/end is marked 118 * an entry's link pointer when it is unlinked, as the stale pointer 255 * begins with the link pointer 259 gen_node * link; member 357 #define DECL_DLIST_LINK(entrytype, link) \ argument 361 } link 363 #define INIT_DLIST(listhead, link) \ argument [all …]
|
/freebsd-src/contrib/llvm-project/clang/include/clang/Driver/ |
H A D | Types.def | 38 TYPE("cpp-output", PP_C, INVALID, "i", phases::Compile, phases::Backend, phases::Assemble, phases::Link) 39 TYPE("c", C, PP_C, "c", phases::Preprocess, phases::Compile, phases::Backend, phases::Assemble, phases::Link) 40 TYPE("cl", CL, PP_CL, "cl", phases::Preprocess, phases::Compile, phases::Backend, phases::Assemble, phases::Link) 41 TYPE("cl-cpp-output", PP_CL, INVALID, "cli", phases::Compile, phases::Backend, phases::Assemble, phases::Link) 42 TYPE("clcpp", CLCXX, PP_CLCXX, "clcpp", phases::Preprocess, phases::Compile, phases::Backend, phases::Assemble, phases::Link) 43 TYPE("clcpp-cpp-output", PP_CLCXX, INVALID, "clii", phases::Compile, phases::Backend, phases::Assemble, phases::Link) 44 TYPE("cuda-cpp-output", PP_CUDA, INVALID, "cui", phases::Compile, phases::Backend, phases::Assemble, phases::Link) 45 TYPE("cuda", CUDA, PP_CUDA, "cu", phases::Preprocess, phases::Compile, phases::Backend, phases::Assemble, phases::Link) 46 TYPE("cuda", CUDA_DEVICE, PP_CUDA, "cu", phases::Preprocess, phases::Compile, phases::Backend, phases::Assemble, phases::Link) 47 TYPE("hip-cpp-output", PP_HIP, INVALID, "hipi", phases::Compile, phases::Backend, phases::Assemble, phases::Link) [all...] |
/freebsd-src/usr.sbin/ppp/ |
H A D | physical.c | 79 #include "link.h" 164 p->link.type = PHYSICAL_LINK; in physical_Create() 165 p->link.name = dl->name; in physical_Create() 166 p->link.len = sizeof *p; in physical_Create() 169 throughput_init(&p->link.stats.total, SAMPLE_PERIOD); in physical_Create() 170 p->link.stats.parent = dl->bundle->ncp.mp.active ? in physical_Create() 171 &dl->bundle->ncp.mp.link.stats.total : NULL; in physical_Create() 172 p->link.stats.gather = 1; in physical_Create() 174 memset(p->link.Queue, '\0', sizeof p->link.Queue); in physical_Create() 175 memset(p->link.proto_in, '\0', sizeof p->link.proto_in); in physical_Create() [all …]
|
H A D | link.h | 40 struct link { struct 46 struct pppThroughput total; /* Link throughput statistics */ 47 struct pppThroughput *parent; /* MP link throughput statistics */ argument 61 #define LINK_QUEUES(link) (sizeof (link)->Queue / sizeof (link)->Queue[0]) argument 62 #define LINK_HIGHQ(link) ((link)->Queue + LINK_QUEUES(link) - 1) argument 64 extern void link_SequenceQueue(struct link *); 65 extern void link_DeleteQueue(struct link *); 66 extern size_t link_QueueLen(struct link *); 67 extern size_t link_QueueBytes(struct link *); 68 extern void link_PendingLowPriorityData(struct link *, size_t *, size_t *); [all …]
|
/freebsd-src/contrib/netbsd-tests/usr.sbin/mtree/ |
H A D | d_merge.in | 5 # directory "a" with only one entry, changing from dir to link 7 ./a/change-dir-to-link type=dir mode=0755 8 ./a/change-dir-to-link type=link mode=0755 10 # directory "b" with only one entry, changing from link to dir 12 ./b/change-link-to-dir type=link mode=0755 13 ./b/change-link-to-dir type=dir mode=0755 15 # directory "c" with multiple entries, one changing from dir to link 19 ./c/change-dir-to-link type=dir mode=0755 20 ./c/change-dir-to-link type=link mode=0755 22 # directory "d" with multiple entries, one changing from link to dir [all …]
|
/freebsd-src/contrib/bsnmp/snmpd/ |
H A D | snmpmod.h | 61 * First set of macros is used when the link is embedded into sub-struct 66 #define INSERT_OBJECT_OID_LINK_INDEX_TYPE(PTR, LIST, LINK, INDEX, SUBF) do {\ argument 70 TAILQ_FOREACH(_lelem, (LIST), LINK) \ 74 TAILQ_INSERT_TAIL((LIST), &(PTR)->SUBF, LINK); \ 76 TAILQ_INSERT_BEFORE(_lelem, &(PTR)->SUBF, LINK); \ 79 #define NEXT_OBJECT_OID_LINK_INDEX_TYPE(LIST, OID, SUB, LINK, INDEX, TYPE) ({\ argument 82 TAILQ_FOREACH(_lelem, (LIST), LINK) \ 88 #define FIND_OBJECT_OID_LINK_INDEX_TYPE(LIST, OID, SUB, LINK, INDEX, TYPE) ({\ argument 91 TAILQ_FOREACH(_lelem, (LIST), LINK) \ 98 * This set of macros allows specification of the link and index name. [all …]
|
/freebsd-src/contrib/netbsd-tests/bin/cp/ |
H A D | t_cp.sh | 28 FILES="file file2 file3 link dir dir2 dirlink target" 44 ln -s file link 105 atf_set "descr" "Checks the copy of a file to a symbolic link" 109 atf_check -s eq:0 -o empty -e empty cp file2 link 115 atf_set "descr" "Checks the copy of a symbolic link to a file" 119 # file and link are identical (not copied). 120 atf_check -s eq:1 -o empty -e ignore cp link file 121 atf_check -s eq:0 -o empty -e empty cp link file2 127 atf_set "descr" "Checks the copy of a file to a symbolic link" \ 132 atf_check -s eq:0 -o empty -e empty cp -P file link [all …]
|
/freebsd-src/sys/netgraph/ |
H A D | ng_bridge.c | 42 * algorithm is included which disables a link for priv->conf.loopTimeout 43 * seconds when a host is seen to have jumped from one link to 48 * tell us on which link the host may be found. A host's entry will 89 counter_u64_t recvOctets; /* total octets rec'd on link */ 90 counter_u64_t recvPackets; /* total pkts rec'd on link */ 91 counter_u64_t recvMulticasts; /* multicast pkts rec'd on link */ 92 counter_u64_t recvBroadcasts; /* broadcast pkts rec'd on link */ 96 counter_u64_t xmitOctets; /* total octets xmit'd on link */ 97 counter_u64_t xmitPackets; /* total pkts xmit'd on link */ 98 counter_u64_t xmitMulticasts; /* multicast pkts xmit'd on link */ [all …]
|
/freebsd-src/sys/contrib/device-tree/Bindings/sound/ |
H A D | qcom,sm8250.yaml | 61 ".*-dai-link$": 63 Each subnode represents a dai link. Subnodes of each dai links would be 69 link-name: 70 description: Indicates dai-link name and PCM stream name. 103 - link-name 127 mm1-dai-link { 128 link-name = "MultiMedia0"; 134 mm2-dai-link { 135 link-name = "MultiMedia2"; 141 mm3-dai-link { [all...] |
/freebsd-src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_deadlock_detector2.cpp | 41 struct Link { struct 48 explicit Link(u32 id = 0, u32 seq = 0, u32 tid = 0, u32 s0 = 0, u32 s1 = 0) in Link() function 61 Link pending[kMaxMutex]; 62 Link path[kMaxMutex]; 80 Link link[kMaxLink]; member 229 Link *link = &mtx1->link[li]; in MutexBeforeLock() local 230 if (link->id == m->id) { in MutexBeforeLock() 231 if (link->seq != mtx->seq) { in MutexBeforeLock() 232 link->seq = mtx->seq; in MutexBeforeLock() 233 link->tid = lt->ctx; in MutexBeforeLock() [all …]
|
/freebsd-src/usr.sbin/bluetooth/hcsecd/ |
H A D | hcsecd.8 | 32 .Nd control link keys and PIN codes for Bluetooth devices 40 daemon controls link keys and PIN codes for Bluetooth devices. 56 If no default entry was found then it is assumed that no link key and no 58 For any given entry, the link key takes precedence over the PIN code. 59 If a link key was not specified, the device must generate the link key from 61 If an entry was found and the link key (or PIN code) exists, the 76 events and caches link keys created from the PIN codes in memory. 77 To preserve link keys between restarts the 79 daemon dumps link keys for all entries in the 81 link keys file. [all …]
|