| 1252 | } |
| 1253 | |
| 1254 | void acl_slice_pool_destroy(ACL_SLICE_POOL *asp) |
| 1255 | { |
| 1256 | int i; |
| 1257 | |
| 1258 | for (i = 0; i < asp->nslice; i++) { |
| 1259 | acl_slice_destroy(asp->slices[i]); |
| 1260 | } |
| 1261 | |
| 1262 | __slice_free_fn(__FILE__, __LINE__, asp->slices); |
| 1263 | __slice_free_fn(__FILE__, __LINE__, asp); |
| 1264 | } |
| 1265 | |
| 1266 | int acl_slice_pool_used(ACL_SLICE_POOL *asp) |
| 1267 | { |
no test coverage detected
searching dependent graphs…