Searched refs:nvlist_find (Results 1 – 6 of 6) sorted by relevance
| /freebsd/stand/libsa/zfs/ |
| H A D | zfsimpl.c | 187 rc = nvlist_find(nvl, ZPOOL_CONFIG_FEATURES_FOR_READ, in nvlist_check_features_for_read() 900 (void) nvlist_find(nvlist, ZPOOL_CONFIG_OFFLINE, DATA_TYPE_UINT64, NULL, in vdev_set_initial_state() 902 (void) nvlist_find(nvlist, ZPOOL_CONFIG_REMOVED, DATA_TYPE_UINT64, NULL, in vdev_set_initial_state() 904 (void) nvlist_find(nvlist, ZPOOL_CONFIG_FAULTED, DATA_TYPE_UINT64, NULL, in vdev_set_initial_state() 906 (void) nvlist_find(nvlist, ZPOOL_CONFIG_DEGRADED, DATA_TYPE_UINT64, in vdev_set_initial_state() 908 (void) nvlist_find(nvlist, ZPOOL_CONFIG_NOT_PRESENT, DATA_TYPE_UINT64, in vdev_set_initial_state() 910 (void) nvlist_find(nvlist, ZPOOL_CONFIG_IS_LOG, DATA_TYPE_UINT64, NULL, in vdev_set_initial_state() 937 if (nvlist_find(nvlist, ZPOOL_CONFIG_ID, DATA_TYPE_UINT64, NULL, &id, in vdev_init() 939 nvlist_find(nvlist, ZPOOL_CONFIG_TYPE, DATA_TYPE_STRING, NULL, in vdev_init() 972 nvlist_find(nvlist, in vdev_init() [all …]
|
| H A D | nvlist.h | 135 int nvlist_find(const nvlist_t *, const char *, data_type_t,
|
| H A D | zfs.c | 901 if (nvlist_find(spa->spa_bootenv, OS_NVSTORE, DATA_TYPE_NVLIST, in zfs_nvstore_getter() 905 rv = nvlist_find(nv, name, DATA_TYPE_STRING, NULL, &str, &size); in zfs_nvstore_getter() 935 if (nvlist_find(spa->spa_bootenv, OS_NVSTORE, DATA_TYPE_NVLIST, in zfs_nvstore_setter() 1108 if (nvlist_find(spa->spa_bootenv, OS_NVSTORE, DATA_TYPE_NVLIST, in zfs_nvstore_setter_str() 1250 if (nvlist_find(spa->spa_bootenv, OS_NVSTORE, DATA_TYPE_NVLIST, in zfs_nvstore_unset_impl() 1411 if (nvlist_find(spa->spa_bootenv, OS_NVSTORE, DATA_TYPE_NVLIST, in zfs_nvstore_iterate() 1448 rv = nvlist_find(spa->spa_bootenv, BOOTENV_VERSION, DATA_TYPE_UINT64, in zfs_attach_nvstore()
|
| H A D | nvlist.c | 896 nvlist_find(const nvlist_t *nvl, const char *name, data_type_t type, in nvlist_find() function
|
| /freebsd/sys/contrib/libnv/ |
| H A D | nvlist.c | 375 nvlist_find(const nvlist_t *nvl, int type, const char *name) in nvlist_find() function 413 return (nvlist_find(nvl, type, name) != NULL); in nvlist_exists_type() 426 nvp = nvlist_find(nvl, type, name); in nvlist_free_type() 1422 return (nvlist_find(nvl, NV_TYPE_NONE, name) != NULL); in nvlist_exists() 1430 return (nvlist_find(nvl, NV_TYPE_##TYPE, name) != NULL); \ 1621 nvp = nvlist_find(nvl, NV_TYPE_##TYPE##_ARRAY, name); \ in NVLIST_ADD_ARRAY() 1882 return (nvlist_find(nvl, NV_TYPE_NONE, name)); in nvlist_get_nvpair() 1891 nvp = nvlist_find(nvl, NV_TYPE_##TYPE, name); \ 1912 nvp = nvlist_find(nvl, NV_TYPE_BINARY, name); in NVLIST_GET() 1926 nvp = nvlist_find(nvl, NV_TYPE_##TYPE##_ARRAY, name); \ [all …]
|
| /freebsd/usr.sbin/makefs/zfs/ |
| H A D | dsl.c | 77 error = nvlist_find(nvl, key, DATA_TYPE_STRING, NULL, &str, &len); in nvlist_find_string() 88 return (nvlist_find(nvl, key, DATA_TYPE_UINT64, NULL, retp, NULL)); in nvlist_find_uint64()
|