Searched refs:snapshot (Results 51 - 75 of 87) sorted by relevance

1234

/netbsd-current/external/gpl2/lvm2/dist/
H A DMakefile.in45 lib/snapshot \
/netbsd-current/external/bsd/libpcap/dist/
H A Dpcap-npf.c863 if(caplen > p->snapshot)
864 caplen = p->snapshot;
1287 * Turn a negative snapshot value (invalid), a snapshot value of
1291 * If some application really *needs* a bigger snapshot
1294 if (p->snapshot <= 0 || p->snapshot > MAXIMUM_SNAPLEN)
1295 p->snapshot = MAXIMUM_SNAPLEN;
1478 p->snapshot = PacketSetSnapLen(pw->adapter, p->snapshot);
[all...]
H A Dsf-pcapng.c202 uint32_t snaplen; /* snapshot length */
243 * Maximum block size for a given maximum snapshot length; we define it
926 * with a maximum snapshot that results in a larger maximum
1063 p->snapshot = pcap_adjust_snapshot(p->linktype, idbp->snaplen);
1068 * snapshot length for this DLT_ is bigger than the current
1188 * it's the minimum of the snapshot length
1192 if (hdr->caplen > (bpf_u_int32)p->snapshot)
1193 hdr->caplen = p->snapshot;
1245 * If the link-layer type or snapshot length
1261 * snapshot lengt
[all...]
H A Dpcap-sita.c967 acn_start_monitor(handle->fd, handle->snapshot, handle->opt.timeout, handle->opt.promisc, handle->direction); /* maybe tell him to start monitoring */
1014 * Turn a negative snapshot value (invalid), a snapshot value of
1018 * If some application really *needs* a bigger snapshot
1021 if (handle->snapshot <= 0 || handle->snapshot > MAXIMUM_SNAPLEN)
1022 handle->snapshot = MAXIMUM_SNAPLEN;
1025 handle->bufsize = handle->snapshot;
H A Dpcap-airpcap.c790 * Turn a negative snapshot value (invalid), a snapshot value of
794 * If some application really *needs* a bigger snapshot
797 if (p->snapshot <= 0 || p->snapshot > MAXIMUM_SNAPLEN)
798 p->snapshot = MAXIMUM_SNAPLEN;
H A Dpcap-dlpi.c37 * - There is a bug in bufmod(7) such that setting the snapshot
673 * Turn a negative snapshot value (invalid), a snapshot value of
677 * If some application really *needs* a bigger snapshot
680 if (p->snapshot <= 0 || p->snapshot > MAXIMUM_SNAPLEN)
681 p->snapshot = MAXIMUM_SNAPLEN;
818 ss = p->snapshot;
H A Dpcap-int.h126 * Maximum snapshot length.
140 * memory; some applications might use the snapshot length in a
145 * per-linktype maximum snapshot length. Other code might naively
146 * use it; we want to avoid writing a too-large snapshot length,
267 int snapshot; member in struct:pcap
559 * "pcap_adjust_snapshot()" adjusts the snapshot to be non-zero and
H A Dpcap-linux.c1032 * Turn a negative snapshot value (invalid), a snapshot value of
1036 * If some application really *needs* a bigger snapshot
1039 if (handle->snapshot <= 0 || handle->snapshot > MAXIMUM_SNAPLEN)
1040 handle->snapshot = MAXIMUM_SNAPLEN;
2601 * If we're in cooked mode, make the snapshot length
2607 * a DLT_LINUX_SLL2 "cooked mode" header; a snapshot length
2611 if (handle->snapshot < SLL2_HDR_LEN + 1)
2612 handle->snapshot
[all...]
H A Dpcap-rpcap-unix.c358 put32(&buf_start[8], p->snapshot); /* snaplen */
660 handle->bufsize = handle->snapshot + handle->offset;
H A Dpcap-tc.c507 * Turn a negative snapshot value (invalid), a snapshot value of
511 * If some application really *needs* a bigger snapshot
514 if (p->snapshot <= 0 || p->snapshot > MAXIMUM_SNAPLEN)
515 p->snapshot = MAXIMUM_SNAPLEN;
H A Dpcap-bpf.c1826 * Turn a negative snapshot value (invalid), a snapshot value of
1830 * If some application really *needs* a bigger snapshot
1833 if (p->snapshot <= 0 || p->snapshot > MAXIMUM_SNAPLEN)
1834 p->snapshot = MAXIMUM_SNAPLEN;
2636 * no indication to the kernel of what the snapshot
2641 * snapshot length.
2646 total_insn.k = p->snapshot;
/netbsd-current/external/gpl2/lvm2/dist/tools/
H A Dlvconvert.c22 int snapshot; member in struct:lvconvert_params
54 if (lp->snapshot) {
57 "the snapshot origin.");
118 log_error("--snapshot argument cannot be mixed "
127 lp->snapshot = 1;
136 if (lp->snapshot) {
155 if (!(lp->segtype = get_segtype_from_string(cmd, "snapshot")))
841 log_error("Unable to use \"%s\" as both snapshot and origin.",
847 log_error("Unable to create a snapshot of a %s LV.",
851 "snapshot");
[all...]
H A Dreporter.c75 .snapshot = NULL,
/netbsd-current/
H A DMakefile5 # how to build a snapshot or release, as well as other release engineering
124 .if make(build) || make(release) || make(snapshot)
393 # Build a release or snapshot (implies "make distribution"). Note that
398 release snapshot: .PHONY .MAKE
/netbsd-current/sys/arch/sparc/include/
H A Dcpu.h552 void snapshot(struct pcb *);
/netbsd-current/sys/arch/sparc64/include/
H A Dcpu.h442 void snapshot(struct pcb *);
/netbsd-current/external/gpl2/lvm2/dist/include/
H A Dmetadata-exported.h238 * - snapshot (lv_name is 'snapshotN')
331 struct lv_segment *snapshot; member in struct:logical_volume
528 int snapshot; /* snap */ member in struct:lvcreate_params
541 uint32_t chunk_size; /* snapshot */
550 uint32_t voriginextents; /* snapshot */
551 uint64_t voriginsize; /* snapshot */
622 /* Given a cow LV, return return the snapshot lv_segment that uses it */
/netbsd-current/external/gpl2/lvm2/dist/lib/format1/
H A Dimport-export.c540 lvdl->lvd.lv_chunk_size = ll->lv->snapshot->chunk_size;
542 lvnum_from_lvid(&ll->lv->snapshot->origin->lvid);
606 "for snapshot '%s'.", lvd->lv_name);
610 /* we may have already added this snapshot */
614 /* insert the snapshot */
618 log_error("Couldn't add snapshot.");
/netbsd-current/external/gpl2/lvm2/dist/lib/metadata/
H A Dmetadata-exported.h238 * - snapshot (lv_name is 'snapshotN')
331 struct lv_segment *snapshot; member in struct:logical_volume
528 int snapshot; /* snap */ member in struct:lvcreate_params
541 uint32_t chunk_size; /* snapshot */
550 uint32_t voriginextents; /* snapshot */
551 uint64_t voriginsize; /* snapshot */
622 /* Given a cow LV, return return the snapshot lv_segment that uses it */
H A Dlv_manip.c223 segtype = get_segtype_from_string(lv->vg->cmd, "snapshot");
225 log_error("Failed to find snapshot segtype");
233 log_error("Couldn't allocate new snapshot segment.");
850 /* FIXME Add snapshot cow LVs etc. */
1876 lv->snapshot = NULL;
2071 log_error("Can't remove logical volume \"%s\" under snapshot",
2125 log_verbose("Removing snapshot %s", lv->name);
2145 log_error("Failed to refresh %s without snapshot.", origin->name);
2165 /* remove snapshot LVs first */
2383 log_error("Can't move snapshot segmen
[all...]
/netbsd-current/usr.sbin/sysinst/
H A Dmsg.entropy.pl122 generator you can create an entropy snapshot like this:}
/netbsd-current/games/trek/
H A Devents.c400 case E_SNAP: /* take a snapshot of the galaxy */
402 p = (char *) Etc.snapshot;
/netbsd-current/external/cddl/osnet/dist/lib/pyzfs/common/
H A Dallow.py207 snapshot="",
220 hold=_("Allows adding a user hold to a snapshot"),
221 release=_("Allows releasing a user hold which\n\t\t\t\tmight destroy the snapshot"),
/netbsd-current/external/cddl/osnet/dist/uts/common/fs/zfs/
H A Ddsl_prop.c75 int intsz, int numints, void *buf, char *setpoint, boolean_t snapshot)
101 if (dd != target || snapshot) {
497 * that the dataset for a snapshot has not
728 * It's a snapshot; nothing can inherit this
924 DSL_PROP_GET_SNAPSHOT = 0x2, /* snapshot dataset */
74 dsl_prop_get_dd(dsl_dir_t *dd, const char *propname, int intsz, int numints, void *buf, char *setpoint, boolean_t snapshot) argument
/netbsd-current/external/cddl/osnet/dist/cmd/zfs/
H A Dzfs_main.c190 { "snapshot", zfs_do_snapshot, HELP_SNAPSHOT },
239 "<snapshot> <filesystem|volume>\n"));
255 "[filesystem|volume|snapshot] ...\n"));
258 "<filesystem|volume|snapshot> ...\n"));
269 "[filesystem|volume|snapshot] ...\n"));
277 "snapshot>\n"
278 "\treceive|recv [-vnsFu] [-o origin=<snapshot>] [-d | -e] "
282 return (gettext("\trename [-f] <filesystem|volume|snapshot> "
283 "<filesystem|volume|snapshot>\n"
285 "\trename -r <snapshot> <snapsho
3251 char *snapshot = NULL; local
5730 char *snapshot = argv[i]; local
[all...]

Completed in 313 milliseconds

1234