HomeSort by relevance Sort by last modified time
    Searched refs:nest (Results 1 - 25 of 43) sorted by null

1 2

  /external/clang/test/PCH/
struct.h 28 struct Nested { int x, y; } nest; member in struct:S
  /external/iproute2/tipc/
peer.c 32 struct nlattr *nest; local
51 nest = mnl_attr_nest_start(nlh, TIPC_NLA_NET);
53 mnl_attr_nest_end(nlh, nest);
socket.c 50 struct nlattr *nest; local
57 nest = mnl_attr_nest_start(nlh, TIPC_NLA_SOCK);
59 mnl_attr_nest_end(nlh, nest);
node.c 79 struct nlattr *nest; local
98 nest = mnl_attr_nest_start(nlh, TIPC_NLA_NET);
100 mnl_attr_nest_end(nlh, nest);
175 struct nlattr *nest; local
194 nest = mnl_attr_nest_start(nlh, TIPC_NLA_NET);
196 mnl_attr_nest_end(nlh, nest);
bearer.c 131 struct nlattr *nest; local
202 nest = mnl_attr_nest_start(nlh, TIPC_NLA_BEARER_UDP_OPTS);
205 mnl_attr_nest_end(nlh, nest);
229 struct nlattr *nest; local
264 nest = mnl_attr_nest_start(nlh, TIPC_NLA_BEARER);
296 mnl_attr_nest_end(nlh, nest);
358 struct nlattr *nest; local
387 nest = mnl_attr_nest_start(nlh, TIPC_NLA_BEARER);
407 mnl_attr_nest_end(nlh, nest);
media.c 93 struct nlattr *nest; local
126 nest = mnl_attr_nest_start(nlh, TIPC_NLA_MEDIA);
128 mnl_attr_nest_end(nlh, nest);
  /external/iproute2/tc/
q_prio.c 36 struct rtattr *nest; local
89 nest = addattr_nest_compat(n, 1024, TCA_OPTIONS, &opt, sizeof(opt));
92 addattr_nest_compat_end(n, nest);
q_rr.c 37 struct rtattr *nest; local
84 nest = addattr_nest_compat(n, 1024, TCA_OPTIONS, &opt, sizeof(opt));
87 addattr_nest_compat_end(n, nest);
  /toolchain/binutils/binutils-2.25/bfd/
stabs.c 300 int nest;
308 nest = 0;
323 if (nest == 0)
325 --nest;
328 ++nest;
329 else if (nest == 0)
416 nest = 0;
427 if (nest == 0)
433 --nest;
436 ++nest;
298 int nest; local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FinishAffinity.java 43 Button button = (Button)findViewById(R.id.nest);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/mws/
test_response.py 18 Nest = Element()
27 <Nest>
30 </Nest>
37 nest = dict(filter(useful, Item.Nest.__dict__.items()))
38 self.assertEqual(nest, dict(Zip='Zap', Zam='Zoo'))
39 useful = lambda x: not x[0].startswith('_') and not x[0] == 'Nest'
76 Item = MemberList(Nest=MemberList(),
83 <Nest>
87 </Nest>
    [all...]
  /external/v8/test/mjsunit/compiler/
osr-block-scope.js 9 function nest(body, name, depth) {
29 var body = nest(orig, name, depth);
  /toolchain/binutils/binutils-2.25/binutils/
srconv.c 587 struct coff_scope *scope, int type, int nest)
605 nest,
616 dps.nesting = nest;
640 struct coff_type *type, int nest)
713 walk_tree_type_1 (sfile, symbol, type->u.pointer.points_to, nest + 1);
729 walk_tree_type_1 (sfile, symbol, type->u.function.function_returns, nest + 1);
736 walk_tree_symbol (sfile, 0, param, nest);
764 walk_tree_symbol (sfile, 0, member, nest + 1);
820 walk_tree_type_1 (sfile, symbol, type->u.array.array_of, nest + 1);
847 walk_tree_symbol (sfile, 0, member, nest + 1)
    [all...]
  /external/clang/test/Sema/
