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

1234567891011>>

/illumos-gate/usr/src/lib/libresolv2/include/isc/
H A Dlist.h27 #define INIT_LINK_TYPE(elt, link, type) \
29 (elt)->link.prev = (type *)(-1); \
30 (elt)->link.next = (type *)(-1); \
32 #define INIT_LINK(elt, link) \
33 INIT_LINK_TYPE(elt, link, void)
34 #define LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1) && \
35 (void *)((elt)->link.next) != (void *)(-1))
41 #define PREPEND(list, elt, link) \
43 INSIST(!LINKED(elt, link));\
[all...]
/illumos-gate/usr/src/cmd/xvm/ipagent/
H A Dipagent.ksh33 xs_link_path="guest/ipv4/default-link"
34 link=""
37 # Look for a valid-seeming address for the given link. Return 0 on success.
55 # Look in the store for a cached link name.
57 link=`/usr/lib/xen/bin/xenstore-read $xs_link_path 2>/dev/null`
58 if [ -z "$link" ] || [ "$link" = "(none)" ]
68 # Determine the default link name and update xenstore with the details.
72 link="(none)";
77 dladm show-link
[all...]
/illumos-gate/usr/src/cmd/fs.d/nfs/nfslog/
H A Dfhtab.h69 /* link key - directory primary key plus name (upto 2 components) */
98 * next - next link in list (could be null)
99 * prev - previous link in list (could be null)
111 short next_offset; /* offset of next link key */
112 short prev_offset; /* offset of prev link key */
117 #define LN_FHKEY_LEN(link) ((link)->name_offset - (link)->fhkey_offset)
119 #define LN_NAME_LEN(link) ((link)
[all...]
/illumos-gate/usr/src/cmd/sgs/libelf/common/
H A Dlintsup.c33 #include <link.h>
/illumos-gate/usr/src/lib/libast/common/comp/
H A Dlink.c28 NoN(link)
39 link(const char* from, const char* to)
/illumos-gate/usr/src/cmd/rcm_daemon/common/
H A Dttymux_rcm_impl.h68 struct link *dependencies;
80 * The linkid field refers to the STREAM's link identifier.
82 typedef struct link { struct
85 int linkid; /* STREAM's link identifier */
88 int (*connect)(struct link *);
89 int (*disconnect)(struct link *);
90 struct link *next;
H A Dttymux_rcm.c307 nullconnect(link_t *link) argument
317 nulldisconnect(link_t *link) argument
330 link_t *link; local
346 for (link = linkhead; link != NULL; link = link->next) {
351 if (link->used == used)
352 return (link);
355 link
437 mux_connect(link_t *link) argument
603 mux_disconnect(link_t *link) argument
762 link_t *link; local
852 link_t *link; local
894 link_t *link; local
927 link_t *link; local
1214 link_t *link, *nlink; local
1254 link_t *link; local
[all...]
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Drealpath.c137 * see whether the component is a symbolic link. If so,
141 char link[MAXPATHLEN + 1]; local
150 if ((llen = readlink(canon, link, sizeof link)) >= 0) {
160 * Instead, form the new path suffix in the link buffer
163 t = link + llen;
171 (void) strncpy(t, s, sizeof link - llen - 1);
172 link[sizeof link - 1] = '\0';
174 * If the link'
[all...]
/illumos-gate/usr/src/cmd/sgs/libldstab/common/
H A Dstab.c28 * The sharable object /usr/lib/libldstab.so.1 is a link-editor
30 * eliminating duplicate include file entries. The link-editor would
35 * add '-S libldstab.so.1' to their link commands in order to retain
44 * no longer deliver a program named sbfocus. The link-editor no longer
50 * '-S libldstab.so.1' to the link-editor command line, this object
52 * LD_SUP_VNONE, which indicates to the link-editor that it is
59 #include <link.h>
/illumos-gate/usr/src/cmd/svr4pkg/libinst/
H A Dstub.c36 return (link(x, y) || unlink(x));
/illumos-gate/usr/src/cmd/cmd-inet/lib/nwamd/
H A Dncu_phys.c59 * ncu_phys.c - contains routines that are physical-link specific.
64 * Get link state from kstats. Used to determine initial link state for
65 * cases where drivers do not support DL_NOTE_LINK_UP/DOWN. If link
66 * state is LINK_STATE_UNKNOWN, we assume the link is up and the IP NCU
105 * Set/unset link propeties. At present, these are MAC address, link MTU and
148 "for link %s", mtustr, ncu->ncu_name);
158 "autopush module for link %s", num_autopush, ncu->ncu_name);
443 nwamd_link_t *link; local
710 nwamd_link_t *link = &ncu->ncu_link; local
761 nwamd_link_t *link = data; local
808 check_if_hidden_wlan_was_visited(nwamd_link_t *link) argument
820 nwamd_link_t *link; local
957 nwamd_link_t *link = &ncu->ncu_link; local
1188 nwamd_link_t *link = &ncu->ncu_link; local
1282 nwamd_link_t *link; local
1498 char *link = strdup(linkname); local
1547 nwamd_link_t *link; local
1721 char *link = strdup(linkname); local
1751 nwamd_link_t *link; local
1815 char *link = strdup(linkname); local
1843 nwamd_link_t *link; local
[all...]
H A Ddlpi_events.c48 * level processing. Holding a dlpi_handle to a link prevents the
56 * It packages up the event for consumption by the link state machine.
93 * changes on a link.
99 nwamd_link_t *link; local
108 link = &ncu->ncu_link;
111 if (link->nwamd_link_dlpi_thread != 0) {
117 rc = dlpi_open(ncu->ncu_name, &link->nwamd_link_dhp, 0);
126 rc = dlpi_enabnotify(link->nwamd_link_dhp,
133 dlpi_close(link->nwamd_link_dhp);
137 rc = pthread_create(&link
[all...]
/illumos-gate/usr/src/cmd/ndmpd/tlm/
H A Dtlm_info.c46 tlm_chain_link_t *link);
135 * add a link to the INFO chain
183 tlm_chain_link_t *link; local
186 link = tlm_info.ti_job_stats;
187 if (link == 0) {
197 job_stats = (tlm_job_stats_t *)link->tc_data;
200 link->tc_ref_count++;
204 link = link->tc_next;
205 } while (link !
219 tlm_chain_link_t *link; local
249 tlm_un_ref(tlm_chain_link_t *old_top, tlm_chain_link_t *link) argument
[all...]
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddlink.h23 #include <link.h>
/illumos-gate/usr/src/lib/libbc/libc/sys/4.2/
H A Dlink.c30 link(char *a, char *b) function
/illumos-gate/usr/src/lib/libbc/libc/sys/sys5/
H A Dlink.c30 link(char *a, char *b) function
/illumos-gate/usr/src/lib/libipmi/common/
H A Dipmi_hash.c174 ipmi_hash_link_t *link, **nbuckets; local
195 while ((link = ihp->ih_buckets[idx]) != NULL) {
203 ihp->ih_buckets[idx] = link->ihl_next;
204 elem = (void *)((uintptr_t)link - ihp->ih_linkoffs);
207 link->ihl_next = nbuckets[nidx];
208 nbuckets[nidx] = link;
235 void *link = ipmi_list_next(&(ihp)->ih_list); local
237 if (link == NULL)
240 return ((void *)((uintptr_t)link - ihp->ih_linkoffs));
246 void *link local
257 ipmi_hash_link_t *link = (void *)((uintptr_t)elem + ihp->ih_linkoffs); local
275 ipmi_hash_link_t *link = (void *)((uintptr_t)elem + ihp->ih_linkoffs); local
[all...]
/illumos-gate/usr/src/cmd/link/
H A DMakefile29 PROG= link
30 XPG4PROG= link
31 OBJS= link.o
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/
H A Dlm_phy.c401 rc = elink_phy_read(&pdev->params.link, phy_addr, dev_addr, reg, ret_val);
429 rc = elink_phy_write(&pdev->params.link, phy_addr, dev_addr, reg, val);
468 // probably we get here from ioc_get_driver_info in case of no link
684 // link status
686 if (!pdev->vars.link.link_up)
694 // if we are in multifunction mode and function is disabled indicate OS link down (unless loopback medium is set)
695 // Note that the CLC link is up so pmf handling is still going on
713 real_speed = lm_get_speed_real_from_elink_line_speed(&pdev->vars.link);
716 medium = lm_get_speed_medium_from_elink_line_speed(&pdev->vars.link);
722 if (pdev->vars.link
1255 struct elink_params *link = &pdev->params.link; local
[all...]
/illumos-gate/usr/src/stand/lib/fs/common/
H A Dcache.c54 #define Next 0 /* Next pointer in Fwd/Bak link */
63 struct cache *link[4]; /* .. Fwd/Bak links for hash chain & LRU */ member in struct:cache
64 struct cache **chn; /* .. Hash chain link */
123 cap->link[Next]->link[Prev] = cap->link[Prev];
124 cap->link[Prev]->link[Next] = cap->link[Next];
126 cap->link[Pre
[all...]
/illumos-gate/usr/src/lib/libc/port/sys/
H A Dlink.c39 #pragma weak _link = link
41 link(const char *path1, const char *path2) function
44 * XPG4v2 link() requires that the link count of a symbolic
45 * link target be updated rather than the link itself. This
48 * that allowed link(src, dest) when "src" was a symbolic link,
49 * to create "dest" as a hard link to "src". Hence, the link
[all...]
/illumos-gate/usr/src/psm/stand/sys/
H A Dboot.h42 #include <sys/link.h>
/illumos-gate/usr/src/common/ficl/
H A Dhash.c24 pWord = pWord->link;
83 word->link = *pList;
92 * Note: outer loop on link field supports inheritance in wordlists.
94 * with NULL link fields.
106 for (; hash != NULL; hash = hash->link) {
112 for (word = hash->table[hashIdx]; word; word = word->link) {
117 FICL_ASSERT_PHASH(hash, word != word->link);
140 hash->link = NULL;
/illumos-gate/usr/src/cmd/svr4pkg/pkgproto/
H A Dmain.c59 #define ERR_RDLINK "unable to read link for <%s>"
64 struct link { struct
68 struct link *next;
71 static struct link *firstlink = (struct link *)0;
72 static struct link *lastlink = (struct link *)0;
220 /* It's a link to a file not in this package. */
326 * Scan a raw link for origination errors. Given
330 * we don't want the link t
447 struct link *link, *new; local
[all...]
/illumos-gate/usr/src/common/mapfiles/amd64/
H A DMakefile34 install: $(DIRS) $(FILES) map.link
40 map.link:

Completed in 146 milliseconds

1234567891011>>