Searched defs:link (Results 1 - 25 of 219) sorted by relevance

123456789

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dlink.c8 int link(const char* oldpath, const char* newpath) { function
/external/clang/test/CodeGen/
H A D2002-03-12-StructInitialize.c10 Connection link[3] variable
H A D2002-03-12-StructInitializer.c14 Connection link[3] variable
/external/chromium_org/third_party/bintrees/bintrees/
H A Dctrees.h17 node_t *link[2]; member in struct:tree_node
/external/e2fsprogs/e2fsck/
H A Dprof_err.c58 static struct et_list link = { 0, 0 }; variable in typeref:struct:et_list
77 if (!link.table)
78 et = &link;
/external/e2fsprogs/lib/et/test_cases/
H A Dcontinuation.c28 static struct et_list link = { 0, 0 }; variable in typeref:struct:et_list
47 if (!link.table)
48 et = &link;
H A Dheimdal.c109 static struct et_list link = { 0, 0 }; variable in typeref:struct:et_list
128 if (!link.table)
129 et = &link;
H A Dheimdal2.c95 static struct et_list link = { 0, 0 }; variable in typeref:struct:et_list
114 if (!link.table)
115 et = &link;
H A Dheimdal3.c29 static struct et_list link = { 0, 0 }; variable in typeref:struct:et_list
48 if (!link.table)
49 et = &link;
H A Dimap_err.c57 static struct et_list link = { 0, 0 }; variable in typeref:struct:et_list
76 if (!link.table)
77 et = &link;
H A Dsimple.c49 static struct et_list link = { 0, 0 }; variable in typeref:struct:et_list
68 if (!link.table)
69 et = &link;
/external/e2fsprogs/lib/ext2fs/
H A Dext2_err.c183 static struct et_list link = { 0, 0 }; variable in typeref:struct:et_list
202 if (!link.table)
203 et = &link;
/external/iproute2/ip/
H A Dlink_veth.c22 printf("Usage: ip link <options> type veth "
24 "'ip link add help'\n");
30 char *name, *type, *link, *dev; local
46 &name, &type, &link, &dev, &group);
/external/jemalloc/include/jemalloc/internal/
H A Dtsd.h403 ql_elm(tsd_init_block_t) link; member in struct:tsd_init_block_s
/external/libnl/src/lib/
H A Dlink.c2 * src/lib/link.c CLI Link Helpers
20 #include <netlink/cli/link.h>
24 struct rtnl_link *link; local
26 link = rtnl_link_alloc();
27 if (!link)
28 nl_cli_fatal(ENOMEM, "Unable to allocate link object");
30 return link;
33 void nl_cli_link_parse_family(struct rtnl_link *link, char *arg) argument
41 rtnl_link_set_family(link, family);
44 void nl_cli_link_parse_name(struct rtnl_link *link, cha argument
49 nl_cli_link_parse_mtu(struct rtnl_link *link, char *arg) argument
55 nl_cli_link_parse_ifindex(struct rtnl_link *link, char *arg) argument
61 nl_cli_link_parse_txqlen(struct rtnl_link *link, char *arg) argument
67 nl_cli_link_parse_weight(struct rtnl_link *link, char *arg) argument
[all...]
/external/libnl/src/
H A Dnl-link-list.c2 * src/nl-link-dump.c Dump link attributes
16 "Usage: nl-link-dump <mode> [<filter>]\n"
18 " filter := [dev DEV] [mtu MTU] [txqlen TXQLEN] [weight WEIGHT] [link LINK]\n"
28 #include <netlink/cli/link.h>
33 "Usage: nl-link-list [OPTION]... [Link]\n"
41 " -n, --name=NAME link name\n"
54 struct rtnl_link *link; local
63 link = nl_cli_link_alloc();
94 case 'n': nl_cli_link_parse_name(link, optar
[all...]
H A Dnl-link-stats.c2 * src/nl-link-stats.c Retrieve link statistics
13 #include <netlink/cli/link.h>
18 "Usage: nl-link-stats [OPTION]... [LINK] [ListOfStats]\n"
26 " -n, --name=NAME link name\n"
45 static void dump_stat(struct rtnl_link *link, int id) argument
47 uint64_t st = rtnl_link_get_stat(link, id);
50 printf("%s.%s %" PRIu64 "\n", rtnl_link_get_name(link),
56 struct rtnl_link *link = (struct rtnl_link *) obj; local
63 dump_stat(link,
83 struct rtnl_link *link; local
[all...]
/external/proguard/src/proguard/classfile/util/
H A DMethodLinker.java94 link(member, otherMember);
104 private static void link(Member member1, Member member2) method in class:MethodLinker
110 // Check if both link chains aren't already ending in the same element.
/external/qemu/distrib/ext4_utils/src/
H A Dcontents.h24 char *link; member in struct:dentry
39 u32 make_link(const char *link);
/external/bison/lib/
H A Dfd-hook.c29 /* 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) argument
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;
98 unregister_fd_hook(struct fd_hook *link) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentTest.cpp141 // Check that we use the first manifest with <link rel=manifest>
142 RefPtrWillBeRawPtr<HTMLLinkElement> link = HTMLLinkElement::create(document(), false); local
143 link->setAttribute(WebCore::HTMLNames::relAttr, "manifest");
144 link->setAttribute(WebCore::HTMLNames::hrefAttr, "foo.json");
145 document().head()->appendChild(link);
146 EXPECT_EQ(link, document().linkManifest());
151 document().head()->insertBefore(link2, link.get());
154 EXPECT_EQ(link, document().linkManifest());
157 link->setAttribute(WebCore::HTMLNames::hrefAttr, "http:foo.json");
158 EXPECT_EQ(link, documen
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dsection.h43 /*@reldef@*/ STAILQ_ENTRY(yasm_reloc) link; /**< Link to next reloc */ member in struct:yasm_reloc
293 #define yasm_section_reloc_next(x) STAILQ_NEXT((x), link)
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dins.h19 void *link; member in struct:Ins::__anon15672
24 void *link; member in struct:Ins::__anon15673
/external/iproute2/include/linux/
H A Dip6_tunnel.h24 int link; /* ifindex of underlying L2 interface */ member in struct:ip6_tnl_parm
/external/chromium_org/chrome/browser/
H A Djumplist_updater_win.cc26 base::win::ScopedComPtr<IShellLink> link; local
27 HRESULT result = link.CreateInstance(CLSID_ShellLink, NULL,
35 result = link->SetPath(application_path.c_str());
45 result = link->SetArguments(arguments.c_str());
54 link->SetIconLocation(item->icon_path().c_str(), item->icon_index());
62 result = link.QueryInterface(property_store.Receive());
74 return SUCCEEDED(collection->AddObject(link));
221 scoped_refptr<ShellLinkItem> link(*item);
222 AddShellLink(collection, application_path.value(), link);

Completed in 8455 milliseconds

123456789