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

123456789

/osnet-11/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...]
/osnet-11/usr/src/lib/libast/common/comp/
H A Dlink.c28 NoN(link)
39 link(const char* from, const char* to)
H A Drename.c71 while (link(from, to))
/osnet-11/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...]
/osnet-11/usr/src/lib/libshadowfs/common/
H A Dshadow_hash.c154 shadow_hash_link_t *link, **nbuckets; local
175 while ((link = shp->sh_buckets[idx]) != NULL) {
183 shp->sh_buckets[idx] = link->shl_next;
184 elem = (void *)((uintptr_t)link - shp->sh_linkoffs);
187 link->shl_next = nbuckets[nidx];
188 nbuckets[nidx] = link;
215 void *link = shadow_list_next(&(shp)->sh_list); local
217 if (link == NULL)
220 return ((void *)((uintptr_t)link - shp->sh_linkoffs));
226 void *link local
237 shadow_hash_link_t *link = (void *)((uintptr_t)elem + shp->sh_linkoffs); local
255 shadow_hash_link_t *link = (void *)((uintptr_t)elem + shp->sh_linkoffs); local
[all...]
/osnet-11/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...]
/osnet-11/usr/src/lib/libast/common/cdt/
H A Ddttree.c44 Dtlink_t *l, *r, *me, link; local
59 { if(disc->freef || disc->link < 0)
66 if(disc->link < 0)
90 /* note that link.right is LEFT tree and link.left is RIGHT tree */
91 l = r = &link;
238 root->left = link.right;
239 root->right = link.left;
259 { root->left = link.right;
261 link
[all...]
/osnet-11/usr/src/lib/sun_sas/common/
H A Ddevlink_disco.c46 * Find matching /dev link for the given path argument.
78 * Convert /devices paths to /dev sym-link paths.
83 * If no link is found, the long path is left as is.
104 /* search link for minor node */
147 * Return value: /dev link for dir and minor name.
150 lookupLink(char *path, char *link, const char *dir, const char *mname) argument
169 if (link == NULL) {
171 "Invalid argument for storing the link.");
213 (void) strlcpy(link, node, MAXPATHLEN);
233 lookupControllerLink(char *path, char *link) argument
246 lookupSMPLink(char *path, char *link) argument
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/script/
H A Dscript.c161 struct grub_script_arglist *link;
166 link =
167 (struct grub_script_arglist *) grub_script_malloc (state, sizeof (*link));
168 if (!link)
171 link->next = 0;
172 link->arg = arg;
173 link->argcount = 0;
177 link->argcount++;
178 return link;
183 /* Look up the last link i
160 struct grub_script_arglist *link; local
[all...]
/osnet-11/usr/src/lib/libast/common/misc/
H A Dftwalk.c87 e->parent->link = e;
96 for (x = e; x; x = x->link)
105 e->parent->link = e;
107 e->parent->link = 0;
110 for (x = e; x; x = x->link)
125 for (x = fts_children(f, 0); x; x = x->link)
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/t/
H A Dparselink.t115 my $link = shift @expected;
116 my @results = parselink ($link);
/osnet-11/usr/src/lib/libast/common/port/
H A Dlcgen.c59 Link_t link; member in struct:Abbreviation_s
65 Link_t link; member in struct:Attribute_s
76 Link_t link; member in struct:Charset_s
83 Link_t link; member in struct:Language_s
98 Link_t link; member in struct:Territory_s
107 Link_t link; member in struct:Map_s
427 cp->link.code = copy(&b, arg[0]);
432 fprintf(stderr, "%s: %d: %s: duplicate charset\n", command, line, cp->link.code);
443 tp->link.code = copy(&b, arg[0]);
486 fprintf(stderr, "%s: %d: %s: duplicate territory\n", command, line, tp->link
[all...]
/osnet-11/usr/src/lib/libeti/form/common/
H A Dfield.c73 (FIELD *)0, /* link */
166 f->link = f;
203 f->link = f;
240 /* FIELD * field; field to link to */
252 f->link = field->link;
253 field->link = f; /* add field to linked list */
293 if (f->link != f) { /* check for linked field */
294 for (p = f->link; p->link !
[all...]
/osnet-11/usr/src/lib/libast/common/string/
H A Dfmtls.c45 * link link text if != 0
52 fmtls(char* buf, const char* name, register struct stat* st, const char* info, const char* link, register int flags) argument
110 if (link)
116 "==", link);
/osnet-11/usr/src/lib/brand/shared/brand/sparc/
H A Dcrt.s27 #include <sys/link.h>
/osnet-11/usr/src/lib/libfuse/common/
H A Dfuse_impl.h64 #define FUSE_OP_SYMLINK(fs, link, path) \
65 (fs->op.symlink ? fs->op.symlink(link, path) : ENOSYS)
66 #define FUSE_OP_READLINK(fs, path, link, len) \
67 (fs->op.readlink ? fs->op.readlink(path, link, len) : ENOSYS)
69 (fs->op.link ? fs->op.link(src, dst) : ENOSYS)
H A Dfuse_compat.h29 int (*link) (const char *, const char *); member in struct:fuse_operations_compat25
88 int (*link) (const char *, const char *); member in struct:fuse_operations_compat22
139 int (*link) (const char *, const char *); member in struct:fuse_operations_compat2
187 int (*link) (const char *, const char *); member in struct:fuse_operations_compat1
/osnet-11/usr/src/lib/libdevinfo/
H A Ddevinfo_devlink.c73 * allows link generators like devfsadm(1M) and ucblinks(1B) (writers) to
82 * are complete, the link generator calls di_devlink_close() which writes
124 * walks through every link in the link segment.
621 if (read_links(hdp, cmnp, dmp->link) != 0) {
630 * If the link is dangling the corresponding minor will be absent.
660 (void) dprintf(DBG_STEP, "read_links: link[%u]: %s%s\n",
907 if (write_links(hdp, dmp, cmnp->link, next) != 0) {
930 (void) dprintf(DBG_ERR, "%s: invalid minor for link\n", fcn);
940 (void) dprintf(DBG_ERR, "%s: invalid minor for link"
1165 link_hash(di_devlink_handle_t hdp, const char *link, uint_t flags) argument
1197 char *cp, buf[PATH_MAX], link[PATH_MAX]; local
1733 rm_link(di_devlink_handle_t hdp, const char *link) argument
1758 di_devlink_rm_link(di_devlink_handle_t hdp, const char *link) argument
1816 di_devlink_add_link( di_devlink_handle_t hdp, const char *link, const char *content, int flags) argument
1826 add_link( struct di_devlink_handle *hdp, const char *link, const char *content, int flags) argument
2203 cache_dev_link(struct di_devlink_handle *hdp, void *data, const char *link) argument
3234 s_readlink(const char *link, char *buf, size_t blen) argument
[all...]
/osnet-11/usr/src/lib/libresolv2/common/resolv/
H A Dres_findzonecut.c51 LINK(struct rr_a) link; member in struct:rr_a
57 LINK(struct rr_ns) link; member in struct:rr_ns
239 nsrr = NEXT(nsrr, link))
257 for (arr = HEAD(nsrr->addrs); arr != NULL; arr = NEXT(arr, link)) {
455 nsrr_n = NEXT(nsrr, link);
560 INIT_LINK(nsrr, link);
563 APPEND(*nsrrsp, nsrr, link);
606 INIT_LINK(arr, link);
631 APPEND(nsrr->addrs, arr, link);
650 UNLINK(nsrr->addrs, arr, link);
[all...]
/osnet-11/usr/src/lib/libeti/menu/
H A DMakefile.com39 link.o \
/osnet-11/usr/src/lib/libzonestat/common/
H A Dlibzonestat.c883 * add byte counts to link total
946 * Old interval does not contain the link in new
951 * to link/system total. We may be under reporting
979 * increment interval count for up phys link
993 * Start interval contains link that is not in the
994 * end interval. This link is gone. Leave link in
1021 /* increment interval count for "up" phys link or etherstub */
1046 /* add to link total */
1079 * increment interval count for up phys link
2568 struct zs_datalink *link = NULL; local
5277 struct zs_datalink *link; local
5293 struct zs_datalink *link = (struct zs_datalink *)linkin; local
5312 struct zs_datalink *link = (struct zs_datalink *)linkin; local
5328 zs_link_name(zs_datalink_t link) argument
5334 zs_link_devname(zs_datalink_t link) argument
5340 zs_link_zonename(zs_datalink_t link) argument
5346 zs_link_speed(zs_datalink_t link) argument
5352 zs_link_state(zs_datalink_t link) argument
5358 zs_link_class(zs_datalink_t link) argument
5365 zs_link_maxbw(zs_datalink_t link) argument
5371 zs_link_rbytes(zs_datalink_t link) argument
5377 zs_link_obytes(zs_datalink_t link) argument
5383 zs_link_prbytes(zs_datalink_t link) argument
5389 zs_link_pobytes(zs_datalink_t link) argument
5395 zs_link_tot_bytes(zs_datalink_t link) argument
5401 zs_link_tot_rbytes(zs_datalink_t link) argument
5407 zs_link_tot_obytes(zs_datalink_t link) argument
5413 zs_link_tot_prbytes(zs_datalink_t link) argument
5419 zs_link_tot_pobytes(zs_datalink_t link) argument
5430 struct zs_datalink *link = (struct zs_datalink *)linkin; local
[all...]
/osnet-11/usr/src/lib/libpkg/common/
H A Dpkgweb.h92 char *link; member in struct:__anon2343
/osnet-11/usr/src/lib/brand/solaris10/s10_npreload/common/
H A Ds10_npreload.c32 #include <link.h>
/osnet-11/usr/src/lib/libast/amd64/include/ast/
H A Dftwalk.h49 #define fts_link link
/osnet-11/usr/src/lib/libast/common/include/
H A Dftwalk.h40 #define fts_link link

Completed in 65 milliseconds

123456789