/external/iproute2/tc/ |
m_vlan.c | 188 struct rtattr *tb[TCA_VLAN_MAX + 1]; local 195 parse_rtattr_nested(tb, TCA_VLAN_MAX, arg); 197 if (!tb[TCA_VLAN_PARMS]) { 201 parm = RTA_DATA(tb[TCA_VLAN_PARMS]); 212 if (tb[TCA_VLAN_PUSH_VLAN_ID]) { 213 val = rta_getattr_u16(tb[TCA_VLAN_PUSH_VLAN_ID]); 216 if (tb[TCA_VLAN_PUSH_VLAN_PROTOCOL]) { 218 ll_proto_n2a(rta_getattr_u16(tb[TCA_VLAN_PUSH_VLAN_PROTOCOL]), 221 if (tb[TCA_VLAN_PUSH_VLAN_PRIORITY]) { 222 val = rta_getattr_u8(tb[TCA_VLAN_PUSH_VLAN_PRIORITY]) [all...] |
tc_class.c | 221 struct rtattr *tb[TCA_MAX + 1]; local 249 parse_rtattr(tb, TCA_MAX, (struct rtattr *)cls->data, 252 if (tb[TCA_KIND] == NULL) { 255 const char *kind = rta_getattr_str(tb[TCA_KIND]); 264 q->print_copt(q, fp, tb[TCA_OPTIONS]); 273 if (tb[TCA_STATS] || tb[TCA_STATS2]) { 275 print_tcstats_attr(fp, tb, buf, &stats); 306 struct rtattr *tb[TCA_MAX + 1]; local 331 parse_rtattr(tb, TCA_MAX, TCA_RTA(t), len) [all...] |
m_action.c | 292 struct rtattr *tb[TCA_ACT_MAX + 1]; local 299 parse_rtattr_nested(tb, TCA_ACT_MAX, arg); 301 if (tb[TCA_ACT_KIND] == NULL) { 307 a = get_action_kind(RTA_DATA(tb[TCA_ACT_KIND])); 311 err = a->print_aopt(a, f, tb[TCA_ACT_OPTIONS]); 316 if (show_stats && tb[TCA_ACT_STATS]) { 319 print_tcstats2_attr(f, tb[TCA_ACT_STATS], "\t", NULL); 320 if (tb[TCA_ACT_COOKIE]) { 321 int strsz = RTA_PAYLOAD(tb[TCA_ACT_COOKIE]); 325 hexstring_n2a(RTA_DATA(tb[TCA_ACT_COOKIE]) 338 struct rtattr *tb[TCA_MAX + 1]; local 372 struct rtattr *tb[tot_acts + 1]; local 400 struct rtattr *tb[TCA_ROOT_MAX+1]; local [all...] |
m_xt.c | 320 struct rtattr *tb[TCA_IPT_MAX + 1]; local 332 parse_rtattr_nested(tb, TCA_IPT_MAX, arg); 334 if (tb[TCA_IPT_TABLE] == NULL) { 338 rta_getattr_str(tb[TCA_IPT_TABLE])); 341 if (tb[TCA_IPT_HOOK] == NULL) { 347 hook = rta_getattr_u32(tb[TCA_IPT_HOOK]); 351 if (tb[TCA_IPT_TARG] == NULL) { 356 t = RTA_DATA(tb[TCA_IPT_TARG]); 376 if (tb[TCA_IPT_INDEX] == NULL) { 381 index = rta_getattr_u32(tb[TCA_IPT_INDEX]) [all...] |
m_xt_old.c | 358 struct rtattr *tb[TCA_IPT_MAX + 1]; local 366 parse_rtattr_nested(tb, TCA_IPT_MAX, arg); 368 if (tb[TCA_IPT_TABLE] == NULL) { 372 rta_getattr_str(tb[TCA_IPT_TABLE])); 375 if (tb[TCA_IPT_HOOK] == NULL) { 381 hook = rta_getattr_u32(tb[TCA_IPT_HOOK]); 385 if (tb[TCA_IPT_TARG] == NULL) { 391 t = RTA_DATA(tb[TCA_IPT_TARG]); 409 if (tb[TCA_IPT_INDEX] == NULL) { 414 index = rta_getattr_u32(tb[TCA_IPT_INDEX]) [all...] |
/external/python/cpython2/Lib/lib2to3/fixes/ |
fix_throw.py | 20 trailer< '(' args=arglist< exc=any ',' val=any [',' tb=any] > ')' > 48 if "tb" in results: 49 tb = results["tb"].clone() 50 tb.prefix = u"" 53 with_tb = Attr(e, Name(u'with_traceback')) + [ArgList([tb])]
|
/external/python/cpython3/Lib/lib2to3/fixes/ |
fix_throw.py | 20 trailer< '(' args=arglist< exc=any ',' val=any [',' tb=any] > ')' > 48 if "tb" in results: 49 tb = results["tb"].clone() 50 tb.prefix = "" 53 with_tb = Attr(e, Name('with_traceback')) + [ArgList([tb])]
|
/external/tensorflow/tensorflow/python/debug/lib/ |
source_remote_test.py | 94 tb = self._server.query_op_traceback("a") 95 self.assertIn((self._curr_file_path, a_lineno, this_func_name), tb) 96 tb = self._server.query_op_traceback("b") 97 self.assertIn((self._curr_file_path, b_lineno, this_func_name), tb) 98 tb = self._server.query_op_traceback("x") 99 self.assertIn((self._curr_file_path, x_lineno, this_func_name), tb) 136 tb = server.query_op_traceback("two/a") 137 self.assertIn((self._curr_file_path, a_lineno, this_func_name), tb) 138 tb = server.query_op_traceback("two/b") 139 self.assertIn((self._curr_file_path, b_lineno, this_func_name), tb) [all...] |
/frameworks/rs/tests/cpp_api/cpp-globalguard/ |
compute.cpp | 52 Type::Builder tb(rs, e); 53 tb.setX(numElems); 54 t = tb.create();
|
/frameworks/rs/tests/cpp_api/cppallocation/ |
compute.cpp | 29 Type::Builder tb(rs, e); 30 tb.setX(numElems); 31 sp<const Type> t = tb.create();
|
/prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/ |
fix_throw.py | 20 trailer< '(' args=arglist< exc=any ',' val=any [',' tb=any] > ')' > 48 if "tb" in results: 49 tb = results["tb"].clone() 50 tb.prefix = u"" 53 with_tb = Attr(e, Name(u'with_traceback')) + [ArgList([tb])]
|
/prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/ |
fix_throw.py | 20 trailer< '(' args=arglist< exc=any ',' val=any [',' tb=any] > ')' > 48 if "tb" in results: 49 tb = results["tb"].clone() 50 tb.prefix = u"" 53 with_tb = Attr(e, Name(u'with_traceback')) + [ArgList([tb])]
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_throw.py | 20 trailer< '(' args=arglist< exc=any ',' val=any [',' tb=any] > ')' > 48 if "tb" in results: 49 tb = results["tb"].clone() 50 tb.prefix = u"" 53 with_tb = Attr(e, Name(u'with_traceback')) + [ArgList([tb])]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_throw.py | 20 trailer< '(' args=arglist< exc=any ',' val=any [',' tb=any] > ')' > 48 if "tb" in results: 49 tb = results["tb"].clone() 50 tb.prefix = u"" 53 with_tb = Attr(e, Name(u'with_traceback')) + [ArgList([tb])]
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
YuvTest.java | 147 Type.Builder tb = new Type.Builder(mRS, Element.YUV(mRS)); local 148 tb.setX(width); 149 tb.setY(height); 150 tb.setYuvFormat(android.graphics.ImageFormat.NV21); 151 Allocation ta = Allocation.createTyped(mRS, tb.create(), Allocation.USAGE_SCRIPT); 198 Type.Builder tb = new Type.Builder(mRS, Element.YUV(mRS)); local 199 tb.setX(width); 200 tb.setY(height); 201 tb.setYuvFormat(android.graphics.ImageFormat.YV12); 202 Allocation ta = Allocation.createTyped(mRS, tb.create(), Allocation.USAGE_SCRIPT) 250 Type.Builder tb = new Type.Builder(mRS, Element.YUV(mRS)); local 297 Type.Builder tb = new Type.Builder(mRS, Element.YUV(mRS)); local [all...] |
/external/iproute2/bridge/ |
link.c | 105 struct rtattr *tb[IFLA_MAX+1]; local 120 parse_rtattr_flags(tb, IFLA_MAX, IFLA_RTA(ifi), len, NLA_F_NESTED); 122 if (tb[IFLA_IFNAME] == NULL) { 131 tb[IFLA_IFNAME] ? rta_getattr_str(tb[IFLA_IFNAME]) : "<nil>"); 133 if (tb[IFLA_OPERSTATE]) 134 print_operstate(fp, rta_getattr_u8(tb[IFLA_OPERSTATE])); 136 if (tb[IFLA_LINK]) { 138 int iflink = rta_getattr_u32(tb[IFLA_LINK]); 150 if (tb[IFLA_MTU] [all...] |
/external/libnl/lib/route/link/ |
ip6tnl.c | 87 struct nlattr *tb[IFLA_IPTUN_MAX + 1]; local 93 err = nla_parse_nested(tb, IFLA_IPTUN_MAX, data, ip6_tnl_policy); 103 if (tb[IFLA_IPTUN_LINK]) { 104 ip6_tnl->link = nla_get_u32(tb[IFLA_IPTUN_LINK]); 108 if (tb[IFLA_IPTUN_LOCAL]) { 109 nla_memcpy(&ip6_tnl->local, tb[IFLA_IPTUN_LOCAL], sizeof(struct in6_addr)); 113 if (tb[IFLA_IPTUN_REMOTE]) { 114 nla_memcpy(&ip6_tnl->remote, tb[IFLA_IPTUN_REMOTE], sizeof(struct in6_addr)); 118 if (tb[IFLA_IPTUN_TTL]) { 119 ip6_tnl->ttl = nla_get_u8(tb[IFLA_IPTUN_TTL]) [all...] |
/external/python/cpython3/Lib/asyncio/ |
base_tasks.py | 40 tb = task._exception.__traceback__ 41 while tb is not None: 46 frames.append(tb.tb_frame) 47 tb = tb.tb_next
|
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/ |
Blur25.java | 76 Type.Builder tb = new Type.Builder(mRS, Element.F32_4(mRS)); local 77 tb.setX(width); 78 tb.setY(height); 79 mScratchPixelsAllocation1 = Allocation.createTyped(mRS, tb.create()); 80 mScratchPixelsAllocation2 = Allocation.createTyped(mRS, tb.create());
|
Blur25G.java | 67 Type.Builder tb = new Type.Builder(mRS, Element.U8(mRS)); local 68 tb.setX(width); 69 tb.setY(height); 70 mScratchPixelsAllocation1 = Allocation.createTyped(mRS, tb.create()); 71 mScratchPixelsAllocation2 = Allocation.createTyped(mRS, tb.create());
|
/external/libnfnetlink/include/libnfnetlink/ |
libnfnetlink.h | 123 struct nfattr *tb[]); 167 #define nfnl_attr_present(tb, attr) \ 168 (tb[attr-1]) 170 #define nfnl_get_data(tb, attr, type) \ 172 if (tb[attr-1]) \ 173 __ret = *(type *)NFA_DATA(tb[attr-1]); \ 177 #define nfnl_get_pointer_to_data(tb, attr, type) \ 179 if (tb[attr-1]) \ 180 __ret = NFA_DATA(tb[attr-1]); \ 197 #define nfnl_parse_nested(tb, max, nfa) [all...] |
/external/libnl/lib/netfilter/ |
queue_msg.c | 67 struct nlattr *tb[NFQA_MAX+1]; local 77 err = nlmsg_parse(nlh, sizeof(struct nfgenmsg), tb, NFQA_MAX, 85 attr = tb[NFQA_PACKET_HDR]; 95 attr = tb[NFQA_MARK]; 99 attr = tb[NFQA_TIMESTAMP]; 109 attr = tb[NFQA_IFINDEX_INDEV]; 113 attr = tb[NFQA_IFINDEX_OUTDEV]; 117 attr = tb[NFQA_IFINDEX_PHYSINDEV]; 121 attr = tb[NFQA_IFINDEX_PHYSOUTDEV]; 125 attr = tb[NFQA_HWADDR] [all...] |
/external/tensorflow/tensorflow/python/profiler/ |
tfprof_logger.py | 116 for tb in op.traceback_with_start_lines: 118 trace.file_id = _str_id(tb[0], string_to_id) if tb[0] else 0 119 trace.lineno = tb[1] if tb[1] else -1 120 trace.function_id = _str_id(tb[2], string_to_id) if tb[2] else 0 121 trace.line_id = _str_id(tb[3], string_to_id) if tb[3] else 0 122 trace.func_start_line = tb[4] if tb[4] else - [all...] |
/external/iw/ |
mpath.c | 29 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local 43 nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0), 52 if (!tb[NL80211_ATTR_MPATH_INFO]) { 57 tb[NL80211_ATTR_MPATH_INFO], 63 mac_addr_n2a(dst, nla_data(tb[NL80211_ATTR_MAC])); 64 mac_addr_n2a(next_hop, nla_data(tb[NL80211_ATTR_MPATH_NEXT_HOP])); 65 if_indextoname(nla_get_u32(tb[NL80211_ATTR_IFINDEX]), dev);
|
/toolchain/binutils/binutils-2.27/bfd/ |
configure | [all...] |