HomeSort by relevance Sort by last modified time
    Searched refs:link (Results 101 - 125 of 1956) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/owasp/sanitizer/tools/findbugs/bin/
setBugDatabaseInfo 7 link=`ls -ld "$program"`
8 link=`expr "$link" : '.*-> \(.*\)'`
9 if [ "`expr "$link" : '/.*'`" = 0 ]; then
12 program="$dir/$link"
15 program="$link"
unionBugs 12 link=`ls -ld "$program"`
13 link=`expr "$link" : '.*-> \(.*\)'`
14 if [ "`expr "$link" : '/.*'`" = 0 ]; then
17 program="$dir/$link"
20 program="$link"
xpathFind 7 link=`ls -ld "$program"`
8 link=`expr "$link" : '.*-> \(.*\)'`
9 if [ "`expr "$link" : '/.*'`" = 0 ]; then
12 program="$dir/$link"
15 program="$link"
  /external/jemalloc/test/unit/
ql.c 10 ql_elm(list_t) link;
21 assert_ptr_null(ql_last(head, link),
25 ql_foreach(t, head, link) {
31 ql_reverse_foreach(t, head, link) {
53 ql_elm_new(&entries[i], link);
64 assert_c_eq(ql_last(head, link)->id, entries[nentries-1].id,
68 ql_foreach(t, head, link) {
74 ql_reverse_foreach(t, head, link) {
81 t = ql_next(head, &entries[i], link);
84 assert_ptr_null(ql_next(head, &entries[nentries-1], link),
    [all...]
  /external/jemalloc_new/test/unit/
ql.c 12 ql_elm(list_t) link;
22 assert_ptr_null(ql_last(head, link),
26 ql_foreach(t, head, link) {
32 ql_reverse_foreach(t, head, link) {
52 ql_elm_new(&entries[i], link);
62 assert_c_eq(ql_last(head, link)->id, entries[nentries-1].id,
66 ql_foreach(t, head, link) {
72 ql_reverse_foreach(t, head, link) {
79 t = ql_next(head, &entries[i], link);
82 assert_ptr_null(ql_next(head, &entries[nentries-1], link),
    [all...]
  /bionic/libc/arch-arm/bionic/
exidx_dynamic.c 29 #include <link.h>
  /build/kati/testcase/
ninja_regen_find_link.sh 35 V := \$(shell find -L linkdir/d/link)
42 ln -s ../../dir1 linkdir/d/link
49 rm linkdir/d/link
50 ln -s ../../dir2 linkdir/d/link
  /external/doclava/res/assets/templates/
jd_lists.cs 5 { label:"<?cs var:page.label ?>", link:"<?cs var:page.link ?>",
lists.cs 3 ?> { id:<?cs var: page.id ?>, label:"<?cs var:page.label ?>", link:"<?cs var:page.link ?>", type:"<?cs var:page.type ?>", deprecated:"<?cs var:page.deprecated ?>" }<?cs if:!last(page) ?>,<?cs /if ?>
  /external/iproute2/ip/
xdp.h 8 void xdp_dump(FILE *fp, struct rtattr *tb, bool link, bool details);
  /external/iproute2/testsuite/iproute2/
Makefile 9 link:
14 configure: link
19 clean: link
29 show: link
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/index/
IIndexUpdate.java 25 * @param link
26 * link to the class
30 public void addClass(ILinkable link, long classid);
  /external/libnl/python/tests/
test-create-bridge.py 3 import netlink.route.link as link
7 cache = link.LinkCache()
13 lbr = link.Link()
  /external/v8/tools/torque/vim-torque/syntax/
torque.vim 54 hi def link torqueAssert Statement
55 hi def link torqueAtom Constant
56 hi def link torqueBoolean Boolean
57 hi def link torqueBranch Conditional
58 hi def link torqueComment Comment
59 hi def link torqueConditional Conditional
60 hi def link torqueConstant Constant
61 hi def link torqueFunction Function
62 hi def link torqueKeyword Keyword
63 hi def link torqueLabel Labe
    [all...]
  /external/linux-kselftest/tools/testing/selftests/bpf/
test_lwt_seg6local.sh 64 ip link add veth1 type veth peer name veth2
65 ip link add veth3 type veth peer name veth4
66 ip link add veth5 type veth peer name veth6
67 ip link add veth7 type veth peer name veth8
68 ip link add veth9 type veth peer name veth10
70 ip link set veth1 netns ns1
71 ip link set veth2 netns ns2
72 ip link set veth3 netns ns2
73 ip link set veth4 netns ns3
74 ip link set veth5 netns ns
    [all...]
test_xdp_meta.sh 12 ip link del veth1 2> /dev/null
17 ip link set dev lo xdp off 2>/dev/null > /dev/null
29 ip link add veth1 type veth peer name veth2
31 ip link set veth1 netns ns1
32 ip link set veth2 netns ns2
43 ip netns exec ns1 ip link set dev veth1 xdp obj test_xdp_meta.o sec x
44 ip netns exec ns2 ip link set dev veth2 xdp obj test_xdp_meta.o sec x
46 ip netns exec ns1 ip link set dev veth1 up
47 ip netns exec ns2 ip link set dev veth2 up
  /external/autotest/frontend/client/src/autotest/common/ui/
ToggleLink.java 14 private Anchor link; field in class:ToggleLink
20 link = new Anchor(activateText);
21 link.addClickHandler(this);
22 initWidget(link);
26 return link.getText().equals(deactivateText);
30 link.setText(active ? deactivateText : activateText);
  /external/tensorflow/tensorflow/tools/ci_build/
code_link_check.sh 33 echo Broken link $target at line $linenumber of file $filename
38 echo Code link check fails.
42 echo Code link check success.
  /external/mesa3d/src/intel/compiler/
brw_cfg.cpp 39 bblock_link *link = (bblock_link *)list->get_tail(); local
40 bblock_t *block = link->block;
41 link->link.remove();
47 link(void *mem_ctx, bblock_t *block) function
50 return &l->link;
64 successor->parents.push_tail(::link(mem_ctx, this));
65 children.push_tail(::link(mem_ctx, successor));
71 foreach_list_typed_safe (bblock_link, parent, link, &block->parents) {
83 foreach_list_typed_safe (bblock_link, child, link, &block->children)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
linktree.py 7 # All symbolic links go to a special symbolic link at the top, so you
15 LINK = '.LINK' # Name of special symlink at the top.
25 link = sys.argv[3]
28 link = LINK
38 linkname = os.path.join(newtree, link)
47 linknames(oldtree, newtree, link)
50 def linknames(old, new, link):
51 if debug: print 'linknames', (old, new, link)
    [all...]
  /external/linux-kselftest/tools/testing/selftests/net/
netdevice.sh 21 ip link show "$netdev" |grep -q UP
27 ip link set "$netdev" up
51 ip link set dev $netdev address "$MACADDR"
55 ip link show $netdev |grep -q "$MACADDR"
146 ip link set "$netdev" down
186 ip link show 2>/dev/null >/dev/null
198 ip link show |grep '^[0-9]' | grep -oE '[[:space:]].*eth[0-9]*:|[[:space:]].*enp[0-9]s[0-9]:' | cut -d\ -f2 | cut -d: -f1> "$TMP_LIST_NETDEV"
  /external/python/cpython2/Tools/scripts/
linktree.py 7 # All symbolic links go to a special symbolic link at the top, so you
15 LINK = '.LINK' # Name of special symlink at the top.
25 link = sys.argv[3]
28 link = LINK
38 linkname = os.path.join(newtree, link)
47 linknames(oldtree, newtree, link)
50 def linknames(old, new, link):
51 if debug: print 'linknames', (old, new, link)
    [all...]
  /external/python/cpython3/Tools/scripts/
linktree.py 7 # All symbolic links go to a special symbolic link at the top, so you
15 LINK = '.LINK' # Name of special symlink at the top.
25 link = sys.argv[3]
28 link = LINK
38 linkname = os.path.join(newtree, link)
47 linknames(oldtree, newtree, link)
50 def linknames(old, new, link):
51 if debug: print('linknames', (old, new, link))
    [all...]
  /external/perfetto/infra/perfetto-ci.appspot.com/static/
script.js 50 let link = document.createElement('a');
51 link.href = 'https://travis-ci.org/' + REPO + '/jobs/' + jobId;
52 link.title = resp.state + ' [' + jobName + ']';
56 link.classList.add(jobState);
58 link.innerHTML = '<i class="material-icons">check_circle</i>';
60 link.innerHTML = '<i class="material-icons">autorenew</i>';
62 link.innerHTML = '<i class="material-icons">bug_report</i>';
64 link.innerHTML = '<i class="material-icons">hourglass_full</i>';
67 td.appendChild(link);
89 let link = document.createElement('a')
    [all...]
  /external/linux-kselftest/tools/testing/selftests/net/forwarding/
router_bridge.sh 41 ip link add name br1 type bridge vlan_filtering 1
42 ip link set dev br1 up
44 ip link set dev $swp1 master br1
45 ip link set dev $swp1 up
48 ip link set dev $swp2 up
55 ip link set dev $swp2 down
58 ip link set dev $swp1 down
59 ip link set dev $swp1 nomaster
61 ip link del dev br1

Completed in 999 milliseconds

1 2 3 45 6 7 8 91011>>