| /freebsd-14.2/contrib/ntp/libntp/lib/isc/include/isc/ |
| H A D | list.h | 43 #define ISC_LINK_LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1)) argument 55 (elt)->link.prev = NULL; \ 92 (elt)->link.next->link.prev = (elt)->link.prev; \ 98 (elt)->link.prev->link.next = (elt)->link.next; \ 118 #define ISC_LIST_PREV(elt, link) ((elt)->link.prev) argument 119 #define ISC_LIST_NEXT(elt, link) ((elt)->link.next) argument 126 (elt)->link.prev = (before)->link.prev; \ 128 (elt)->link.prev->link.next = (elt); \ 145 (elt)->link.next = (after)->link.next; \ 147 (elt)->link.next->link.prev = (elt); \ [all …]
|
| H A D | util.h | 192 #define INIT_LINK(elt, link) ISC_LINK_INIT(elt, link) argument 196 #define PREV(elt, link) ISC_LIST_PREV(elt, link) argument 197 #define NEXT(elt, link) ISC_LIST_NEXT(elt, link) argument 198 #define APPEND(list, elt, link) ISC_LIST_APPEND(list, elt, link) argument 199 #define PREPEND(list, elt, link) ISC_LIST_PREPEND(list, elt, link) argument 200 #define UNLINK(list, elt, link) ISC_LIST_UNLINK(list, elt, link) argument 201 #define ENQUEUE(list, elt, link) ISC_LIST_APPEND(list, elt, link) argument 202 #define DEQUEUE(list, elt, link) ISC_LIST_UNLINK(list, elt, link) argument 205 #define APPENDLIST(list1, list2, link) ISC_LIST_APPENDLIST(list1, list2, link) argument
|
| /freebsd-14.2/lib/libc/include/isc/ |
| H A D | list.h | 42 #define LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1) && \ argument 77 (elt)->link.next->link.prev = (elt)->link.prev; \ 83 (elt)->link.prev->link.next = (elt)->link.next; \ 93 #define PREV(elt, link) ((elt)->link.prev) argument 94 #define NEXT(elt, link) ((elt)->link.next) argument 102 (elt)->link.prev = (before)->link.prev; \ 104 (elt)->link.prev->link.next = (elt); \ 115 (elt)->link.next = (after)->link.next; \ 117 (elt)->link.next->link.prev = (elt); \ 122 #define ENQUEUE(list, elt, link) APPEND(list, elt, link) argument [all …]
|
| /freebsd-14.2/sys/dev/acpica/ |
| H A D | acpi_pci_link.c | 86 struct link; 209 struct link *link; in link_add_crs() local 275 struct link *link; in link_add_prs() local 391 link_valid_irq(struct link *link, int irq) in link_valid_irq() argument 421 struct link *link; in acpi_pci_link_dump() local 434 link->l_irq, link->l_routed ? 'Y' : 'N', in acpi_pci_link_dump() 641 struct link *link; in acpi_pci_link_add_reference() local 725 struct link *link; in acpi_pci_link_srs_from_crs() local 811 struct link *link; in acpi_pci_link_srs_from_links() local 867 struct link *link; in acpi_pci_link_route_irqs() local [all …]
|
| /freebsd-14.2/sys/dev/ocs_fc/ |
| H A D | ocs_list.h | 86 #define link2item(list, link) ((void*) (((uint8_t*)(link)) - (list)->offset)) argument 195 ocs_list_assert(link); in ocs_list_init_link() 200 link->next = NULL; in ocs_list_init_link() 201 link->prev = NULL; in ocs_list_init_link() 218 ocs_list_t *link; in ocs_list_add_head() local 245 ocs_list_t *link; in ocs_list_add_tail() local 320 ocs_list_t *link; in ocs_list_next() local 365 ocs_list_t *link; in ocs_list_remove() local 382 prev = link->prev; in ocs_list_remove() 383 next = link->next; in ocs_list_remove() [all …]
|
| /freebsd-14.2/contrib/ntp/include/ |
| H A D | ntp_lists.h | 259 gen_node * link; member 361 } link 372 ? (listhead).link.f \ 386 ? (entry)->link.f \ 393 ? (entry)->link.b \ 399 (pentry)->link.f = (listhead).link.f; \ 401 (listhead).link.f->link.b = (pentry); \ 407 (pentry)->link.b = (listhead).link.b; \ 409 (listhead).link.b->link.f = (pentry); \ 415 (ptounlink)->link.b->link.f = (ptounlink)->link.f; \ [all …]
|
| /freebsd-14.2/usr.sbin/ppp/ |
| H A D | link.h | 40 struct link { struct 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 *); 69 extern struct mbuf *link_Dequeue(struct link *); 74 extern int link_Stack(struct link *, struct layer *); 75 extern void link_EmptyStack(struct link *); [all …]
|
| H A D | physical.c | 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() 176 memset(p->link.proto_out, '\0', sizeof p->link.proto_out); in physical_Create() 205 lcp_Init(&p->link.lcp, dl->bundle, &p->link, &dl->fsmp); in physical_Create() 206 ccp_Init(&p->link.ccp, dl->bundle, &p->link, &dl->fsmp); in physical_Create() 351 throughput_log(&p->link.stats.total, LogPHASE, p->link.name); in physical_Close() 580 memset(p->link.Queue, '\0', sizeof p->link.Queue); in iov2physical() 594 p->link.lcp.fsm.link = &p->link; in iov2physical() 595 memset(&p->link.lcp.fsm.FsmTimer, '\0', sizeof p->link.lcp.fsm.FsmTimer); in iov2physical() 603 p->link.ccp.fsm.link = &p->link; in iov2physical() [all …]
|
| H A D | mp.c | 248 mp->out.link = 0; in mp_Init() 265 memset(mp->link.Queue, '\0', sizeof mp->link.Queue); in mp_Init() 266 memset(mp->link.proto_in, '\0', sizeof mp->link.proto_in); in mp_Init() 267 memset(mp->link.proto_out, '\0', sizeof mp->link.proto_out); in mp_Init() 284 lcp_Init(&mp->link.lcp, mp->bundle, &mp->link, NULL); in mp_Init() 285 ccp_Init(&mp->link.ccp, mp->bundle, &mp->link, &mp->fsmp); in mp_Init() 334 memset(mp->link.Queue, '\0', sizeof mp->link.Queue); in mp_Up() 335 memset(mp->link.proto_in, '\0', sizeof mp->link.proto_in); in mp_Up() 336 memset(mp->link.proto_out, '\0', sizeof mp->link.proto_out); in mp_Up() 339 dl->physical->link.stats.parent = &mp->link.stats.total; in mp_Up() [all …]
|
| H A D | tty.c | 191 p->link.name, tty_Timeout); in tty_StartTimer() 246 p->link.name, asyncpath); in tty_SetAsyncParams() 283 p->link.name); in LoadLineDiscipline() 289 p->link.name); in LoadLineDiscipline() 369 p->link.name); in LoadLineDiscipline() 399 p->link.name); in UnloadLineDiscipline() 402 p->link.name); in UnloadLineDiscipline() 461 p->link.name); in tty_Raw() 487 p->link.name); in tty_Offline() 504 p->link.name); in tty_Cooked() [all …]
|
| /freebsd-14.2/usr.sbin/etcupdate/tests/ |
| H A D | always_test.sh | 311 link() function 436 link /first/difflinks/second/link "test link" 445 link /second/second/difflinks/link "test link" 459 link /difftype/difftype/difflinks/link "test" 471 link /difflinks/difflinks/difflinks/link "test" 557 link /first/difflinks/second/link "test link" 566 link /second/second/difflinks/link "new link" 580 link /difftype/difftype/difflinks/link "new" 587 link /difflinks/first/first/link "new" 590 link /difflinks/difftype/difftype/link "new" [all …]
|
| H A D | tests_test.sh | 689 link() function 757 link /equal/equal/equal/link "bar" 770 link /equal/difflinks/difflinks/link "bar" 792 link /first/difflinks/second/link "test link" 800 link /second/equal/first/link "new" 808 link /second/second/equal/link "bar" 814 link /second/second/difflinks/link "test link" 837 link /difftype/difftype/difflinks/link "test" 844 link /difflinks/equal/difflinks/link "new" 853 link /difflinks/difflinks/equal/link "new" [all …]
|
| /freebsd-14.2/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 26 ./d/change-link-to-dir type=link mode=0755 [all …]
|
| /freebsd-14.2/sbin/ifconfig/ |
| H A D | ifconfig_netlink.c | 148 struct snl_parsed_link link; member 224 return (link.ifi_index); in if_nametoindex_nl() 264 if_link_t *link = &iface->link; in match_iface() local 279 if (link->ifla_address == NULL) in match_iface() 285 .sdl_type = link->ifi_type, in match_iface() 370 if_link_t *link = &iface->link; in status_nl() local 374 printf("%s: ", link->ifla_ifname); in status_nl() 376 printf("flags=%x", link->ifi_flags); in status_nl() 382 if (link->ifla_ifalias != NULL) in status_nl() 385 print_ifcaps(ctx, link); in status_nl() [all …]
|
| /freebsd-14.2/sys/netgraph/ |
| H A D | ng_bridge.c | 369 link_p link; in ng_bridge_newhook() local 394 link = malloc(sizeof(*link), M_NETGRAPH_BRIDGE, M_NOWAIT | M_ZERO); in ng_bridge_newhook() 395 if (link == NULL) in ng_bridge_newhook() 418 link->hook = hook; in ng_bridge_newhook() 420 link->learnMac = 0; in ng_bridge_newhook() 425 link->learnMac = 1; in ng_bridge_newhook() 542 link_p link; in ng_bridge_rcvmsg() local 988 if (host->link == link) in ng_bridge_put() 993 host->link = link; in ng_bridge_put() 1022 host->link = link; in ng_bridge_put() [all …]
|
| /freebsd-14.2/sys/kern/ |
| H A D | kern_rctl.c | 391 rule = link->rrl_rule; in rctl_throttle_decay() 435 rule = link->rrl_rule; in rctl_pcpu_available() 514 rule = link->rrl_rule; in rctl_enforce() 712 rule = link->rrl_rule; in rctl_get_limit() 741 rule = link->rrl_rule; in rctl_get_available() 891 link->rrl_rule = rule; in rctl_racct_add_rule() 892 link->rrl_exceeded = 0; in rctl_racct_add_rule() 909 if (link == NULL) in rctl_racct_add_rule_locked() 912 link->rrl_rule = rule; in rctl_racct_add_rule_locked() 913 link->rrl_exceeded = 0; in rctl_racct_add_rule_locked() [all …]
|
| /freebsd-14.2/sys/contrib/device-tree/src/arm64/qcom/ |
| H A D | sc7280-herobrine-audio-wcd9385.dtsi | 38 dai-link@0 { 51 dai-link@1 { 64 dai-link@2 { 77 dai-link@3 { 90 dai-link@4 { 91 link-name = "DMIC"; 113 dai-link@1 { 118 dai-link@5 { 122 dai-link@6 { 126 dai-link@19 { [all …]
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/sound/ |
| H A D | qcom,sm8250.yaml | 64 ".*-dai-link$": 72 link-name: 106 - link-name 158 mm1-dai-link { 165 mm2-dai-link { 172 mm3-dai-link { 179 hdmi-dai-link { 194 wsa-dai-link { 209 va-dai-link { 251 primary-dai-link { [all …]
|
| H A D | google,sc7280-herobrine.yaml | 39 "^dai-link@[0-9a-f]$": 47 link-name: 54 description: dai link address. 91 - link-name 134 dai-link@0 { 145 dai-link@1 { 146 link-name = "WCD Capture"; 157 dai-link@2 { 169 dai-link@3 { 181 dai-link@5 { [all …]
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_deadlock_detector2.cpp | 80 Link link[kMaxLink]; member 229 Link *link = &mtx1->link[li]; in MutexBeforeLock() local 234 link->stk0 = stk1; in MutexBeforeLock() 245 Link *link = &mtx1->link[mtx1->nlink++]; in MutexBeforeLock() local 246 link->id = m->id; in MutexBeforeLock() 247 link->seq = mtx->seq; in MutexBeforeLock() 248 link->tid = lt->ctx; in MutexBeforeLock() 249 link->stk0 = stk1; in MutexBeforeLock() 369 if (link.id == kEndId) { in CycleCheck() 373 if (pt->visited[link.id]) in CycleCheck() [all …]
|
| /freebsd-14.2/contrib/ofed/opensm/opensm/ |
| H A D | osm_ucast_dfsssp.c | 586 link = link->next; in cdg_node_dealloc() 638 link = link->next; in get_weakest_link_in_cycle() 655 link = link->next; in get_weakest_link_in_cycle() 673 link = link->next; in get_weakest_link_in_cycle() 743 link = link->next; in search_cycle_in_channel_dep_graph() 760 link = link->next; in search_cycle_in_channel_dep_graph() 1183 link = link->next, c++) { in dfsssp_print_graph() 1327 link = link->next; in dfsssp_build_graph() 1350 link = link->next; in dfsssp_build_graph() 1548 for (link = current->links; link != NULL; link = link->next) { in dijkstra() [all …]
|
| /freebsd-14.2/sys/net/ |
| H A D | pfil.c | 150 struct pfil_link *link; in pfil_mem_common() local 162 link->link_ruleset, m); in pfil_mem_common() 200 struct pfil_link *link; in pfil_mbuf_common() local 212 rv = link->link_mbuf_chk(m, ifp, flags, link->link_ruleset, in pfil_mbuf_common() 291 free(link, M_PFIL); in pfil_head_unregister() 295 free(link, M_PFIL); in pfil_head_unregister() 466 struct pfil_link *link; in pfil_link_free() local 469 free(link, M_PFIL); in pfil_link_free() 512 struct pfil_link *link; in pfil_link_remove() local 519 return (link); in pfil_link_remove() [all …]
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/leds/ |
| H A D | leds-bcm6328.txt | 59 - brcm,link-signal-sources : An array of hardware link 127 brcm,link-signal-sources = <0>; 132 brcm,link-signal-sources = <1>; 205 brcm,link-signal-sources = <0>; 218 brcm,link-signal-sources = <4>; 224 brcm,link-signal-sources = <5>; 230 brcm,link-signal-sources = <6>; 236 brcm,link-signal-sources = <7>; 285 brcm,link-signal-sources = <0>; 292 brcm,link-signal-sources = <7>; [all …]
|
| H A D | leds-bcm6328.yaml | 89 brcm,link-signal-sources: 94 An array of hardware link signal sources. Up to four link hardware 185 brcm,link-signal-sources = <0>; 191 brcm,link-signal-sources = <1>; 277 brcm,link-signal-sources = <0>; 292 brcm,link-signal-sources = <4>; 299 brcm,link-signal-sources = <5>; 306 brcm,link-signal-sources = <6>; 313 brcm,link-signal-sources = <7>; 365 brcm,link-signal-sources = <0>; [all …]
|
| /freebsd-14.2/contrib/pjdfstest/tests/link/ |
| H A D | 12.t | 29 expect 0 link ${n0} ${n1} 35 expect EPERM link ${n0} ${n1} 38 expect 0 link ${n0} ${n1} 44 expect 0 link ${n0} ${n1} 51 expect EPERM link ${n0} ${n1} 53 expect 0 link ${n0} ${n1} 61 expect EPERM link ${n0} ${n1} 63 expect 0 link ${n0} ${n1} 69 expect 0 link ${n0} ${n1} 76 expect EPERM link ${n0} ${n1} [all …]
|