Lines Matching refs:snapname

433 lzc_get_holds(const char *snapname, nvlist_t **holdsp)
437 error = lzc_ioctl(ZFS_IOC_GET_HOLDS, snapname, innvl, holdsp);
446 * "snapname" is the full name of the snapshot to send (e.g. "pool/fs@snap")
452 * bookmark must represent an earlier point in the history of "snapname").
453 * It can be an earlier snapshot in the same filesystem or zvol as "snapname",
454 * or it can be the origin of "snapname"'s filesystem, or an earlier
469 lzc_send(const char *snapname, const char *from, int fd,
472 return (lzc_send_resume(snapname, from, fd, flags, 0, 0));
476 lzc_send_resume(const char *snapname, const char *from, int fd,
496 err = lzc_ioctl(ZFS_IOC_SEND_NEW, snapname, args, NULL);
517 lzc_send_space(const char *snapname, const char *from,
533 err = lzc_ioctl(ZFS_IOC_SEND_SPACE, snapname, args, &result);
561 recv_impl(const char *snapname, nvlist_t *props, const char *origin,
578 (void) strlcpy(zc.zc_name, snapname, sizeof (zc.zc_name));
594 (void) strlcpy(zc.zc_value, snapname, sizeof (zc.zc_value));
653 lzc_receive(const char *snapname, nvlist_t *props, const char *origin,
656 return (recv_impl(snapname, props, origin, force, B_FALSE, fd, NULL));
666 lzc_receive_resumable(const char *snapname, nvlist_t *props, const char *origin,
669 return (recv_impl(snapname, props, origin, force, B_TRUE, fd, NULL));
675 * the snapname or the origin parameters based on the information contained in
684 lzc_receive_with_header(const char *snapname, nvlist_t *props,
690 return (recv_impl(snapname, props, origin, force, resumable, fd,
712 const char *snapname = fnvlist_lookup_string(result, "target");
713 (void) strlcpy(snapnamebuf, snapname, snapnamelen);