Searched refs:nvlist_find (Results 1 – 5 of 5) sorted by relevance
| /freebsd-13-stable/stand/libsa/zfs/ |
| HD | zfsimpl.c | 195 rc = nvlist_find(nvl, ZPOOL_CONFIG_FEATURES_FOR_READ, in nvlist_check_features_for_read() 894 (void) nvlist_find(nvlist, ZPOOL_CONFIG_OFFLINE, DATA_TYPE_UINT64, NULL, in vdev_set_initial_state() 896 (void) nvlist_find(nvlist, ZPOOL_CONFIG_REMOVED, DATA_TYPE_UINT64, NULL, in vdev_set_initial_state() 898 (void) nvlist_find(nvlist, ZPOOL_CONFIG_FAULTED, DATA_TYPE_UINT64, NULL, in vdev_set_initial_state() 900 (void) nvlist_find(nvlist, ZPOOL_CONFIG_DEGRADED, DATA_TYPE_UINT64, in vdev_set_initial_state() 902 (void) nvlist_find(nvlist, ZPOOL_CONFIG_NOT_PRESENT, DATA_TYPE_UINT64, in vdev_set_initial_state() 904 (void) nvlist_find(nvlist, ZPOOL_CONFIG_IS_LOG, DATA_TYPE_UINT64, NULL, in vdev_set_initial_state() 931 if (nvlist_find(nvlist, ZPOOL_CONFIG_ID, DATA_TYPE_UINT64, NULL, &id, in vdev_init() 933 nvlist_find(nvlist, ZPOOL_CONFIG_TYPE, DATA_TYPE_STRING, NULL, in vdev_init() 966 nvlist_find(nvlist, in vdev_init() [all …]
|
| HD | nvlist.h | 135 int nvlist_find(const nvlist_t *, const char *, data_type_t,
|
| HD | zfs.c | 853 if ((rv = nvlist_find(benv, key, DATA_TYPE_STRING, NULL, in zfs_get_bootonce() 937 if (nvlist_find(spa->spa_bootenv, OS_NVSTORE, DATA_TYPE_NVLIST, in zfs_nvstore_getter() 941 rv = nvlist_find(nv, name, DATA_TYPE_STRING, NULL, &str, &size); in zfs_nvstore_getter() 971 if (nvlist_find(spa->spa_bootenv, OS_NVSTORE, DATA_TYPE_NVLIST, in zfs_nvstore_setter() 1144 if (nvlist_find(spa->spa_bootenv, OS_NVSTORE, DATA_TYPE_NVLIST, in zfs_nvstore_setter_str() 1286 if (nvlist_find(spa->spa_bootenv, OS_NVSTORE, DATA_TYPE_NVLIST, in zfs_nvstore_unset_impl() 1443 if (nvlist_find(spa->spa_bootenv, OS_NVSTORE, DATA_TYPE_NVLIST, in zfs_nvstore_iterate() 1480 rv = nvlist_find(spa->spa_bootenv, BOOTENV_VERSION, DATA_TYPE_UINT64, in zfs_attach_nvstore()
|
| HD | nvlist.c | 897 nvlist_find(const nvlist_t *nvl, const char *name, data_type_t type, in nvlist_find() function
|
| /freebsd-13-stable/sys/contrib/libnv/ |
| HD | nvlist.c | 383 nvlist_find(const nvlist_t *nvl, int type, const char *name) in nvlist_find() function 421 return (nvlist_find(nvl, type, name) != NULL); in nvlist_exists_type() 434 nvp = nvlist_find(nvl, type, name); in nvlist_free_type() 1412 return (nvlist_find(nvl, NV_TYPE_NONE, name) != NULL); in nvlist_exists() 1420 return (nvlist_find(nvl, NV_TYPE_##TYPE, name) != NULL); \ 1611 nvp = nvlist_find(nvl, NV_TYPE_##TYPE##_ARRAY, name); \ in NVLIST_ADD_ARRAY() 1872 return (nvlist_find(nvl, NV_TYPE_NONE, name)); in nvlist_get_nvpair() 1881 nvp = nvlist_find(nvl, NV_TYPE_##TYPE, name); \ 1902 nvp = nvlist_find(nvl, NV_TYPE_BINARY, name); in NVLIST_GET() 1916 nvp = nvlist_find(nvl, NV_TYPE_##TYPE##_ARRAY, name); \ [all …]
|