| /freebsd/sys/contrib/openzfs/module/zfs/ |
| H A D | dsl_userhold.c | 239 dsl_onexit_hold_cleanup(spa_t *spa, nvlist_t *holds, minor_t minor) in dsl_onexit_hold_cleanup() argument 243 if (minor == 0 || nvlist_empty(holds)) { in dsl_onexit_hold_cleanup() 244 fnvlist_free(holds); in dsl_onexit_hold_cleanup() 254 ca->zhca_holds = holds; in dsl_onexit_hold_cleanup() 326 dsl_dataset_user_hold(nvlist_t *holds, minor_t cleanup_minor, nvlist_t *errlist) in dsl_dataset_user_hold() argument 332 pair = nvlist_next_nvpair(holds, NULL); in dsl_dataset_user_hold() 336 dduha.dduha_holds = holds; in dsl_dataset_user_hold() 344 fnvlist_num_pairs(holds), ZFS_SPACE_CHECK_RESERVED); in dsl_dataset_user_hold() 371 dsl_dataset_t *ds, nvlist_t *holds, const char *snapname) in dsl_dataset_user_release_check_one() argument 381 if (nvlist_empty(holds)) in dsl_dataset_user_release_check_one() [all …]
|
| H A D | dsl_pool.c | 1212 nvlist_t *holds; in dsl_pool_clean_tmp_userrefs() local 1218 holds = fnvlist_alloc(); in dsl_pool_clean_tmp_userrefs() 1230 if (nvlist_lookup_nvlist(holds, za->za_name, &tags) != 0) { in dsl_pool_clean_tmp_userrefs() 1233 fnvlist_add_nvlist(holds, za->za_name, tags); in dsl_pool_clean_tmp_userrefs() 1239 dsl_dataset_user_release_tmp(dp, holds); in dsl_pool_clean_tmp_userrefs() 1240 fnvlist_free(holds); in dsl_pool_clean_tmp_userrefs()
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/synctask_core/ |
| H A D | tst.list_holds.ksh | 49 for s in zfs.list.holds("$SNAP") do 61 for s in zfs.list.holds("$SNAP") do 81 for s in zfs.list.holds("$SNAP") do 96 zfs.list.holds("$TESTPOOL/nonexistent-fs@nonexistent-snap") 100 zfs.list.holds("nonexistent-pool/$TESTFS") 106 zfs.list.holds("testpool2") 112 zfs.list.holds("$TESTPOOL/$TESTFS") 118 zfs.list.holds("$TESTPOOL/$TESTFS#bookmark")
|
| /freebsd/sys/contrib/openzfs/include/sys/ |
| H A D | dsl_userhold.h | 44 int dsl_dataset_user_hold(nvlist_t *holds, minor_t cleanup_minor, 46 int dsl_dataset_user_release(nvlist_t *holds, nvlist_t *errlist); 48 void dsl_dataset_user_release_tmp(struct dsl_pool *dp, nvlist_t *holds);
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/zoned_uid/ |
| H A D | zoned_uid_020_neg.ksh | 158 typeset holds 159 holds=$(zfs holds "$TESTPOOL/$TESTFS/deleg_root/child@snap1" 2>&1 | wc -l) 160 if [[ $holds -gt 1 ]]; then
|
| /freebsd/sys/contrib/openzfs/contrib/pyzfs/libzfs_core/ |
| H A D | _error_translation.py | 256 def lzc_hold_translate_errors(ret, errlist, holds, fd): argument 265 pool_names = map(_pool_name, holds.keys()) 274 b for b in holds.keys() if not _is_valid_snap_name(b)] 283 hold_name = holds[name] 296 _handle_err_list(ret, errlist, holds.keys(), lzc_exc.HoldFailure, _map) 299 def lzc_release_translate_errors(ret, errlist, holds): argument 302 for snap in holds: 303 hold_list = holds[snap] 312 pool_names = map(_pool_name, holds.keys()) 321 b for b in holds.keys() if not _is_valid_snap_name(b)] [all …]
|
| H A D | _libzfs_core.py | 405 def lzc_hold(holds, fd=None): argument 446 nvlist = nvlist_in(holds) 449 errors.lzc_hold_translate_errors(ret, errlist, holds, fd) 456 def lzc_release(holds): argument 488 for snap in holds: 489 hold_list = holds[snap] 496 errors.lzc_release_translate_errors(ret, errlist, holds) 512 holds = {} 513 with nvlist_out(holds) as nvlist: 516 return holds
|
| /freebsd/crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ |
| H A D | kerberos.schema | 91 ##### The krbTicketFlags attribute holds information about the kerberos flags for a principal 145 ##### The attribute holds data in the ldap uri format, 177 ##### This attribute holds the Host Name or the ip address, 188 ##### This attribute holds the scope for searching the principals 354 ##### This attribute holds the principal's key (krbPrincipalKey) that is encrypted with 439 ##### This attribute holds the principal's old keys (krbPwdHistory) that is encrypted with 492 ##### This attribute holds the kerberos master key. 552 ##### This attribute holds the application specific data. 560 ##### This attributes holds references to the set of directory objects. 570 ##### This attribute holds references to a Container object where [all …]
|
| H A D | kerberos.ldif | 107 ##### The krbTicketFlags attribute holds information about the kerberos flags for a principal 173 ##### The attribute holds data in the ldap uri format, 214 ##### This attribute holds the Host Name or the ip address, 228 ##### This attribute holds the scope for searching the principals 448 ##### This attribute holds the principal's key (krbPrincipalKey) that is encrypted with 550 ##### This attribute holds the principal's old keys (krbPwdHistory) that is encrypted with 612 ##### This attribute holds the kerberos master key. 687 ##### This attribute holds the application specific data. 698 ##### This attributes holds references to the set of directory objects. 711 ##### This attribute holds references to a Container object where [all …]
|
| /freebsd/crypto/ |
| H A D | README | 2 holds crypto sources. In other words, this holds raw sources obtained
|
| /freebsd/sys/contrib/openzfs/lib/libzfs/ |
| H A D | libzfs_sendrecv.c | 259 boolean_t holds; /* were holds requested with send -h */ member 365 if (sd->holds) { in send_iterate_snap() 366 nvlist_t *holds; in send_iterate_snap() local 367 if (lzc_get_holds(zhp->zfs_name, &holds) == 0) { in send_iterate_snap() 368 fnvlist_add_nvlist(sd->snapholds, snapname, holds); in send_iterate_snap() 369 fnvlist_free(holds); in send_iterate_snap() 636 if (sd->holds) in send_iterate_fs() 662 if (sd->holds) { in send_iterate_fs() 705 boolean_t backup, boolean_t holds, boolean_t props, in gather_nvlist() argument 728 sd.holds = holds; in gather_nvlist() [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/clock/ |
| H A D | nxp,lpc3220-usb-clk.txt | 6 - #clock-cells: must be 1, the cell holds id of a clock provided by the
|
| H A D | nxp,lpc3220-clk.txt | 6 - #clock-cells: must be 1, the cell holds id of a clock provided by the
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/history/ |
| H A D | history_006_neg.ksh | 80 log_must zfs holds $snap1
|
| /freebsd/contrib/kyua/ |
| H A D | CONTRIBUTORS | 6 # because Google holds the copyright.
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | X509_ACERT_get0_holder_baseCertId.pod | 67 A B<OSSL_ISSUER_SERIAL> object holds the subject name and UID of a certificate 75 An B<OSSL_OBJECT_DIGEST_INFO> object holds a digest of data to identify the
|
| H A D | EVP_PKEY_is_a.pod | 33 The order of the names depends on the provider implementation that holds 39 that holds the key which one will be returned.
|
| /freebsd/sys/ufs/ufs/ |
| H A D | README.acls | 65 EXTATTR_NAMESPACE_SYSTEM namespace: "posix1e.acl_access", which holds 66 the access ACL, and "posix1e.acl_default" which holds the default ACL
|
| /freebsd/sys/contrib/device-tree/Bindings/remoteproc/ |
| H A D | st-rproc.txt | 20 - st,syscfg System configuration register which holds the boot vector
|
| /freebsd/sys/contrib/device-tree/Bindings/ |
| H A D | chosen.txt | 82 This property holds a base address and size, describing a limited region in 109 This property holds the memory range, the address and the size, of the elf
|
| /freebsd/sys/contrib/openzfs/lib/libzfs_core/ |
| H A D | libzfs_core.c | 569 lzc_hold(nvlist_t *holds, int cleanup_fd, nvlist_t **errlist) in lzc_hold() argument 577 elem = nvlist_next_nvpair(holds, NULL); in lzc_hold() 584 fnvlist_add_nvlist(args, "holds", holds); in lzc_hold() 616 lzc_release(nvlist_t *holds, nvlist_t **errlist) in lzc_release() argument 622 elem = nvlist_next_nvpair(holds, NULL); in lzc_release() 628 return (lzc_ioctl(ZFS_IOC_RELEASE, pool, holds, errlist)); in lzc_release()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DwarfDebug.h | 225 template <typename T> bool holds() const { in holds() function 230 assert(holds<T>()); in get() 235 assert(holds<T>()); in get()
|
| /freebsd/sys/contrib/device-tree/Bindings/gpio/ |
| H A D | sodaville.txt | 7 The only additional property is the intel,muxctl property which holds the
|
| /freebsd/sys/contrib/device-tree/Bindings/iio/adc/ |
| H A D | mt6577_auxadc.txt | 10 for the Thermal Controller which holds a phandle to the AUXADC.
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/ |
| H A D | dfsan_flags.inc | 39 "Whether to check if the origin invariant holds.")
|