Lines Matching defs:_lib

120         ds_type = _lib.DMU_OST_ZFS
122 ds_type = _lib.DMU_OST_ZVOL
126 ret = _lib.lzc_create(name, ds_type, nvlist, key, len(key))
161 ret = _lib.lzc_clone(name, origin, nvlist)
184 ret = _lib.lzc_rollback(name, snapnamep, MAXNAMELEN + 1)
202 ret = _lib.lzc_rollback_to(name, snap)
263 ret = _lib.lzc_snapshot(snaps_nvlist, props_nvlist, errlist_nvlist)
313 ret = _lib.lzc_destroy_snaps(snaps_nvlist, defer, errlist_nvlist)
336 ret = _lib.lzc_bookmark(nvlist, errlist_nvlist)
373 ret = _lib.lzc_get_bookmarks(fsname, nvlist, bmarks_nvlist)
402 ret = _lib.lzc_destroy_bookmarks(nvlist, errlist_nvlist)
438 ret = _lib.lzc_snaprange_space(firstsnap, lastsnap, valp)
486 ret = _lib.lzc_hold(nvlist, fd, errlist_nvlist)
533 ret = _lib.lzc_release(nvlist, errlist_nvlist)
552 ret = _lib.lzc_get_holds(snapname, nvlist)
636 'embedded_data': _lib.LZC_SEND_FLAG_EMBED_DATA,
637 'large_blocks': _lib.LZC_SEND_FLAG_LARGE_BLOCK,
638 'compress': _lib.LZC_SEND_FLAG_COMPRESS,
639 'raw': _lib.LZC_SEND_FLAG_RAW,
645 ret = _lib.lzc_send(snapname, c_fromsnap, fd, c_flags)
688 'embedded_data': _lib.LZC_SEND_FLAG_EMBED_DATA,
689 'large_blocks': _lib.LZC_SEND_FLAG_LARGE_BLOCK,
690 'compress': _lib.LZC_SEND_FLAG_COMPRESS,
691 'raw': _lib.LZC_SEND_FLAG_RAW,
698 ret = _lib.lzc_send_space(snapname, c_fromsnap, c_flags, valp)
804 ret = _lib.lzc_receive(snapname, nvlist, c_origin, force, raw, fd)
825 ret = _lib.lzc_exists(name)
858 'new_key': _lib.DCP_CMD_NEW_KEY,
859 'inherit': _lib.DCP_CMD_INHERIT,
860 'force_new_key': _lib.DCP_CMD_FORCE_NEW_KEY,
861 'force_inherit': _lib.DCP_CMD_FORCE_INHERIT,
866 ret = _lib.lzc_change_key(fsname, cmd, nvlist, key, len(key))
886 ret = _lib.lzc_load_key(fsname, noop, key, len(key))
903 ret = _lib.lzc_unload_key(fsname)
939 ret = _lib.lzc_channel_program(
984 ret = _lib.lzc_channel_program_nosync(
1060 ret = _lib.lzc_receive_resumable(
1147 ret = _lib.lzc_receive_with_header(
1299 ret = _lib.lzc_receive_one(
1420 ret = _lib.lzc_receive_with_cmdprops(
1549 ret = _lib.lzc_receive_with_heal(
1568 ret = _lib.lzc_reopen(poolname, restart)
1614 'embedded_data': _lib.LZC_SEND_FLAG_EMBED_DATA,
1615 'large_blocks': _lib.LZC_SEND_FLAG_LARGE_BLOCK,
1616 'compress': _lib.LZC_SEND_FLAG_COMPRESS,
1617 'raw': _lib.LZC_SEND_FLAG_RAW,
1623 ret = _lib.lzc_send_resume(
1648 ret = _lib.lzc_sync(poolname, innvl, outnvl)
1673 return getattr(_lib, fname, None) is not None
1691 ret = _lib.lzc_promote(name, _ffi.NULL, _ffi.NULL)
1708 ret = _lib.lzc_pool_checkpoint(name)
1722 ret = _lib.lzc_pool_checkpoint_discard(name)
1743 ret = _lib.lzc_rename(source, target)
1756 ret = _lib.lzc_destroy(name)
1780 ret = _lib.lzc_inherit(name, prop, _ffi.NULL)
1814 ret = _lib.lzc_set_props(name, props_nv, _ffi.NULL, _ffi.NULL)
1876 ret = _lib.lzc_list(name, opts_nv)
1939 ret = _lib.nvlist_unpack(data_bytes, size, nvp, 0)
2063 self._lib = lib
2071 ret = self._lib.libzfs_core_init()
2075 return getattr(self._lib, name)
2081 _lib = _initialize()