Searched refs:zsp (Results 1 – 5 of 5) sorted by relevance
| /f-stack/freebsd/contrib/openzfs/cmd/zed/ |
| H A D | zed_strings.c | 74 zsp = calloc(1, sizeof (*zsp)); in zed_strings_create() 75 if (!zsp) in zed_strings_create() 82 return (zsp); in zed_strings_create() 149 if (!zsp) in zed_strings_destroy() 157 free(zsp); in zed_strings_destroy() 172 if (!zsp || !s) { in zed_strings_add() 201 if (!zsp) { in zed_strings_first() 205 zsp->iteratorp = avl_first(&zsp->tree); in zed_strings_first() 222 if (!zsp) { in zed_strings_next() 229 zsp->iteratorp = AVL_NEXT(&zsp->tree, zsp->iteratorp); in zed_strings_next() [all …]
|
| H A D | zed_event.c | 227 assert(zsp != NULL); in _zed_event_add_var() 606 assert(zsp != NULL); in _zed_event_add_nvpair() 650 _zed_event_add_var(eid, zsp, prefix, name, in _zed_event_add_nvpair() 790 assert(zsp != NULL); in _zed_event_add_env_restrict() 819 assert(zsp != NULL); in _zed_event_add_env_preserve() 864 assert(zsp != NULL); in _zed_event_add_time_strings() 893 zed_strings_t *zsp; in zed_event_service() local 937 zsp = zed_strings_create(); in zed_event_service() 941 _zed_event_add_nvpair(eid, zsp, nvp); in zed_event_service() 944 _zed_event_add_env_preserve(eid, zsp); in zed_event_service() [all …]
|
| H A D | zed_strings.h | 21 void zed_strings_destroy(zed_strings_t *zsp); 22 int zed_strings_add(zed_strings_t *zsp, const char *key, const char *s); 23 const char *zed_strings_first(zed_strings_t *zsp); 24 const char *zed_strings_next(zed_strings_t *zsp); 25 int zed_strings_count(zed_strings_t *zsp);
|
| H A D | zed_exec.c | 38 _zed_exec_create_env(zed_strings_t *zsp) in _zed_exec_create_env() argument 49 num_ptrs = zed_strings_count(zsp) + 1; in _zed_exec_create_env() 51 for (q = zed_strings_first(zsp); q; q = zed_strings_next(zsp)) in _zed_exec_create_env() 61 for (q = zed_strings_first(zsp); q; q = zed_strings_next(zsp)) { in _zed_exec_create_env()
|
| /f-stack/freebsd/contrib/openzfs/module/os/freebsd/zfs/ |
| H A D | kmod_core.c | 185 zfsdev_state_t *zs, *zsp = data; in zfsdev_close() local 189 if (zs == zsp) in zfsdev_close()
|