Searched refs:link (Results 1 - 25 of 1094) sorted by relevance

1234567891011>>

/freebsd-11-stable/usr.bin/clang/llvm-link/
H A DMakefile1 # $FreeBSD: stable/11/usr.bin/clang/llvm-link/Makefile 360660 2020-05-05 17:10:49Z dim $
3 PROG_CXX= llvm-link
5 SRCDIR= llvm/tools/llvm-link
6 SRCS+= llvm-link.cpp
/freebsd-11-stable/tools/tools/tinybsd/conf/bridge/etc/
H A Dsysctl.conf4 net.link.bridge.ipfw=1
5 net.link.bridge.pfil_onlyip=1
/freebsd-11-stable/contrib/apr/include/
H A Dapr_ring.h55 * APR_RING_ENTRY(my_element_t) link;
85 * This struct looks just like the element link struct so that we can
157 * @param link The name of the APR_RING_ENTRY in the element struct
159 #define APR_RING_SENTINEL(hp, elem, link) \
160 (struct elem *)((char *)(&(hp)->next) - APR_OFFSETOF(struct elem, link))
175 * @param link The name of the APR_RING_ENTRY in the element struct
177 #define APR_RING_NEXT(ep, link) (ep)->link.next
181 * @param link The name of the APR_RING_ENTRY in the element struct
183 #define APR_RING_PREV(ep, link) (e
[all...]
/freebsd-11-stable/lib/libc/include/isc/
H A Dlist.h34 #define INIT_LINK_TYPE(elt, link, type) \
36 (elt)->link.prev = (type *)(-1); \
37 (elt)->link.next = (type *)(-1); \
39 #define INIT_LINK(elt, link) \
40 INIT_LINK_TYPE(elt, link, void)
41 #define LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1) && \
42 (void *)((elt)->link.next) != (void *)(-1))
48 #define PREPEND(list, elt, link) \
50 INSIST(!LINKED(elt, link));\
[all...]
/freebsd-11-stable/contrib/ntp/lib/isc/include/isc/
H A Dlist.h36 #define ISC_LINK_INIT_TYPE(elt, link, type) \
38 (elt)->link.prev = (type *)(-1); \
39 (elt)->link.next = (type *)(-1); \
41 #define ISC_LINK_INIT(elt, link) \
42 ISC_LINK_INIT_TYPE(elt, link, void)
43 #define ISC_LINK_LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1))
49 #define __ISC_LIST_PREPENDUNSAFE(list, elt, link) \
52 (list).head->link.prev = (elt); \
55 (elt)->link
[all...]
H A Dqueue.h38 #define ISC_QLINK_INIT(elt, link) \
40 (elt)->link.next = (void *)(-1); \
41 (elt)->link.linked = ISC_FALSE; \
43 #define ISC_QLINK_LINKED(elt, link) ((elt)->link.linked)
51 #define ISC_QUEUE_INIT(queue, link) \
57 ISC_QLINK_INIT((queue).head, link); \
69 #define ISC_QUEUE_PUSH(queue, elt, link) \
71 ISC_QLINK_INSIST(!ISC_QLINK_LINKED(elt, link)); \
72 (elt)->link
[all...]
/freebsd-11-stable/usr.sbin/ppp/
H A Dlink.h28 * $FreeBSD: stable/11/usr.sbin/ppp/link.h 330449 2018-03-05 07:26:05Z eadler $
42 struct link { struct
49 struct pppThroughput *parent; /* MP link throughput statistics */
63 #define LINK_QUEUES(link) (sizeof (link)->Queue / sizeof (link)->Queue[0])
64 #define LINK_HIGHQ(link) ((link)->Queue + LINK_QUEUES(link) - 1)
66 extern void link_SequenceQueue(struct link *);
[all...]
H A Dip.h35 struct link;
38 extern int ip_PushPacket(struct link *, struct bundle *);
43 extern struct mbuf *ipv4_Input(struct bundle *, struct link *, struct mbuf *);
45 extern struct mbuf *ipv6_Input(struct bundle *, struct link *, struct mbuf *);
H A Dvjcomp.h32 struct link;
H A Dlayer.h41 #define LAYER_MAX 10 /* How many layers we can handle on a link */
44 struct link;
50 struct mbuf *(*push)(struct bundle *, struct link *, struct mbuf *,
52 struct mbuf *(*pull)(struct bundle *, struct link *, struct mbuf *,
H A Dpap.h42 extern struct mbuf *pap_Input(struct bundle *, struct link *, struct mbuf *);
/freebsd-11-stable/sys/dev/wtap/plugins/
H A Dvisibility_ioctl.h41 struct link { struct
42 int op; //0 remove, 1 link
48 #define VISIOCTLLINK _IOW('W', 4, struct link) //
/freebsd-11-stable/contrib/pjdfstest/tests/link/
H A D17.t2 # $FreeBSD: head/tools/regression/pjdfstest/tests/link/17.t 211352 2010-08-15 21:24:17Z pjd $
4 desc="link returns EFAULT if one of the pathnames specified is outside the process's allocated address space"
14 expect EFAULT link ${n0} NULL
15 expect EFAULT link ${n0} DEADCODE
17 expect EFAULT link NULL ${n0}
18 expect EFAULT link DEADCODE ${n0}
19 expect EFAULT link NULL DEADCODE
20 expect EFAULT link DEADCODE NULL
H A D09.t2 # $FreeBSD: head/tools/regression/pjdfstest/tests/link/09.t 211352 2010-08-15 21:24:17Z pjd $
4 desc="link returns ENOENT if the source file does not exist"
15 expect 0 link ${n0} ${n1}
18 expect ENOENT link ${n0} ${n1}
H A D02.t2 # $FreeBSD: head/tools/regression/pjdfstest/tests/link/02.t 211352 2010-08-15 21:24:17Z pjd $
4 desc="link returns ENAMETOOLONG if a component of either pathname exceeded {NAME_MAX} characters"
16 expect 0 link ${nx} ${n0}
18 expect 0 link ${n0} ${nx}
23 expect ENAMETOOLONG link ${n0} ${nxx}
25 expect ENAMETOOLONG link ${nxx} ${n0}
H A D08.t2 # $FreeBSD: head/tools/regression/pjdfstest/tests/link/08.t 211352 2010-08-15 21:24:17Z pjd $
4 desc="link returns ELOOP if too many symbolic links were encountered in translating one of the pathnames"
17 expect ELOOP link ${n0}/test ${n2}
18 expect ELOOP link ${n1}/test ${n2}
20 expect ELOOP link ${n2} ${n0}/test
21 expect ELOOP link ${n2} ${n1}/test
/freebsd-11-stable/sys/dev/ocs_fc/
H A Docs_list.h67 * @brief list/link structure
69 * used for both the list object, and the link object(s). offset
72 * when ocs_list_t is used as a link (ocs_list_link_t).
79 ocs_list_t *next; /*<< pointer to head of list (or next if link) */
80 ocs_list_t *prev; /*<< pointer to tail of list (or previous if link) */
81 uint32_t offset; /*<< offset in bytes to the link element of the objects in list */
85 /* item2link - return pointer to link given pointer to an item */
88 /* link2item - return pointer to item given pointer to a link */
89 #define link2item(list, link) ((void*) (((uint8_t*)(link))
195 ocs_list_init_link(ocs_list_t *list, ocs_list_t *link) argument
222 ocs_list_t *link; local
250 ocs_list_t *link; local
326 ocs_list_t *link; local
371 ocs_list_t *link; local
444 ocs_list_on_list(ocs_list_link_t *link) argument
[all...]
/freebsd-11-stable/sys/ddb/
H A Ddb_watch.h45 struct db_watchpoint *link; /* link in in-use or free chain */ member in struct:db_watchpoint
/freebsd-11-stable/contrib/ntp/include/
H A Dntp_lists.h13 * 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
253 * begins with the link pointer
257 gen_node * link; member in struct:gen_node_tag
355 #define DECL_DLIST_LINK(entrytype, link) \
359 } link
361 #define INIT_DLIST(listhead, link) \
[all...]
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Drename.c27 if (link (zfrom, zto) < 0)
32 || link (zfrom, zto) < 0)
/freebsd-11-stable/contrib/binutils/libiberty/
H A Drename.c27 if (link (zfrom, zto) < 0)
32 || link (zfrom, zto) < 0)
/freebsd-11-stable/bin/ln/
H A DMakefile10 LINKS= ${BINDIR}/ln ${BINDIR}/link
11 MLINKS= ln.1 link.1
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/
H A DDriver.h17 bool link(llvm::ArrayRef<const char *> args, bool canExitEarly,
22 bool link(llvm::ArrayRef<const char *> args, bool canExitEarly,
27 bool link(llvm::ArrayRef<const char *> args, bool canExitEarly,
32 bool link(llvm::ArrayRef<const char *> args, bool canExitEarly,
37 bool link(llvm::ArrayRef<const char *> args, bool canExitEarly,
/freebsd-11-stable/sys/dev/acpica/
H A Dacpi_pci_link.c52 ACPI_SERIAL_DECL(pci_link, "ACPI PCI link");
58 * An ACPI PCI link device may contain multiple links. Each link has its
59 * own ACPI resource. _PRT entries specify which link is being used via
88 struct link;
93 struct link *pl_links;
97 struct link { struct
209 struct link *link; local
238 link
275 struct link *link; local
391 link_valid_irq(struct link *link, int irq) argument
421 struct link *link; local
638 struct link *link; local
718 struct link *link; local
804 struct link *link; local
861 struct link *link; local
954 acpi_pci_link_choose_irq(device_t dev, struct link *link) argument
1045 struct link *link; local
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dgenpeep.c33 of these `struct link's to record how to get down to the
38 struct link struct
40 struct link *next;
57 static void match_rtx (rtx, struct link *, int);
58 static void print_path (struct link *);
130 match_rtx (rtx x, struct link *path, int fail_label)
136 struct link link;
181 link.next = path;
182 link
134 struct link link; local
265 match_rtx (XEXP (x, i), &link, fail_label); local
274 match_rtx (XVECEXP (x, i, j), &link, fail_label); local
[all...]

Completed in 371 milliseconds

1234567891011>>