HomeSort by relevance Sort by last modified time
    Searched refs:tb (Results 76 - 100 of 1413) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/wpa_supplicant_8/src/drivers/
driver_nl80211_capa.c 103 struct nlattr *tb)
108 if (tb == NULL)
111 nla_for_each_nested(nl_mode, tb, i) {
206 struct nlattr *tb)
211 if (tb == NULL)
214 nla_for_each_nested(nl_combi, tb, rem_combi) {
222 struct nlattr *tb)
227 if (tb == NULL)
230 nla_for_each_nested(nl_cmd, tb, i) {
256 struct nlattr *tb)
484 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
747 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
806 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
    [all...]
  /external/iproute2/ip/
iplink_can.c 257 static void can_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[])
259 if (!tb)
262 if (tb[IFLA_CAN_CTRLMODE]) {
263 struct can_ctrlmode *cm = RTA_DATA(tb[IFLA_CAN_CTRLMODE]);
269 if (tb[IFLA_CAN_STATE]) {
270 int *state = RTA_DATA(tb[IFLA_CAN_STATE]);
276 if (tb[IFLA_CAN_BERR_COUNTER]) {
278 RTA_DATA(tb[IFLA_CAN_BERR_COUNTER]);
283 if (tb[IFLA_CAN_RESTART_MS]) {
284 __u32 *restart_ms = RTA_DATA(tb[IFLA_CAN_RESTART_MS])
    [all...]
  /external/iw/
mpp.c 18 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
22 nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
31 mac_addr_n2a(dst, nla_data(tb[NL80211_ATTR_MAC]));
32 mac_addr_n2a(next_hop, nla_data(tb[NL80211_ATTR_MPATH_NEXT_HOP]));
33 if_indextoname(nla_get_u32(tb[NL80211_ATTR_IFINDEX]), dev);
survey.c 18 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
28 nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
31 if_indextoname(nla_get_u32(tb[NL80211_ATTR_IFINDEX]), dev);
34 if (!tb[NL80211_ATTR_SURVEY_INFO]) {
40 tb[NL80211_ATTR_SURVEY_INFO],
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
ColorCube.java 47 Type.Builder tb = new Type.Builder(mRS, Element.U8_4(mRS)); local
48 tb.setX(sx);
49 tb.setY(sy);
50 tb.setZ(sz);
51 Type t = tb.create();
Grain.java 73 Type.Builder tb = new Type.Builder(mRS, Element.U8(mRS)); local
74 tb.setX(noiseW);
75 tb.setY(noiseH);
76 mNoise = Allocation.createTyped(mRS, tb.create());
77 mNoise2 = Allocation.createTyped(mRS, tb.create());
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
Blur25.java 72 Type.Builder tb = new Type.Builder(mRS, Element.F32_4(mRS)); local
73 tb.setX(width);
74 tb.setY(height);
75 mScratchPixelsAllocation1 = Allocation.createTyped(mRS, tb.create());
76 mScratchPixelsAllocation2 = Allocation.createTyped(mRS, tb.create());
Blur25G.java 61 Type.Builder tb = new Type.Builder(mRS, Element.U8(mRS)); local
62 tb.setX(width);
63 tb.setY(height);
64 mScratchPixelsAllocation1 = Allocation.createTyped(mRS, tb.create());
65 mScratchPixelsAllocation2 = Allocation.createTyped(mRS, tb.create());
ColorCube.java 39 Type.Builder tb = new Type.Builder(mRS, Element.U8_4(mRS)); local
40 tb.setX(sx);
41 tb.setY(sy);
42 tb.setZ(sz);
43 Type t = tb.create();
Grain.java 73 Type.Builder tb = new Type.Builder(mRS, Element.U8(mRS)); local
74 tb.setX(noiseW);
75 tb.setY(noiseH);
76 mNoise = Allocation.createTyped(mRS, tb.create());
77 mNoise2 = Allocation.createTyped(mRS, tb.create());
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
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());
ColorCube.java 47 Type.Builder tb = new Type.Builder(mRS, Element.U8_4(mRS)); local
48 tb.setX(sx);
49 tb.setY(sy);
50 tb.setZ(sz);
51 Type t = tb.create();
Grain.java 78 Type.Builder tb = new Type.Builder(mRS, Element.U8(mRS)); local
79 tb.setX(noiseW);
80 tb.setY(noiseH);
81 mNoise = Allocation.createTyped(mRS, tb.create());
82 mNoise2 = Allocation.createTyped(mRS, tb.create());
  /prebuilts/gdb/darwin-x86/lib/python2.7/unittest/
result.py 154 exctype, value, tb = err
156 while tb and self._is_relevant_tb_level(tb):
157 tb = tb.tb_next
161 length = self._count_relevant_tb_levels(tb)
162 msgLines = traceback.format_exception(exctype, value, tb, length)
164 msgLines = traceback.format_exception(exctype, value, tb)
180 def _is_relevant_tb_level(self, tb):
181 return '__unittest' in tb.tb_frame.f_global
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/unittest/
result.py 154 exctype, value, tb = err
156 while tb and self._is_relevant_tb_level(tb):
157 tb = tb.tb_next
161 length = self._count_relevant_tb_levels(tb)
162 msgLines = traceback.format_exception(exctype, value, tb, length)
164 msgLines = traceback.format_exception(exctype, value, tb)
180 def _is_relevant_tb_level(self, tb):
181 return '__unittest' in tb.tb_frame.f_global
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/
result.py 154 exctype, value, tb = err
156 while tb and self._is_relevant_tb_level(tb):
157 tb = tb.tb_next
161 length = self._count_relevant_tb_levels(tb)
162 msgLines = traceback.format_exception(exctype, value, tb, length)
164 msgLines = traceback.format_exception(exctype, value, tb)
180 def _is_relevant_tb_level(self, tb):
181 return '__unittest' in tb.tb_frame.f_global
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/
result.py 154 exctype, value, tb = err
156 while tb and self._is_relevant_tb_level(tb):
157 tb = tb.tb_next
161 length = self._count_relevant_tb_levels(tb)
162 msgLines = traceback.format_exception(exctype, value, tb, length)
164 msgLines = traceback.format_exception(exctype, value, tb)
180 def _is_relevant_tb_level(self, tb):
181 return '__unittest' in tb.tb_frame.f_global
    [all...]
  /external/iproute2/tc/
f_flower.c 455 struct rtattr *tb[TCA_FLOWER_MAX + 1]; local
462 parse_rtattr_nested(tb, TCA_FLOWER_MAX, opt);
467 if (tb[TCA_FLOWER_CLASSID]) {
470 sprint_tc_classid(rta_getattr_u32(tb[TCA_FLOWER_CLASSID]),
474 if (tb[TCA_FLOWER_INDEV]) {
475 struct rtattr *attr = tb[TCA_FLOWER_INDEV];
480 flower_print_eth_addr(f, "dst_mac", tb[TCA_FLOWER_KEY_ETH_DST],
481 tb[TCA_FLOWER_KEY_ETH_DST_MASK]);
482 flower_print_eth_addr(f, "src_mac", tb[TCA_FLOWER_KEY_ETH_SRC],
483 tb[TCA_FLOWER_KEY_ETH_SRC_MASK])
    [all...]
q_atm.c 193 struct rtattr *tb[TCA_ATM_MAX+1]; local
199 parse_rtattr_nested(tb, TCA_ATM_MAX, opt);
200 if (tb[TCA_ATM_ADDR]) {
201 if (RTA_PAYLOAD(tb[TCA_ATM_ADDR]) <
206 RTA_DATA(tb[TCA_ATM_ADDR]),A2T_PRETTY | A2T_NAME) <
211 if (tb[TCA_ATM_HDR]) {
213 const __u8 *hdr = RTA_DATA(tb[TCA_ATM_HDR]);
216 for (i = 0; i < RTA_PAYLOAD(tb[TCA_ATM_HDR]); i++)
221 if (tb[TCA_ATM_EXCESS]) {
224 if (RTA_PAYLOAD(tb[TCA_ATM_EXCESS]) < sizeof(excess)
    [all...]
m_connmark.c 133 struct rtattr *tb[TCA_CONNMARK_MAX + 1]; local
139 parse_rtattr_nested(tb, TCA_CONNMARK_MAX, arg);
140 if (tb[TCA_CONNMARK_PARMS] == NULL) {
145 ci = RTA_DATA(tb[TCA_CONNMARK_PARMS]);
152 if (tb[TCA_CONNMARK_TM]) {
153 struct tcf_t *tm = RTA_DATA(tb[TCA_CONNMARK_TM]);
q_htb.c 268 struct rtattr *tb[TCA_HTB_MAX + 1]; local
282 parse_rtattr_nested(tb, TCA_HTB_MAX, opt);
284 if (tb[TCA_HTB_PARMS]) {
285 hopt = RTA_DATA(tb[TCA_HTB_PARMS]);
286 if (RTA_PAYLOAD(tb[TCA_HTB_PARMS]) < sizeof(*hopt)) return -1;
295 if (tb[TCA_HTB_RATE64] &&
296 RTA_PAYLOAD(tb[TCA_HTB_RATE64]) >= sizeof(rate64)) {
297 rate64 = rta_getattr_u64(tb[TCA_HTB_RATE64]);
301 if (tb[TCA_HTB_CEIL64] &&
302 RTA_PAYLOAD(tb[TCA_HTB_CEIL64]) >= sizeof(ceil64)
    [all...]
  /frameworks/rs/java/tests/LivePreview/src/com/android/rs/livepreview/
RsYuv.java 78 Type.Builder tb = new Type.Builder(mRS, Element.RGBA_8888(mRS)); local
79 tb.setX(mWidth);
80 tb.setY(mHeight);
81 Type t = tb.create();
86 tb = new Type.Builder(mRS, Element.createPixel(mRS, Element.DataType.UNSIGNED_8, Element.DataKind.PIXEL_YUV));
87 tb.setX(mWidth);
88 tb.setY(mHeight);
89 tb.setYuvFormat(android.graphics.ImageFormat.NV21);
90 mAllocationIn = Allocation.createTyped(mRS, tb.create(), Allocation.USAGE_SCRIPT);
  /external/chromium-trace/catapult/telemetry/telemetry/internal/util/
exception_formatter.py 16 def PrintFormattedException(exception_class=None, exception=None, tb=None,
19 (exception_class, exception, tb))
20 assert bool(exception_class) == bool(exception) == bool(tb), (
21 'Must specify all or none of exception_class, exception, and tb')
24 exception_class, exception, tb = sys.exc_info()
34 processed_tb = traceback.extract_tb(tb)
35 frame = _GetFinalFrame(tb)
  /external/iproute2/bridge/
fdb.c 67 struct rtattr * tb[NDA_MAX+1]; local
88 parse_rtattr(tb, NDA_MAX, NDA_RTA(r),
94 if (tb[NDA_LLADDR]) {
97 ll_addr_n2a(RTA_DATA(tb[NDA_LLADDR]),
98 RTA_PAYLOAD(tb[NDA_LLADDR]),
106 if (tb[NDA_DST]) {
110 if (RTA_PAYLOAD(tb[NDA_DST]) == sizeof(struct in6_addr))
115 RTA_PAYLOAD(tb[NDA_DST]),
116 RTA_DATA(tb[NDA_DST]),
120 if (tb[NDA_VLAN])
    [all...]
  /external/libnl/lib/route/sch/
dsmark.c 63 struct nlattr *tb[TCA_DSMARK_MAX + 1]; local
66 err = tca_parse(tb, TCA_DSMARK_MAX, (struct rtnl_tca *) qdisc,
75 if (tb[TCA_DSMARK_INDICES]) {
76 dsmark->qdm_indices = nla_get_u16(tb[TCA_DSMARK_INDICES]);
80 if (tb[TCA_DSMARK_DEFAULT_INDEX]) {
82 nla_get_u16(tb[TCA_DSMARK_DEFAULT_INDEX]);
86 if (tb[TCA_DSMARK_SET_TC_INDEX]) {
111 struct nlattr *tb[TCA_DSMARK_MAX + 1]; local
114 err = tca_parse(tb, TCA_DSMARK_MAX, (struct rtnl_tca *) class,
123 if (tb[TCA_DSMARK_MASK])
    [all...]

Completed in 384 milliseconds

1 2 34 5 6 7 8 91011>>