Lines Matching refs:ian
1181 itx_async_node_t *ian;
1192 while ((ian = avl_destroy_nodes(t, &cookie)) != NULL) {
1193 list = &ian->ia_list;
1200 kmem_free(ian, sizeof (itx_async_node_t));
1228 itx_async_node_t *ian;
1255 ian = avl_find(t, &oid, &where);
1256 if (ian != NULL)
1257 list_move_tail(&clean_list, &ian->ia_list);
1329 itx_async_node_t *ian;
1332 ian = avl_find(t, &foid, &where);
1333 if (ian == NULL) {
1334 ian = kmem_alloc(sizeof (itx_async_node_t), KM_SLEEP);
1335 list_create(&ian->ia_list, sizeof (itx_t),
1337 ian->ia_foid = foid;
1338 avl_insert(t, ian, where);
1340 list_insert_tail(&ian->ia_list, itx);
1445 itx_async_node_t *ian;
1475 ian = avl_find(t, &foid, &where);
1476 if (ian != NULL) {
1478 &ian->ia_list);
1483 while ((ian = avl_destroy_nodes(t, &cookie)) != NULL) {
1485 &ian->ia_list);
1486 list_destroy(&ian->ia_list);
1487 kmem_free(ian, sizeof (itx_async_node_t));