/freebsd/sys/ofed/include/rdma/ |
H A D | uverbs_std_types.h | 48 #define uobj_get_type(_attrs, _object) \ argument 49 uapi_get_object((_attrs)->ufile->device->uapi, _object) 51 #define uobj_get_read(_type, _id, _attrs) \ argument 52 rdma_lookup_get_uobject(uobj_get_type(_attrs, _type), (_attrs)->ufile, \ 54 _attrs) 56 #define ufd_get_read(_type, _fdnum, _attrs) ({ \ argument 58 rdma_lookup_get_uobject(uobj_get_type(_attrs, _type), (_attrs)->ufile, \ 60 UVERBS_LOOKUP_READ, _attrs); \ 69 #define uobj_get_obj_read(_object, _type, _id, _attrs) \ argument 71 uobj_get_read(_type, _id, _attrs))) [all …]
|
/freebsd/tests/atf_python/sys/net/ |
H A D | rtsock.py | 347 self._attrs = {} 359 self._attrs[attr_type] = attr_bytes 377 return self._attrs.get(attr_type) 395 rtm_addrs = sum(list(self._attrs.keys())) 397 for attr in sorted(self._attrs.keys()): 398 sa_data = SaHelper.print_sa(self._attrs[attr]) 425 our_sa = self._attrs[sa_type] 436 if sa_type not in self._attrs: 473 self._attrs[v] = data[off : off + data[off]] 481 for k, v in self._attrs.items(): [all …]
|
/freebsd/sys/dev/bhnd/tools/ |
H A D | nvram_map_gen.awk | 3357 function segment_to_string(seg, _str, _t, _m, _s, _attrs, _attr_str) { 3358 _attrs = array_new() 3369 array_append(_attrs, ("&" _m)) 3376 array_append(_attrs, _s) 3379 _attr_str = array_join(_attrs, ", ") 3380 obj_delete(_attrs) 4036 function parse_srom_segment_attributes(offset, type, _attrs, _num_attr, _attr, 4052 _attrs = substr($0, RSTART+1, RLENGTH-2) 4058 _num_attr = split(_attrs, _g_attrs, ",[ \t]*") 4095 _offset, _attrs, _num_attr, _attr, _mask, _shift, _off_desc)
|
/freebsd/sys/netlink/route/ |
H A D | rt.c | 419 post_p_rtnh(void *_attrs, struct nl_pstate *npt __unused) in post_p_rtnh() argument 421 struct rta_mpath_nh *attrs = (struct rta_mpath_nh *)_attrs; in post_p_rtnh() 531 post_p_rtmsg(void *_attrs, struct nl_pstate *npt __unused) 533 struct nl_parsed_route *attrs = (struct nl_parsed_route *)_attrs; 519 post_p_rtmsg(void * _attrs,struct nl_pstate * npt __unused) post_p_rtmsg() argument
|
H A D | neigh.c | 342 post_p_neigh(void *_attrs, struct nl_pstate *npt __unused) in post_p_neigh() argument 344 struct nl_parsed_neigh *attrs = (struct nl_parsed_neigh *)_attrs; in post_p_neigh()
|
H A D | nexthop.c | 736 post_p_nh(void *_attrs, struct nl_pstate *npt) in post_p_nh() argument 738 struct nl_parsed_nhop *attrs = (struct nl_parsed_nhop *)_attrs; in post_p_nh()
|
H A D | iface.c | 769 post_p_ifa(void *_attrs, struct nl_pstate *npt) in post_p_ifa() argument 771 struct nl_parsed_ifa *attrs = (struct nl_parsed_ifa *)_attrs; in post_p_ifa()
|
/freebsd/sys/compat/linuxkpi/common/include/linux/ |
H A D | sysfs.h | 68 .attrs = _name##_attrs, \
|
/freebsd/contrib/ncurses/include/ |
H A D | curses.h.in | 516 attr_t _attrs; /* current attribute for non-space character */ member 1212 #define getattrs(win) NCURSES_CAST(int, NCURSES_OK_ADDR(win) ? (win)->_attrs : A_NORMAL) 1235 (win)->_attrs = NCURSES_CAST(attr_t, at), \ 1241 ? ((win)->_attrs = NCURSES_CAST(attr_t, at), \ 1386 ? ((void)((win)->_attrs = ((a) & ~A_COLOR), \ 1393 ? (*(a) = (win)->_attrs) \ 1406 ? ((void)((win)->_attrs = (((a) & ~A_COLOR) | \ 1413 ? (*(a) = (win)->_attrs) \ 1416 ? (*(p) = (NCURSES_PAIRS_T) PAIR_NUMBER((win)->_attrs)) \
|
/freebsd/contrib/ncurses/ncurses/base/ |
H A D | lib_screen.c | 133 DATA(_attrs, pATTR),
|
/freebsd/contrib/ncurses/ncurses/ |
H A D | curses.priv.h | 524 #define GET_WINDOW_PAIR(w) GetPair2((w)->_color, (w)->_attrs) 565 #define WINDOW_ATTRS(w) ((w)->_attrs)
|