/external/iproute2/genl/ |
D | ctrl.c | 235 struct rtattr *tb2[GENL_MAX_FAM_OPS]; in print_ctrl() local 237 parse_rtattr_nested(tb2, GENL_MAX_FAM_OPS, tb[CTRL_ATTR_OPS]); in print_ctrl() 240 if (tb2[i]) { in print_ctrl() 242 if (0 > print_ctrl_cmds(fp, tb2[i], ctrl_v)) { in print_ctrl() 255 struct rtattr *tb2[GENL_MAX_FAM_GRPS + 1]; in print_ctrl() local 258 parse_rtattr_nested(tb2, GENL_MAX_FAM_GRPS, in print_ctrl() 263 if (tb2[i]) { in print_ctrl() 265 if (0 > print_ctrl_grp(fp, tb2[i], ctrl_v)) in print_ctrl()
|
/external/libnl/lib/route/ |
D | act.c | 389 struct nlattr *tb2[TCA_ACT_MAX + 1]; in rtnl_act_parse() local 411 err = nla_parse(tb2, TCA_ACT_MAX, nla_data(nla[i]), in rtnl_act_parse() 416 if (tb2[TCA_ACT_KIND] == NULL) { in rtnl_act_parse() 421 nla_strlcpy(kind, tb2[TCA_ACT_KIND], sizeof(kind)); in rtnl_act_parse() 424 if (tb2[TCA_ACT_OPTIONS]) { in rtnl_act_parse() 425 tc->tc_opts = nl_data_alloc_attr(tb2[TCA_ACT_OPTIONS]); in rtnl_act_parse()
|
/external/python/six/ |
D | test_six.py | 604 tp2, value2, tb2 = sys.exc_info() 607 assert tb is get_next(tb2) 611 tp2, value2, tb2 = sys.exc_info() 614 assert tb2 is not tb 616 six.reraise(tp, val, tb2) 621 assert get_next(tb3) is tb2 625 tp2, value2, tb2 = sys.exc_info() 629 assert tb is get_next(tb2)
|
/external/u-boot/fs/yaffs2/ |
D | yaffs_mtdif.c | 32 oob[2] = spare->tb2; in translate_spare2oob() 47 spare->tb2 = oob[2]; in translate_oob2spare()
|
D | yaffs_tagscompat.c | 90 spare_ptr->tb2 = tu->as_bytes[2]; in yaffs_load_tags_to_spare() 107 tu->as_bytes[2] = spare_ptr->tb2; in yaffs_get_tags_from_spare()
|
D | yaffs_guts.h | 213 u8 tb2; member
|
/external/python/cpython3/Python/ |
D | errors.c | 399 PyObject *exc2, *val2, *tb2; in _PyErr_ChainExceptions() local 400 PyErr_Fetch(&exc2, &val2, &tb2); in _PyErr_ChainExceptions() 407 PyErr_NormalizeException(&exc2, &val2, &tb2); in _PyErr_ChainExceptions() 409 PyErr_Restore(exc2, val2, tb2); in _PyErr_ChainExceptions()
|
D | pythonrun.c | 681 PyObject *exception2, *v2, *tb2; in PyErr_PrintEx() local 685 PyErr_Fetch(&exception2, &v2, &tb2); in PyErr_PrintEx() 686 PyErr_NormalizeException(&exception2, &v2, &tb2); in PyErr_PrintEx() 700 PyErr_Display(exception2, v2, tb2); in PyErr_PrintEx() 705 Py_XDECREF(tb2); in PyErr_PrintEx()
|
D | ceval.c | 2974 PyObject *tp2, *exc2, *tb2; in _PyEval_EvalFrameDefault() local 2980 tb2 = PEEK(6); in _PyEval_EvalFrameDefault() 2982 SET_VALUE(7, tb2); in _PyEval_EvalFrameDefault()
|
/external/python/cpython2/Python/ |
D | pythonrun.c | 1190 PyObject *exception2, *v2, *tb2; in PyErr_PrintEx() local 1194 PyErr_Fetch(&exception2, &v2, &tb2); in PyErr_PrintEx() 1195 PyErr_NormalizeException(&exception2, &v2, &tb2); in PyErr_PrintEx() 1211 PyErr_Display(exception2, v2, tb2); in PyErr_PrintEx() 1216 Py_XDECREF(tb2); in PyErr_PrintEx()
|
/external/python/cpython3/Lib/test/ |
D | test_tracemalloc.py | 479 tb2 = traceback(('a.py', 5), ('b.py', 4)) 487 tracemalloc.Statistic(tb2, 2, 1), 494 tracemalloc.Statistic(tb2, 5002, 2), 502 tracemalloc.StatisticDiff(tb2, 5002, 5000, 2, 1),
|
D | test_exceptions.py | 1055 tb2 = raiseMemError() 1056 self.assertEqual(tb1, tb2)
|
/external/toybox/toys/posix/ |
D | ps.c | 721 struct procpid *tb2 = (struct procpid *)TT.threadparent->extra; in get_ps() local 723 *slot = *tb2->slot; in get_ps() 726 if (*slot == slot[SLOT_tid]) slot = tb2->slot; in get_ps()
|
/external/wpa_supplicant_8/src/drivers/ |
D | driver_nl80211.c | 479 struct nlattr *tb2[CTRL_ATTR_MCAST_GRP_MAX + 1]; in family_handler() local 480 nla_parse(tb2, CTRL_ATTR_MCAST_GRP_MAX, nla_data(mcgrp), in family_handler() 482 if (!tb2[CTRL_ATTR_MCAST_GRP_NAME] || in family_handler() 483 !tb2[CTRL_ATTR_MCAST_GRP_ID] || in family_handler() 484 os_strncmp(nla_data(tb2[CTRL_ATTR_MCAST_GRP_NAME]), in family_handler() 486 nla_len(tb2[CTRL_ATTR_MCAST_GRP_NAME])) != 0) in family_handler() 488 res->id = nla_get_u32(tb2[CTRL_ATTR_MCAST_GRP_ID]); in family_handler()
|