Lines Matching refs:hnd

1368 kmsan_bus_space_map(bus_space_tag_t tag, bus_addr_t hnd, bus_size_t size,  in kmsan_bus_space_map()  argument
1371 return (bus_space_map(tag, hnd, size, flags, handlep)); in kmsan_bus_space_map()
1375 kmsan_bus_space_unmap(bus_space_tag_t tag, bus_space_handle_t hnd, in kmsan_bus_space_unmap() argument
1378 bus_space_unmap(tag, hnd, size); in kmsan_bus_space_unmap()
1382 kmsan_bus_space_subregion(bus_space_tag_t tag, bus_space_handle_t hnd, in kmsan_bus_space_subregion() argument
1385 return (bus_space_subregion(tag, hnd, offset, size, handlep)); in kmsan_bus_space_subregion()
1389 kmsan_bus_space_free(bus_space_tag_t tag, bus_space_handle_t hnd, in kmsan_bus_space_free() argument
1392 bus_space_free(tag, hnd, size); in kmsan_bus_space_free()
1396 kmsan_bus_space_barrier(bus_space_tag_t tag, bus_space_handle_t hnd, in kmsan_bus_space_barrier() argument
1399 bus_space_barrier(tag, hnd, offset, size, flags); in kmsan_bus_space_barrier()
1410 bus_space_handle_t hnd, bus_size_t offset) \
1414 kmsan_shadow_fill((uintptr_t)(hnd + offset), \
1416 ret = bus_space_read##func##_##width(tag, hnd, offset); \
1423 bus_space_handle_t hnd, bus_size_t size, type *buf, \
1428 bus_space_read_##func##_##width(tag, hnd, size, buf, \
1464 bus_space_handle_t hnd, bus_size_t offset, type value) \
1466 bus_space_write##func##_##width(tag, hnd, offset, value);\
1471 bus_space_handle_t hnd, bus_size_t size, const type *buf, \
1476 bus_space_write_##func##_##width(tag, hnd, size, buf, \
1505 bus_space_handle_t hnd, bus_size_t offset, type value, \
1508 bus_space_set_##func##_##width(tag, hnd, offset, value, \
1529 bus_space_handle_t hnd, bus_size_t offset, type *value) \
1531 return (bus_space_peek_##width(tag, hnd, offset, value)); \
1540 bus_space_handle_t hnd, bus_size_t offset, type value) \
1542 return (bus_space_poke_##width(tag, hnd, offset, value)); \