block-return.c 84 int (^nested)(char *s) = ^(char *str) { void (^nest)(void) = ^(void) { printf("%s\n", str); }; next(); return 1; }; // expected-warning{{implicitly declaring library function 'printf' with type 'int (const char *, ...)'}} \
  /external/iproute2/include/
libnetlink.h 92 int addattr_nest_end(struct nlmsghdr *n, struct rtattr *nest);
95 int addattr_nest_compat_end(struct nlmsghdr *n, struct rtattr *nest);
112 int rta_nest_end(struct rtattr *rta, struct rtattr *nest);
  /external/iproute2/lib/
libnetlink.c 683 struct rtattr *nest = NLMSG_TAIL(n); local
686 return nest;
689 int addattr_nest_end(struct nlmsghdr *n, struct rtattr *nest)
691 nest->rta_len = (void *)NLMSG_TAIL(n) - (void *)nest;
707 struct rtattr *nest = (void *)start + NLMSG_ALIGN(start->rta_len); local
710 addattr_nest_end(n, nest);
766 struct rtattr *nest = RTA_TAIL(rta); local
770 return nest;
773 int rta_nest_end(struct rtattr *rta, struct rtattr *nest)
    [all...]
  /external/iproute2/bridge/
link.c 271 struct rtattr *nest; local
370 nest = addattr_nest(&req.n, sizeof(req),
399 addattr_nest_end(&req.n, nest);
407 nest = addattr_nest(&req.n, sizeof(req), IFLA_AF_SPEC);
415 addattr_nest_end(&req.n, nest);
  /external/autotest/client/bin/
cpuset.py 334 def _release_container_nest(nest):
336 nest_path = full_path(nest)
340 for child in inner_containers_of(nest):
343 logging.debug("releasing container %s", nest)
346 parent = os.path.dirname(nest)
347 move_tasks_into_container(parent, get_tasks(nest))
349 # remove the now-empty outermost container of this nest
510 root = the parent cpuset to nest this new set within
  /external/iproute2/ip/
iproute_lwtunnel.c 325 struct rtattr *nest; local
341 nest = rta_nest(rta, 1024, RTA_ENCAP);
359 rta_nest_end(rta, nest);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_scope.py 53 def nest(): function in function:ScopeTests.testNestingGlobalNoFree.make_adder4
54 def nest(): function in function:ScopeTests.testNestingGlobalNoFree.make_adder4.nest
58 return nest()
59 return nest()
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_scope.py 53 def nest(): function in function:ScopeTests.testNestingGlobalNoFree.make_adder4
54 def nest(): function in function:ScopeTests.testNestingGlobalNoFree.make_adder4.nest
58 return nest()
59 return nest()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_scope.py 53 def nest(): function in function:ScopeTests.testNestingGlobalNoFree.make_adder4
54 def nest(): function in function:ScopeTests.testNestingGlobalNoFree.make_adder4.nest
58 return nest()
59 return nest()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_scope.py 53 def nest(): function in function:ScopeTests.testNestingGlobalNoFree.make_adder4
54 def nest(): function in function:ScopeTests.testNestingGlobalNoFree.make_adder4.nest
58 return nest()
59 return nest()
  /external/mksh/src/
tree.c 583 int nest = 0; local
590 if (c == ADELIM && nest == 0)
610 nest++;
617 if (c == CSUBST && nest == 0)
619 nest--;
622 nest++;
627 if (c == wp[-1] && nest == 0)
630 nest--;
misc.c 710 int nest = 0, bnest = 0; local
742 nest++;
752 } else if (nest)
753 nest--;
760 return (saw_glob && !in_bracket && !nest);
948 int nest = 0; local
953 if ((*++p == /*(*/ ')' && nest-- == 0) ||
954 (*p == '|' && match_sep && nest == 0))
957 nest++;
    [all...]

Completed in 612 milliseconds

1 2