/external/clang/test/CodeGen/ |
H A D | 2002-03-12-StructInitialize.c | 10 Connection link[3] variable
|
H A D | 2002-03-12-StructInitializer.c | 14 Connection link[3] variable
|
/external/e2fsprogs/e2fsck/ |
H A D | prof_err.c | 58 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 D | continuation.c | 28 static struct et_list link = { 0, 0 }; variable in typeref:struct:et_list 47 if (!link.table) 48 et = &link;
|
H A D | heimdal.c | 109 static struct et_list link = { 0, 0 }; variable in typeref:struct:et_list 128 if (!link.table) 129 et = &link;
|
H A D | heimdal2.c | 95 static struct et_list link = { 0, 0 }; variable in typeref:struct:et_list 114 if (!link.table) 115 et = &link;
|
H A D | heimdal3.c | 29 static struct et_list link = { 0, 0 }; variable in typeref:struct:et_list 48 if (!link.table) 49 et = &link;
|
H A D | imap_err.c | 57 static struct et_list link = { 0, 0 }; variable in typeref:struct:et_list 76 if (!link.table) 77 et = &link;
|
H A D | simple.c | 49 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 D | ext2_err.c | 183 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 D | link_veth.c | 22 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/libdrm/libkms/ |
H A D | linux.c | 53 char link[PATH_SIZE+1] = ""; local 64 * So lets get the symlink for the drm device. Then read the link 83 if (readlink(path, link, PATH_SIZE) < 0) 86 /* link looks something like this: ../../../bus/pci/drivers/intel */ 87 slash_name = strrchr(link, '/');
|
/external/libnl/src/lib/ |
H A D | link.c | 2 * 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 D | nl-link-list.c | 2 * 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 D | nl-link-stats.c | 2 * 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 D | MethodLinker.java | 93 link(member, otherMember); 103 private static void link(Member member1, Member member2) method in class:MethodLinker 109 // Check if both link chains aren't already ending in the same element.
|
/external/bison/lib/ |
H A D | 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) 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/iproute2/include/linux/ |
H A D | ip6_tunnel.h | 24 int link; /* ifindex of underlying L2 interface */ member in struct:ip6_tnl_parm
|
/external/libcxx/test/libcxx/android/ |
H A D | compiler.py | 46 def link(self, source_files, out=None, flags=None, env=None, cwd=None): member in class:AndroidCXXCompiler 48 return super(AndroidCXXCompiler, self).link(source_files, out, flags,
|
/external/libcxx/test/libcxx/ |
H A D | compiler.py | 88 def link(self, source_files, out=None, flags=[], env=None, cwd=None): member in class:CXXCompiler 114 return self.link(object_file, out=out, flags=flags, env=env,
|
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/_setup/py2/ |
H A D | ext.py | 221 def link(self, **kwargs): member in class:ConfTest 225 Before you can link the conftest objects they need to be `compile`\d. 245 be `link`\ed.
|
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/_setup/py3/ |
H A D | ext.py | 220 def link(self, **kwargs): member in class:ConfTest 224 Before you can link the conftest objects they need to be `compile`\d. 244 be `link`\ed.
|
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/_setup/py2/ |
H A D | ext.py | 221 def link(self, **kwargs): member in class:ConfTest 225 Before you can link the conftest objects they need to be `compile`\d. 245 be `link`\ed.
|
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/_setup/py3/ |
H A D | ext.py | 220 def link(self, **kwargs): member in class:ConfTest 224 Before you can link the conftest objects they need to be `compile`\d. 244 be `link`\ed.
|
/external/kernel-headers/original/uapi/linux/ |
H A D | ip6_tunnel.h | 24 int link; /* ifindex of underlying L2 interface */ member in struct:ip6_tnl_parm 36 int link; /* ifindex of underlying L2 interface */ member in struct:ip6_tnl_parm2
|