Searched refs:snapshot (Results 1 - 25 of 87) sorted by relevance

1234

/netbsd-current/external/gpl2/lvm2/dist/daemons/dmeventd/plugins/
H A DMakefile20 SUBDIRS += mirror snapshot
H A DMakefile.in20 SUBDIRS += mirror snapshot
/netbsd-current/external/gpl2/lvm2/dist/lib/metadata/
H A Dsnapshot_manip.c30 return lv->snapshot ? 1 : 0;
54 /* Given a cow LV, return the snapshot lv_segment that uses it */
57 return lv->snapshot;
63 return lv->snapshot->origin;
75 cow->snapshot = seg;
99 log_error("'%s' is already in use as a snapshot.", cow->name);
108 if (!(snap = lv_create_empty("snapshot%d",
125 dm_list_del(&cow->snapshot->origin_list);
126 cow->snapshot->origin->origin_count--;
128 if (!lv_remove(cow->snapshot
[all...]
/netbsd-current/distrib/vax/tk50/
H A DMakefile22 dd if=${DESTDIR}/snapshot/bin.tar.gz of=/dev/nr${TAPEDEV} bs=64k
23 dd if=${DESTDIR}/snapshot/dev.tar.gz of=/dev/nr${TAPEDEV} bs=64k
24 dd if=${DESTDIR}/snapshot/etc.tar.gz of=/dev/nr${TAPEDEV} bs=64k
25 dd if=${DESTDIR}/snapshot/sbin.tar.gz of=/dev/nr${TAPEDEV} bs=64k
26 dd if=${DESTDIR}/snapshot/usr.bin.tar.gz of=/dev/nr${TAPEDEV} bs=64k
27 dd if=${DESTDIR}/snapshot/usr.games.tar.gz of=/dev/nr${TAPEDEV} bs=64k
28 dd if=${DESTDIR}/snapshot/usr.include.tar.gz of=/dev/nr${TAPEDEV} bs=64k
29 dd if=${DESTDIR}/snapshot/usr.lib.tar.gz of=/dev/nr${TAPEDEV} bs=64k
30 dd if=${DESTDIR}/snapshot/usr.libexec.tar.gz of=/dev/nr${TAPEDEV} bs=64k
31 dd if=${DESTDIR}/snapshot/us
[all...]
/netbsd-current/sys/rump/dev/lib/libfss/
H A DMakefile7 COMMENT=File system snapshot device
/netbsd-current/external/gpl3/gcc/dist/maintainer-scripts/
H A Dupdate_version_git9 if [ -d /sourceware/snapshot-tmp/gcc ]; then
10 TMPDIR=/sourceware/snapshot-tmp/gcc
/netbsd-current/external/gpl2/lvm2/dist/lib/snapshot/
H A DMakefile.in20 SOURCES = snapshot.c
H A DMakefile20 SOURCES = snapshot.c
/netbsd-current/external/gpl3/gdb.old/dist/sim/lm32/
H A Ddv-lm32timer.c32 unsigned int snapshot; member in struct:lm32timer
62 if (timer->snapshot)
65 timer->snapshot--;
70 timer->snapshot = timer->period;
74 if ((timer->snapshot == 0) && (timer->control & 1))
154 value = timers->snapshot;
214 timers->snapshot = 0;
/netbsd-current/external/gpl3/gdb/dist/sim/lm32/
H A Ddv-lm32timer.c35 unsigned int snapshot; member in struct:lm32timer
65 if (timer->snapshot)
68 timer->snapshot--;
73 timer->snapshot = timer->period;
77 if ((timer->snapshot == 0) && (timer->control & 1))
157 value = timers->snapshot;
217 timers->snapshot = 0;
/netbsd-current/sbin/fsck_msdos/
H A DMakefile7 SRCS= main.c check.c boot.c fat.c dir.c fsutil.c snapshot.c
/netbsd-current/external/ibm-public/postfix/dist/src/global/
H A Dmail_version.h84 char *snapshot; /* 20111209-nonprod */ member in struct:__anon15
H A Dmail_version.c16 /* char *snapshot; /* null or snapshot info */
51 /* it is a string with the snapshot release date plus some
148 mp->snapshot = 0;
149 else if ((mp->snapshot = mystrtok(&cp, "")) == 0)
150 return ("missing snapshot field");
223 vstream_printf("snapshot: %s\n", mp->snapshot);
/netbsd-current/external/bsd/libpcap/dist/
H A Dpcap-nit.c187 if (caplen > p->snapshot)
188 caplen = p->snapshot;
230 nioc.nioc_snaplen = p->snapshot;
282 * Turn a negative snapshot value (invalid), a snapshot value of
286 * If some application really *needs* a bigger snapshot
289 if (p->snapshot <= 0 || p->snapshot > MAXIMUM_SNAPLEN)
290 p->snapshot = MAXIMUM_SNAPLEN;
292 if (p->snapshot < 9
[all...]
H A Dpcap-snoop.c115 if (cc == (p->snapshot + sizeof(struct snoopheader)) &&
116 (datalen < p->snapshot))
119 caplen = (datalen < p->snapshot) ? datalen : p->snapshot;
332 * Turn a negative snapshot value (invalid), a snapshot value of
336 * If some application really *needs* a bigger snapshot
339 if (p->snapshot <= 0 || p->snapshot > MAXIMUM_SNAPLEN)
340 p->snapshot
[all...]
H A Dsf-pcap.c264 p->snapshot = pcap_adjust_snapshot(p->linktype, hdr.snaplen);
375 * If it was done in cooked mode, p->snapshot was
378 * would be p->snapshot. However, a faked Ethernet
381 * would be p->snapshot + 14.
385 * cooked mode, and add 14 to the snapshot length.
386 * That means that, for a raw capture, the snapshot
391 * But don't grow the snapshot length past the
394 if (p->snapshot <= INT_MAX - 14)
395 p->snapshot += 14;
397 p->snapshot
[all...]
H A Dpcap-septel.c124 caplen = p->snapshot ;
196 * Turn a negative snapshot value (invalid), a snapshot value of
200 * If some application really *needs* a bigger snapshot
203 if (handle->snapshot <= 0 || handle->snapshot > MAXIMUM_SNAPLEN)
204 handle->snapshot = MAXIMUM_SNAPLEN;
H A Dpcap-snit.c146 * loop through each snapshot in the chunk
193 /* next snapshot */
197 if (caplen > p->snapshot)
198 caplen = p->snapshot;
308 * Turn a negative snapshot value (invalid), a snapshot value of
312 * If some application really *needs* a bigger snapshot
315 if (p->snapshot <= 0 || p->snapshot > MAXIMUM_SNAPLEN)
316 p->snapshot
[all...]
H A Dpcap-haiku.cpp83 if (captureLength > handle->snapshot)
84 captureLength = handle->snapshot;
163 * Turn a negative snapshot value (invalid), a snapshot value of
167 * If some application really *needs* a bigger snapshot
170 if (handle->snapshot <= 0 || handle->snapshot > MAXIMUM_SNAPLEN)
171 handle->snapshot = MAXIMUM_SNAPLEN;
H A Dpcap-bt-monitor-linux.c116 iv[1].iov_len = handle->snapshot;
197 * Turn a negative snapshot value (invalid), a snapshot value of
201 * If some application really *needs* a bigger snapshot
204 if (handle->snapshot <= 0 || handle->snapshot > MAXIMUM_SNAPLEN)
205 handle->snapshot = MAXIMUM_SNAPLEN;
207 handle->bufsize = BT_CONTROL_SIZE + sizeof(pcap_bluetooth_linux_monitor_header) + handle->snapshot;
/netbsd-current/sbin/dump/
H A DMakefile31 SRCS= itime.c main.c optr.c dumprmt.c rcache.c snapshot.c tape.c \
/netbsd-current/tests/fs/common/
H A Dsnapshot.c1 /* $NetBSD: snapshot.c,v 1.8 2019/07/09 16:24:01 maya Exp $ */
17 ATF_TC_WITH_CLEANUP(snapshot); variable
18 ATF_TC_HEAD(snapshot, tc)
21 atf_tc_set_md_var(tc, "descr", "basic snapshot features");
35 ATF_TC_BODY(snapshot, tc)
77 atf_tc_fail_errno("create snapshot");
97 /* check that new files are invisible in the snapshot */
100 atf_tc_fail("newfile exists in snapshot");
104 /* check that removed files are still visible in the snapshot */
107 atf_tc_fail_errno("unlinked file no longer in snapshot");
[all...]
/netbsd-current/external/gpl2/lvm2/dist/lib/
H A DMakefile29 SUBDIRS += snapshot
126 SOURCES += snapshot/snapshot.c
H A DMakefile.in29 SUBDIRS += snapshot
126 SOURCES += snapshot/snapshot.c
/netbsd-current/sbin/fsck_ffs/
H A DMakefile.common10 partutil.c snapshot.c quota2.c quota2_subr.c

Completed in 253 milliseconds

1234