HomeSort by: relevance | last modified time | path
    Searched refs:link (Results 1 - 25 of 2411) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/usr.sbin/link/
Makefile 3 PROG= link
4 MAN= link.8
  /src/lib/libc/include/isc/
list.h 28 #define LINK(type) struct { type *prev, *next; }
29 #define INIT_LINK_TYPE(elt, link, type) \
31 (elt)->link.prev = (type *)(-1); \
32 (elt)->link.next = (type *)(-1); \
34 #define INIT_LINK(elt, link) \
35 INIT_LINK_TYPE(elt, link, void)
36 #define LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1) && \
37 (void *)((elt)->link.next) != (void *)(-1))
43 #define PREPEND(list, elt, link) \
    [all...]
  /src/external/bsd/libbind/dist/include/isc/
list.h 28 #define LINK(type) struct { type *prev, *next; }
29 #define INIT_LINK_TYPE(elt, link, type) \
31 (elt)->link.prev = (type *)(-1); \
32 (elt)->link.next = (type *)(-1); \
34 #define INIT_LINK(elt, link) \
35 INIT_LINK_TYPE(elt, link, void)
36 #define LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1) && \
37 (void *)((elt)->link.next) != (void *)(-1))
43 #define PREPEND(list, elt, link) \
    [all...]
  /src/external/bsd/ntp/dist/libntp/lib/isc/include/isc/
list.h 38 #define ISC_LINK_INIT_TYPE(elt, link, type) \
40 (elt)->link.prev = (type *)(-1); \
41 (elt)->link.next = (type *)(-1); \
43 #define ISC_LINK_INIT(elt, link) \
44 ISC_LINK_INIT_TYPE(elt, link, void)
45 #define ISC_LINK_LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1))
51 #define __ISC_LIST_PREPENDUNSAFE(list, elt, link) \
54 (list).head->link.prev = (elt); \
57 (elt)->link.prev = NULL;
    [all...]
  /src/external/mpl/bind/dist/lib/isc/include/isc/
list.h 54 #define ISC_LINK_INIT_TYPE(elt, link, type) \
56 (elt)->link.prev = ISC_LINK_TOMBSTONE(type); \
57 (elt)->link.next = ISC_LINK_TOMBSTONE(type); \
59 #define ISC_LINK_INIT(elt, link) ISC_LINK_INIT_TYPE(elt, link, void)
60 #define ISC_LINK_LINKED_TYPE(elt, link, type) \
61 ((type *)((elt)->link.prev) != ISC_LINK_TOMBSTONE(type))
62 #define ISC_LINK_LINKED(elt, link) ISC_LINK_LINKED_TYPE(elt, link, void)
68 #define __ISC_LIST_PREPENDUNSAFE(list, elt, link) \
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/
list.h 53 #define ISC_LINK_INIT_TYPE(elt, link, type) \
55 (elt)->link.prev = ISC_LINK_TOMBSTONE(type); \
56 (elt)->link.next = ISC_LINK_TOMBSTONE(type); \
58 #define ISC_LINK_INIT(elt, link) ISC_LINK_INIT_TYPE(elt, link, void)
59 #define ISC_LINK_LINKED_TYPE(elt, link, type) \
60 ((type *)((elt)->link.prev) != ISC_LINK_TOMBSTONE(type))
61 #define ISC_LINK_LINKED(elt, link) ISC_LINK_LINKED_TYPE(elt, link, void)
67 #define __ISC_LIST_PREPENDUNSAFE(list, elt, link) \
    [all...]
  /src/tests/usr.sbin/stdhosts/
d_ipv6.in 9 ff02::1 link-local multicast
10 ff02::1:2 link-local multicast
11 ff02:0:0:0:0:0:0:1 link-local multicast
12 ff02:0:0:0:0:0:1:3 link-local multicast
  /src/external/gpl3/gcc.old/dist/libphobos/src/
libgphobos.spec.in 3 # It is used to specify the libraries we need to link in, in the right
9 %rename link linkorig_gdc_renamed
10 *link: %(linkorig_gdc_renamed) @OS_LINK_SPEC@
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/inc/
dc_link_dp.h 41 struct dc_link *link,
46 struct dc_link *link,
51 struct dc_link *link);
54 struct dc_link *link,
68 bool is_mst_supported(struct dc_link *link);
70 bool detect_dp_sink_caps(struct dc_link *link);
72 void detect_edp_sink_caps(struct dc_link *link);
74 bool is_dp_active_dongle(const struct dc_link *link);
76 void dp_enable_mst_on_sink(struct dc_link *link, bool enable);
78 enum dp_panel_mode dp_get_panel_mode(struct dc_link *link);
    [all...]
