Lines Matching refs:region_id
72 uint32_t region_id,
86 uint32_t region_id);
96 NRF_STATIC_INLINE size_t nrf_acl_region_size_get(NRF_ACL_Type const * p_reg, uint32_t region_id);
107 uint32_t region_id);
112 uint32_t region_id, in nrf_acl_region_set() argument
117 NRFX_ASSERT(region_id < ACL_REGIONS_COUNT); in nrf_acl_region_set()
123 p_reg->ACL[region_id].ADDR = address; in nrf_acl_region_set()
124 p_reg->ACL[region_id].SIZE = size; in nrf_acl_region_set()
125 p_reg->ACL[region_id].PERM = perm; in nrf_acl_region_set()
129 uint32_t region_id) in nrf_acl_region_address_get() argument
131 return (uint32_t)p_reg->ACL[region_id].ADDR; in nrf_acl_region_address_get()
134 NRF_STATIC_INLINE size_t nrf_acl_region_size_get(NRF_ACL_Type const * p_reg, uint32_t region_id) in nrf_acl_region_size_get() argument
136 return (size_t)p_reg->ACL[region_id].SIZE; in nrf_acl_region_size_get()
140 uint32_t region_id) in nrf_acl_region_perm_get() argument
142 return (nrf_acl_perm_t)p_reg->ACL[region_id].PERM; in nrf_acl_region_perm_get()