Home
last modified time | relevance | path

Searched refs:link (Results 1 – 25 of 796) sorted by relevance

12345678910>>...32

/dragonfly/sys/netbt/
H A Dhci_link.c145 return link; in hci_acl_open()
196 return link; in hci_acl_newconn()
860 if (link == NULL || link->hl_type == HCI_LINK_ACL) { in hci_sco_recv()
927 return link; in hci_link_alloc()
941 link->hl_type, link->hl_state, link->hl_refcnt); in hci_link_free()
1016 memo = hci_memo_new(link->hl_unit, &link->hl_bdaddr); in hci_link_free()
1022 TAILQ_REMOVE(&link->hl_unit->hci_links, link, hl_next); in hci_link_free()
1036 if (link->hl_type == type && link->hl_state == state) in hci_link_lookup_state()
1040 return link; in hci_link_lookup_state()
1067 return link; in hci_link_lookup_bdaddr()
[all …]
H A Dhci_event.c242 struct hci_link *link; in hci_event_command_status() local
390 if (link) { in hci_event_num_compl_pkts()
430 link = next; in hci_event_num_compl_pkts()
539 if (link != NULL) { in hci_event_con_compl()
565 if (link == NULL) { in hci_event_con_compl()
604 (*link->hl_sco->sp_proto->connected)(link->hl_sco->sp_upper); in hci_event_con_compl()
630 if (link) in hci_event_discon_compl()
665 if (link == NULL) { in hci_event_con_req()
706 if (link == NULL || link->hl_type != HCI_LINK_ACL) in hci_event_auth_compl()
750 if (link == NULL || link->hl_type != HCI_LINK_ACL) in hci_event_encryption_change()
[all …]
H A Dl2cap_signal.c94 l2cap_recv_command_rej(m, link); in l2cap_recv_signal()
101 l2cap_recv_connect_req(m, link); in l2cap_recv_signal()
108 l2cap_recv_connect_rsp(m, link); in l2cap_recv_signal()
112 l2cap_recv_config_req(m, link); in l2cap_recv_signal()
116 l2cap_recv_config_rsp(m, link); in l2cap_recv_signal()
147 l2cap_recv_info_req(m, link); in l2cap_recv_signal()
289 new->lc_link = hci_acl_open(link->hl_unit, &link->hl_bdaddr); in l2cap_recv_connect_req()
290 KKASSERT(new->lc_link == link); in l2cap_recv_connect_req()
308 hci_acl_close(link, err); in l2cap_recv_connect_req()
674 if (l2cap_send_signal(link, L2CAP_CONFIG_REQ, link->hl_lastid, in l2cap_recv_config_rsp()
[all …]
/dragonfly/lib/libalias/
H A Dalias_db.c976 free(link); in DeleteLink()
1205 link = ReLink(link, in _FindLinkOut()
1356 link->server = link->server->next; in _FindLinkIn()
1362 link = ReLink(link, in _FindLinkIn()
1810 link->server = link->server->next; in FindOriginalAddress()
2240 link = ReLink(link, link->src_addr, link->dst_addr, link->alias_addr, in SetDestCallId()
2241 link->src_port, cid, link->alias_port, link->link_type); in SetDestCallId()
2801 GetOriginalAddress(link), ntohs(GetOriginalPort(link)), in PunchFWHole()
2802 GetDestAddress(link), ntohs(GetDestPort(link)) ); in PunchFWHole()
2809 GetDestAddress(link), ntohs(GetDestPort(link)), in PunchFWHole()
[all …]
H A Dalias.c293 if (link != NULL) in IcmpAliasIn1()
359 link = NULL; in IcmpAliasIn2()
361 if (link != NULL) in IcmpAliasIn2()
484 if (link != NULL) in IcmpAliasOut1()
551 link = NULL; in IcmpAliasOut2()
553 if (link != NULL) in IcmpAliasOut2()
680 if (link != NULL) in ProtoAliasIn()
714 if (link != NULL) in ProtoAliasOut()
748 if (link != NULL) in UdpAliasIn()
1008 if (link !=NULL) in TcpAliasOut()
[all …]
H A Dalias_pptp.c168 pptp_link = AddPptp(GetOriginalAddress(link), GetDestAddress(link), in AliasHandlePptpOut()
169 GetAliasAddress(link), cptr->cid1); in AliasHandlePptpOut()
175 GetDestAddress(link), in AliasHandlePptpOut()
238 GetAliasAddress(link), in AliasHandlePptpIn()
249 GetAliasAddress(link), in AliasHandlePptpIn()
317 struct alias_link *link; in AliasHandlePptpGreOut() local
326 if (link != NULL) { in AliasHandlePptpGreOut()
327 struct in_addr alias_addr = GetAliasAddress(link); in AliasHandlePptpGreOut()
345 struct alias_link *link; in AliasHandlePptpGreIn() local
354 if (link != NULL) { in AliasHandlePptpGreIn()
[all …]
/dragonfly/sys/kern/
H A Dkern_mutex.c173 link->next->prev = link; in __mtx_lock_ex()
174 link->prev->next = link; in __mtx_lock_ex()
176 link->next = link; in __mtx_lock_ex()
177 link->prev = link; in __mtx_lock_ex()
325 link->next->prev = link; in __mtx_lock_sh()
328 link->next = link; in __mtx_lock_sh()
329 link->prev = link; in __mtx_lock_sh()
786 link->callback(link, link->arg, 0); in mtx_chain_link_ex()
860 link->callback(link, link->arg, 0); in mtx_chain_link_sh()
1107 link->callback(link, link->arg, ENOLCK); in mtx_abort_link()
[all …]
/dragonfly/lib/libc/include/isc/
H A Dlist.h38 #define LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1)) argument
72 (elt)->link.next->link.prev = (elt)->link.prev; \
78 (elt)->link.prev->link.next = (elt)->link.next; \
88 #define PREV(elt, link) ((elt)->link.prev) argument
89 #define NEXT(elt, link) ((elt)->link.next) argument
97 (elt)->link.prev = (before)->link.prev; \
99 (elt)->link.prev->link.next = (elt); \
110 (elt)->link.next = (after)->link.next; \
112 (elt)->link.next->link.prev = (elt); \
117 #define ENQUEUE(list, elt, link) APPEND(list, elt, link) argument
[all …]
/dragonfly/sys/dev/drm/amd/display/dc/core/
H A Ddc_link.c84 link->link_enc->funcs->destroy(&link->link_enc); in destruct()
171 hpd = get_hpd_gpio(link->ctx->dc_bios, link->link_id, link->ctx->gpio_service); in program_hpd_filter()
204 hpd_pin = get_hpd_gpio(link->ctx->dc_bios, link->link_id, link->ctx->gpio_service); in dc_link_detect_sink()
389 link->link_enc->id, link->link_id); in link_detect_sink()
731 sink_init_data.link = link; in dc_link_detect()
909 hpd = get_hpd_gpio(link->ctx->dc_bios, link->link_id, link->ctx->gpio_service); in get_hpd_line()
1137 ddc_service_init_data.link = link; in construct()
1326 struct dc_link *link = stream->sink->link; in enable_stream_features() local
1351 struct dc_link *link = stream->sink->link; in enable_link_dp() local
1419 struct dc_link *link = stream->sink->link; in enable_link_edp() local
[all …]
H A Ddc_link_hwss.c17 struct dc_link *link, in core_link_read_dpcd() argument
23 link, in core_link_read_dpcd()
31 struct dc_link *link, in core_link_write_dpcd() argument
37 link, in core_link_write_dpcd()
55 struct dc_link *link, in dp_enable_link_phy() argument
74 pipes[i].stream->sink->link == link) { in dp_enable_link_phy()
153 link->link_enc->funcs->disable_output(link->link_enc, signal); in dp_disable_link_phy()
154 link->dc->hwss.edp_power_control(link, false); in dp_disable_link_phy()
156 link->link_enc->funcs->disable_output(link->link_enc, signal); in dp_disable_link_phy()
284 pipes[i].stream->sink->link == link) { in dp_retrain_link_dp_test()
[all …]
H A Ddc_link_dp.c57 link, in wait_for_training_aux_rd_interval()
79 link, in dpcd_set_training_pattern()
233 link, in dpcd_set_lt_pattern_and_lane_settings()
239 link, in dpcd_set_lt_pattern_and_lane_settings()
247 link, in dpcd_set_lt_pattern_and_lane_settings()
439 link, in get_lane_status_and_drive_settings()
620 link, in perform_post_lt_adj_req_sequence()
758 link, in perform_channel_equalization_sequence()
922 link, in perform_link_training_int()
1514 link = stream->sink->link; in decide_link_settings()
[all …]
/dragonfly/sys/dev/acpica/
H A Dacpi_pci_link.c87 struct link;
208 struct link *link; in link_add_crs() local
274 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()
636 struct link *link; in acpi_pci_link_add_reference() local
720 struct link *link; in acpi_pci_link_srs_from_crs() local
806 struct link *link; in acpi_pci_link_srs_from_links() local
863 struct link *link; in acpi_pci_link_route_irqs() local
[all …]
/dragonfly/usr.sbin/ppp/
H A Dlink.h41 struct link { struct
62 #define LINK_QUEUES(link) (sizeof (link)->Queue / sizeof (link)->Queue[0]) argument
63 #define LINK_HIGHQ(link) ((link)->Queue + LINK_QUEUES(link) - 1) argument
65 extern void link_SequenceQueue(struct link *);
66 extern void link_DeleteQueue(struct link *);
67 extern size_t link_QueueLen(struct link *);
68 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 Dphysical.c172 memset(p->link.Queue, '\0', sizeof p->link.Queue); in physical_Create()
173 memset(p->link.proto_in, '\0', sizeof p->link.proto_in); in physical_Create()
174 memset(p->link.proto_out, '\0', sizeof p->link.proto_out); in physical_Create()
203 lcp_Init(&p->link.lcp, dl->bundle, &p->link, &dl->fsmp); in physical_Create()
204 ccp_Init(&p->link.ccp, dl->bundle, &p->link, &dl->fsmp); in physical_Create()
349 throughput_log(&p->link.stats.total, LogPHASE, p->link.name); in physical_Close()
578 memset(p->link.Queue, '\0', sizeof p->link.Queue); in iov2physical()
592 p->link.lcp.fsm.link = &p->link; in iov2physical()
593 memset(&p->link.lcp.fsm.FsmTimer, '\0', sizeof p->link.lcp.fsm.FsmTimer); in iov2physical()
601 p->link.ccp.fsm.link = &p->link; in iov2physical()
[all …]
H A Dmp.c249 mp->out.link = 0; in mp_Init()
266 memset(mp->link.Queue, '\0', sizeof mp->link.Queue); in mp_Init()
267 memset(mp->link.proto_in, '\0', sizeof mp->link.proto_in); in mp_Init()
268 memset(mp->link.proto_out, '\0', sizeof mp->link.proto_out); in mp_Init()
285 lcp_Init(&mp->link.lcp, mp->bundle, &mp->link, NULL); in mp_Init()
286 ccp_Init(&mp->link.ccp, mp->bundle, &mp->link, &mp->fsmp); in mp_Init()
335 memset(mp->link.Queue, '\0', sizeof mp->link.Queue); in mp_Up()
336 memset(mp->link.proto_in, '\0', sizeof mp->link.proto_in); in mp_Up()
337 memset(mp->link.proto_out, '\0', sizeof mp->link.proto_out); in mp_Up()
340 dl->physical->link.stats.parent = &mp->link.stats.total; in mp_Up()
[all …]
/dragonfly/sys/dev/drm/amd/display/amdgpu_dm/
H A Damdgpu_dm_debugfs.c97 link->cur_link_settings.lane_count, in dp_link_settings_read()
98 link->cur_link_settings.link_rate, in dp_link_settings_read()
104 link->verified_link_cap.lane_count, in dp_link_settings_read()
105 link->verified_link_cap.link_rate, in dp_link_settings_read()
111 link->reported_link_cap.lane_count, in dp_link_settings_read()
112 link->reported_link_cap.link_rate, in dp_link_settings_read()
145 struct dc *dc = (struct dc *)link->dc; in dp_link_settings_write()
382 (link->test_pattern_enabled)); in dp_phy_settings_write()
630 dc_link_enable_hpd(link); in dp_phy_test_pattern_debugfs_write()
655 link, in dp_phy_test_pattern_debugfs_write()
[all …]
/dragonfly/contrib/diffutils/lib/
H A Dfd-hook.c78 if (link->private_next == NULL && link->private_prev == NULL) in register_fd_hook()
82 link->private_prev = &anchor; in register_fd_hook()
83 link->private_close_fn = close_hook; in register_fd_hook()
84 link->private_ioctl_fn = ioctl_hook; in register_fd_hook()
86 anchor.private_next = link; in register_fd_hook()
98 unregister_fd_hook (struct fd_hook *link) in unregister_fd_hook() argument
100 struct fd_hook *next = link->private_next; in unregister_fd_hook()
109 link->private_next = NULL; in unregister_fd_hook()
110 link->private_prev = NULL; in unregister_fd_hook()
111 link->private_close_fn = NULL; in unregister_fd_hook()
[all …]
/dragonfly/contrib/grep/lib/
H A Dfd-hook.c78 if (link->private_next == NULL && link->private_prev == NULL) in register_fd_hook()
82 link->private_prev = &anchor; in register_fd_hook()
83 link->private_close_fn = close_hook; in register_fd_hook()
84 link->private_ioctl_fn = ioctl_hook; in register_fd_hook()
86 anchor.private_next = link; in register_fd_hook()
98 unregister_fd_hook (struct fd_hook *link) in unregister_fd_hook() argument
100 struct fd_hook *next = link->private_next; in unregister_fd_hook()
109 link->private_next = NULL; in unregister_fd_hook()
110 link->private_prev = NULL; in unregister_fd_hook()
111 link->private_close_fn = NULL; in unregister_fd_hook()
[all …]
/dragonfly/crypto/libressl/apps/openssl/
H A Dcerthash.c368 link->reference = hi; in certhash_addlink()
369 link->changed = 1; in certhash_addlink()
376 hashinfo_free(link); in certhash_addlink()
385 for (link = links; link != NULL; link = link->next) { in certhash_findlink()
593 for (link = links; link != NULL; link = link->next) { in certhash_directory()
595 (link->reference != NULL && link->changed == 0)) in certhash_directory()
600 "removing"), link->filename, link->target); in certhash_directory()
611 for (link = links; link != NULL; link = link->next) { in certhash_directory()
612 if (link->exists == 1 && link->changed == 0) in certhash_directory()
621 if (symlink(link->reference->filename, link->filename) == -1) { in certhash_directory()
[all …]
/dragonfly/contrib/gcc-8.0/gcc/
H A Dgenpeep.c36 struct link struct
38 struct link *next; argument
124 struct link link; in match_rtx() local
169 link.next = path; in match_rtx()
173 link.pos = i; in match_rtx()
196 link.pos = i; in match_rtx()
217 link.pos = 0; in match_rtx()
220 link.vecelt = i; in match_rtx()
243 link.next = path; in match_rtx()
244 link.vecelt = -1; in match_rtx()
[all …]
H A Dgenextract.c107 struct code_ptr *link; in gen_insn() local
158 link->next = p->insns; in gen_insn()
159 p->insns = link; in gen_insn()
174 p->insns = link; in gen_insn()
175 link->next = 0; in gen_insn()
411 struct code_ptr *link; in main() local
434 link->next = peepholes; in main()
435 peepholes = link; in main()
452 for (link = peepholes; link; link = link->next) in main()
468 for (link = p->insns; link; link = link->next) in main()
[all …]
/dragonfly/contrib/gcc-4.7/gcc/
H A Dgenpeep.c37 struct link struct
39 struct link *next; argument
133 struct link link; in match_rtx() local
178 link.next = path; in match_rtx()
182 link.pos = i; in match_rtx()
205 link.pos = i; in match_rtx()
226 link.pos = 0; in match_rtx()
229 link.vecelt = i; in match_rtx()
256 link.next = path; in match_rtx()
257 link.vecelt = -1; in match_rtx()
[all …]
H A Dgenextract.c95 struct code_ptr *link; in gen_insn() local
150 link->next = p->insns; in gen_insn()
151 p->insns = link; in gen_insn()
166 p->insns = link; in gen_insn()
167 link->next = 0; in gen_insn()
407 struct code_ptr *link; in main() local
428 link->next = peepholes; in main()
429 peepholes = link; in main()
442 for (link = peepholes; link; link = link->next) in main()
458 for (link = p->insns; link; link = link->next) in main()
[all …]
/dragonfly/sys/dev/drm/amd/display/dc/inc/
H A Dlink_hwss.h32 struct dc_link *link,
38 struct dc_link *link,
48 struct dc_link *link,
53 void dp_receiver_power_ctrl(struct dc_link *link, bool on);
54 bool edp_receiver_ready_T9(struct dc_link *link);
55 bool edp_receiver_ready_T7(struct dc_link *link);
62 struct dc_link *link,
66 struct dc_link *link,
70 struct dc_link *link,
75 enum dp_panel_mode dp_get_panel_mode(struct dc_link *link);
[all …]
/dragonfly/sys/dev/drm/amd/display/dc/
H A Ddc_link.h189 struct dc_link *link,
195 struct dc_link *link,
199 struct dc_link *link,
203 void dc_link_dp_enable_hpd(const struct dc_link *link);
208 struct dc_link *link,
216 bool dc_link_is_dp_sink_present(struct dc_link *link);
225 const struct dc_link *link);
231 struct dc_link *link);
232 void dc_link_enable_hpd(const struct dc_link *link);
233 void dc_link_disable_hpd(const struct dc_link *link);
[all …]

12345678910>>...32