link_hwss.h 34 struct dc_link *link,
40 struct dc_link *link,
50 struct dc_link *link,
55 void dp_receiver_power_ctrl(struct dc_link *link, bool on);
56 bool edp_receiver_ready_T9(struct dc_link *link);
57 bool edp_receiver_ready_T7(struct dc_link *link);
59 void dp_disable_link_phy(struct dc_link *link, enum signal_type signal);
61 void dp_disable_link_phy_mst(struct dc_link *link, enum signal_type signal);
64 struct dc_link *link,
69 struct dc_link *link,
    [all...]
  /src/external/gpl3/gdb/dist/gnulib/import/
fd-hook.c 29 /* The first and last link in the doubly linked list.
71 register_fd_hook (close_hook_fn close_hook, ioctl_hook_fn ioctl_hook, struct fd_hook *link)
78 if (link->private_next == NULL && link->private_prev == NULL)
80 /* Add the link to the doubly linked list. */
81 link->private_next = anchor.private_next;
82 link->private_prev = &anchor;
83 link->private_close_fn = close_hook;
84 link->private_ioctl_fn = ioctl_hook;
85 anchor.private_next->private_prev = link;
    [all...]
  /src/external/gpl3/gdb.old/dist/gnulib/import/
fd-hook.c 29 /* The first and last link in the doubly linked list.
71 register_fd_hook (close_hook_fn close_hook, ioctl_hook_fn ioctl_hook, struct fd_hook *link)
78 if (link->private_next == NULL && link->private_prev == NULL)
80 /* Add the link to the doubly linked list. */
81 link->private_next = anchor.private_next;
82 link->private_prev = &anchor;
83 link->private_close_fn = close_hook;
84 link->private_ioctl_fn = ioctl_hook;
85 anchor.private_next->private_prev = link;
    [all...]
  /src/sys/arch/i386/pci/
piixreg.h 41 #define PIIX_LEGAL_LINK(link) ((link) >= 0 && (link) <= piix_max_link)
opti82c558reg.h 46 #define VIPER_LEGAL_LINK(link) ((link) >= 0 && (link) <= 3)
sis85c503reg.h 35 #define SIS85C503_LEGAL_LINK(link) ((link) >= SIS85C503_CFG_PIRQ_REGSTART && \
36 (link) <= SIS85C503_CFG_PIRQ_REGEND)
opti82c700reg.h 47 * Opti's suggested Link values.
51 #define FIRESTAR_PIR_REGOFS(link) \
52 (((link) >> FIRESTAR_PIR_REGOFS_SHIFT) & FIRESTAR_PIR_REGOFS_MASK)
56 #define FIRESTAR_PIR_SELECTSRC(link) \
57 (((link) >> FIRESTAR_PIR_SELECTSRC_SHIFT) & FIRESTAR_PIR_SELECTSRC_MASK)
  /src/sys/netbt/
hci_link.c 70 struct hci_link *link; local
78 link = hci_link_lookup_bdaddr(unit, bdaddr, HCI_LINK_ACL);
79 if (link == NULL) {
80 link = hci_link_alloc(unit, bdaddr, HCI_LINK_ACL);
81 if (link == NULL)
85 switch(link->hl_state) {
106 hci_link_free(link, err);
110 link->hl_flags |= HCI_LINK_CREATE_CON;
111 link->hl_state = HCI_LINK_WAIT_CONNECT;
128 * will keep the link alive
174 struct hci_link *link; local
212 struct hci_link *link = arg; local
427 struct hci_link *link; local
835 struct hci_link *link; local
897 struct hci_link *link; local
1029 struct hci_link *link; local
1051 struct hci_link *link; local
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/core/
amdgpu_dc_link.c 83 static void dc_link_destruct(struct dc_link *link)
87 if (link->hpd_gpio != NULL) {
88 dal_gpio_destroy_irq(&link->hpd_gpio);
89 link->hpd_gpio = NULL;
92 if (link->ddc)
93 dal_ddc_service_destroy(&link->ddc);
95 if(link->link_enc)
96 link->link_enc->funcs->destroy(&link->link_enc);
98 if (link->local_sink
1442 struct dc_link *link = local
1470 struct dc_link *link = stream->link; local
1495 struct dc_link *link = stream->link; local
1564 struct dc_link *link = pipe_ctx->stream->link; local
2074 struct dc_link *link = stream->link; local
2134 struct dc_link *link = stream->link; local
2156 struct dc_link *link = stream->link; local
2717 struct dc_link *link = stream->link; local
2800 struct dc_link *link = stream->link; local
3086 struct dc_link *link = stream->sink->link; local
    [all...]
amdgpu_dc_link_dp.c 23 link->ctx->logger
57 struct dc_link *link,
65 if (link->dpcd_caps.dpcd_rev.raw >= DPCD_REV_12) {
69 link,
82 struct dc_link *link,
93 struct dc_link *link,
97 link,
108 static enum dc_dp_training_pattern get_supported_tp(struct dc_link *link)
111 struct encoder_feature_support *features = &link->link_enc->features;
112 struct dpcd_caps *dpcd_caps = &link->dpcd_caps
1513 struct dc_link *link = stream->link; local
2354 struct dc_link *link; local
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/
dm_helpers.h 51 const struct dc_link *link);
67 const struct dc_link *link);
70 * Clear payload allocation table before enable MST DP link.
74 const struct dc_link *link);
92 const struct dc_link *link,
97 const struct dc_link *link);
103 const struct dc_link *link,
113 const struct dc_link *link,
120 const struct dc_link *link,
129 struct dc_link *link);
    [all...]
  /src/sys/dev/acpi/
