| /freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/sys/ |
| H A D | list.h | 36 typedef struct list list_t; typedef 39 void list_destroy(list_t *); 45 void list_remove(list_t *, void *); 46 void *list_remove_head(list_t *); 47 void *list_remove_tail(list_t *); 48 void list_move_tail(list_t *, list_t *); 50 void *list_head(list_t *); 51 void *list_tail(list_t *); 52 void *list_next(list_t *, void *); 53 void *list_prev(list_t *, void *); [all …]
|
| /freebsd-12.1/cddl/contrib/opensolaris/tools/ctf/common/ |
| H A D | list.h | 40 typedef struct list list_t; typedef 42 void list_add(list_t **, void *); 43 void slist_add(list_t **, void *, int (*)(void *, void *)); 45 void list_free(list_t *, void (*)(void *, void *), void *); 46 void *list_find(list_t *, void *, int (*)(void *, void *)); 47 void *list_first(list_t *); 48 int list_iter(list_t *, int (*)(void *, void *), void *); 49 int list_count(list_t *); 50 int list_empty(list_t *); 51 void list_concat(list_t **, list_t *); [all …]
|
| H A D | list.c | 49 list_t *le; in list_add() 61 list_t **nextp; in slist_add() 82 list_t *le, **le2; in list_remove() 103 list_t *le; in list_free() 121 list_t *lnext; in list_iter() 144 list_count(list_t *list) in list_count() 173 list_concat(list_t **list1, list_t *list2) in list_concat() 175 list_t *l, *last; in list_concat() 190 slist_merge(list_t **list1p, list_t *list2, int (*cmp)(void *, void *)) in slist_merge() 192 list_t *list1, *next2; in slist_merge() [all …]
|
| /freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/os/ |
| H A D | list.c | 75 list_destroy(list_t *list) in list_destroy() 109 list_insert_head(list_t *list, void *object) in list_insert_head() 123 list_remove(list_t *list, void *object) in list_remove() 132 list_remove_head(list_t *list) in list_remove_head() 142 list_remove_tail(list_t *list) in list_remove_tail() 152 list_head(list_t *list) in list_head() 160 list_tail(list_t *list) in list_tail() 168 list_next(list_t *list, void *object) in list_next() 179 list_prev(list_t *list, void *object) in list_prev() 193 list_move_tail(list_t *dst, list_t *src) in list_move_tail() [all …]
|
| /freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/ |
| H A D | zil_impl.h | 105 list_t lwb_waiters; /* list of zil_commit_waiter's */ 140 list_t i_sync_list; /* list of synchronous itxs */ 153 list_t ia_list; /* list of async itxs for this foid */ 200 list_t zl_itx_commit_list; /* itx list to be committed */ 202 list_t zl_lwb_list; /* in-flight log write list */
|
| H A D | dmu_tx.h | 52 list_t tx_holds; /* list of dmu_tx_hold_t */ 64 list_t tx_callbacks; 125 void dmu_tx_do_callbacks(list_t *cb_list, int error);
|
| H A D | vdev_removal.h | 46 list_t svr_new_segments[TXG_SIZE]; 70 list_t sci_new_mapping_entries[TXG_SIZE];
|
| H A D | spa_impl.h | 230 list_t spa_evicting_os_list; /* Objsets being evicted. */ 239 list_t spa_config_dirty_list; /* vdevs with dirty config */ 240 list_t spa_state_dirty_list; /* vdevs with dirty state */ 326 list_t spa_config_list; /* previous cache file(s) */
|
| H A D | zfs_fuid.h | 91 list_t z_fuids; 92 list_t z_domains;
|
| H A D | refcount.h | 57 list_t rc_list; 58 list_t rc_removed;
|
| H A D | dmu_objset.h | 138 list_t os_dnodes; 139 list_t os_downgraded_dbufs;
|
| H A D | vdev_disk.h | 48 list_t vd_ldi_cbs;
|
| H A D | bplist.h | 42 list_t bpl_list;
|
| H A D | dmu_zfetch.h | 60 list_t zf_stream; /* list of zstream_t's */
|
| H A D | bqueue.h | 29 list_t bq_list;
|
| H A D | zfs_onexit.h | 39 list_t zo_actions;
|
| H A D | dsl_dataset.h | 225 list_t ds_sendstreams; 236 list_t ds_prop_cbs; 263 list_t shared_snaps, origin_snaps, clone_snaps;
|
| H A D | txg_impl.h | 75 list_t tc_callbacks[TXG_SIZE]; /* commit cb list */
|
| H A D | multilist.h | 45 list_t mls_list;
|
| H A D | zcp.h | 106 list_t zri_cleanup_handlers;
|
| H A D | dbuf.h | 142 list_t dr_children; 326 void dbuf_sync_list(list_t *list, int level, dmu_tx_t *tx);
|
| /freebsd-12.1/cddl/contrib/opensolaris/tools/ctf/cvt/ |
| H A D | ctftools.h | 308 list_t *td_fwdlist; /* All forward declaration tdesc nodes */ 312 list_t *td_labels; /* Labels and their type ranges */ 334 list_t *iib_types;
|
| H A D | hash.c | 45 list_t **h_buckets; 98 hash->h_buckets = xcalloc(sizeof (list_t *) * nbuckets); in hash_new()
|
| /freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/ |
| H A D | txg.c | 326 txg_register_callbacks(txg_handle_t *th, list_t *tx_callbacks) in txg_register_callbacks() 399 list_t *cb_list = arg; in txg_do_callbacks() 405 kmem_free(cb_list, sizeof (list_t)); in txg_do_callbacks() 419 list_t *cb_list; in txg_dispatch_callbacks() 442 cb_list = kmem_alloc(sizeof (list_t), KM_SLEEP); in txg_dispatch_callbacks()
|
| H A D | zfs_debug.c | 28 list_t zfs_dbgmsgs;
|