acpi_pci_link.c 61 * An ACPI PCI link device may contain multiple links. Each link has its
62 * own ACPI resource. _PRT entries specify which link is being used via
91 struct link;
96 struct link *pl_links;
106 struct link { struct
142 static int link_valid_irq(struct link *, int);
147 static struct link *acpi_pci_link_lookup(struct acpi_pci_link_softc *, int);
192 struct link *link; local
260 struct link *link; local
406 struct link *link; local
670 struct link *link; local
740 struct link *link; local
823 struct link *link; local
902 struct link *link; local
1030 struct link *link; local
    [all...]
  /src/bin/ksh/
alloc.c 36 struct link { struct
37 struct link *prev;
38 struct link *next;
51 struct link *l, *l2;
60 #define L2P(l) ( (void *)(((char *)(l)) + sizeof(struct link)) )
61 #define P2L(p) ( (struct link *)(((char *)(p)) - sizeof(struct link)) )
67 struct link *l;
69 l = malloc(sizeof(struct link) + size);
86 struct link *l, *l2, *lprev, *lnext
    [all...]
  /src/external/gpl2/gettext/dist/autoconf-lib-link/m4/
Makefile.am 8 lib-link.m4 \
15 lib-link.m4 \
  /src/external/bsd/ntp/dist/include/
ntp_lists.h 15 * The name of the next link field is passed as an argument to allow
16 * membership in several lists at once using multiple next link fields.
18 * When possible, placing the link field first in the entry structure
102 * because both link chains are circular. The beginning/end is marked
120 * an entry's link pointer when it is unlinked, as the stale pointer
257 * begins with the link pointer
261 gen_node * link; member in struct:gen_node_tag
359 #define DECL_DLIST_LINK(entrytype, link) \
363 } link
365 #define INIT_DLIST(listhead, link) \
    [all...]
  /src/sys/dev/fdt/
ausoc.c 76 struct ausoc_link * const link = priv; local
79 for (aux = 0; aux < link->link_naux; aux++)
80 audio_dai_close(link->link_aux[aux]);
81 audio_dai_close(link->link_codec);
82 audio_dai_close(link->link_cpu);
88 struct ausoc_link * const link = priv; local
92 error = audio_dai_open(link->link_cpu, flags);
96 error = audio_dai_open(link->link_codec, flags);
100 for (aux = 0; aux < link->link_naux; aux++) {
101 error = audio_dai_open(link->link_aux[aux], flags)
116 struct ausoc_link * const link = priv; local
126 struct ausoc_link * const link = priv; local
155 struct ausoc_link * const link = priv; local
163 struct ausoc_link * const link = priv; local
171 struct ausoc_link * const link = priv; local
179 struct ausoc_link * const link = priv; local
187 struct ausoc_link * const link = priv; local
195 struct ausoc_link * const link = priv; local
211 struct ausoc_link * const link = priv; local
220 struct ausoc_link * const link = priv; local
228 struct ausoc_link * const link = priv; local
236 struct ausoc_link * const link = priv; local
250 struct ausoc_link * const link = priv; local
265 struct ausoc_link * const link = priv; local
292 struct ausoc_link * const link = priv; local
318 struct ausoc_link * const link = priv; local
    [all...]

Completed in 36 milliseconds

1 2 3 4 5 6 7 8 91011>>