Searched refs:snapshot (Results 26 - 50 of 87) sorted by relevance

1234

/netbsd-current/sbin/dump_lfs/
H A DMakefile18 SRCS= itime.c main.c optr.c dumprmt.c rcache.c snapshot.c tape.c \
/netbsd-current/external/bsd/libpcap/dist/
H A Dpcap-pf.c186 if (buflen > pc->snapshot)
187 buflen = pc->snapshot;
351 * Turn a negative snapshot value (invalid), a snapshot value of
355 * If some application really *needs* a bigger snapshot
358 if (p->snapshot <= 0 || p->snapshot > MAXIMUM_SNAPLEN)
359 p->snapshot = MAXIMUM_SNAPLEN;
479 /* packetfilter includes the padding in the snapshot */
480 p->snapshot
[all...]
H A Dpcap-usb-linux.c247 * snapshot length, we have the biggest payload we want (we
255 if (handle->snapshot < header_size)
256 handle->snapshot = header_size;
257 /* The maximum snapshot size is small enough that this won't overflow */
258 ring_size = (handle->snapshot - header_size) * 5;
269 * snapshot length to the value that would give us a
273 handle->snapshot = header_size + (MAX_RING_SIZE/5);
277 * the snapshot length unchanged, so we show the
279 * snapshot length.
299 * Attempt to set the ring size as appropriate for the snapshot
[all...]
H A Dpcap-bt-linux.c216 * Turn a negative snapshot value (invalid), a snapshot value of
220 * If some application really *needs* a bigger snapshot
223 if (handle->snapshot <= 0 || handle->snapshot > MAXIMUM_SNAPLEN)
224 handle->snapshot = MAXIMUM_SNAPLEN;
227 handle->bufsize = BT_CTRL_SIZE+sizeof(pcap_bluetooth_h4_header)+handle->snapshot;
337 iv.iov_len = handle->snapshot;
H A Dpcap-libdlpi.c155 * Turn a negative snapshot value (invalid), a snapshot value of
159 * If some application really *needs* a bigger snapshot
162 if (p->snapshot <= 0 || p->snapshot > MAXIMUM_SNAPLEN)
163 p->snapshot = MAXIMUM_SNAPLEN;
227 if (pcap_conf_bufmod(p, p->snapshot) != 0) {
H A Dpcap-dbus.c95 /* pkth.caplen = min (payload_len, handle->snapshot); */
278 * Turn a negative snapshot value (invalid), a snapshot value of
282 if (handle->snapshot <= 0 || handle->snapshot > 134217728)
283 handle->snapshot = 134217728;
285 /* dbus_connection_set_max_message_size(handlep->conn, handle->snapshot); */
H A Dpcap-netmap.c247 * Turn a negative snapshot value (invalid), a snapshot value of
251 * If some application really *needs* a bigger snapshot
254 if (p->snapshot <= 0 || p->snapshot > MAXIMUM_SNAPLEN)
255 p->snapshot = MAXIMUM_SNAPLEN;
H A Ddlpisubs.c198 caplen = min(p->snapshot, len);
212 /* Insure caplen does not exceed snapshot */
213 if (pkthdr.caplen > (bpf_u_int32)p->snapshot)
214 pkthdr.caplen = (bpf_u_int32)p->snapshot;
H A Dpcap-snf.c196 if (caplen > p->snapshot)
197 caplen = p->snapshot;
300 * Turn a negative snapshot value (invalid), a snapshot value of
304 * If some application really *needs* a bigger snapshot
307 if (p->snapshot <= 0 || p->snapshot > MAXIMUM_SNAPLEN)
308 p->snapshot = MAXIMUM_SNAPLEN;
H A Dpcap-dos.c181 * Turn a negative snapshot value (invalid), a snapshot value of
185 * If some application really *needs* a bigger snapshot
188 if (pcap->snapshot <= 0 || pcap->snapshot > MAXIMUM_SNAPLEN)
189 pcap->snapshot = MAXIMUM_SNAPLEN;
191 if (pcap->snapshot < ETH_MIN+8)
192 pcap->snapshot = ETH_MIN+8;
194 if (pcap->snapshot > ETH_MAX) /* silently accept and truncate large MTUs */
195 pcap->snapshot
[all...]
H A Dpcap-netfilter-linux.c263 /* pkth.caplen = min (payload_len, handle->snapshot); */
588 * Turn a negative snapshot value (invalid), a snapshot value of
592 * If some application really *needs* a bigger snapshot
595 if (handle->snapshot <= 0 || handle->snapshot > MAXIMUM_SNAPLEN)
596 handle->snapshot = MAXIMUM_SNAPLEN;
599 handle->bufsize = 128 + handle->snapshot;
660 if (nflog_send_config_mode(handle, groups[i], NFULNL_COPY_PACKET, handle->snapshot) < 0) {
690 if (nfqueue_send_config_mode(handle, groups[i], NFQNL_COPY_PACKET, handle->snapshot) <
[all...]
H A Dpcap-dag.c672 if (caplen > p->snapshot)
673 caplen = p->snapshot;
866 * Turn a negative snapshot value (invalid), a snapshot value of
870 * If some application really *needs* a bigger snapshot
873 if (p->snapshot <= 0 || p->snapshot > MAXIMUM_SNAPLEN)
874 p->snapshot = MAXIMUM_SNAPLEN;
911 if (p->snapshot == 0 || p->snapshot > MAX_DAG_SNAPLE
[all...]
H A Dpcap-rdmasniff.c169 pkth.caplen = min(pkth.len, (u_int)handle->snapshot);
319 if (handle->snapshot <= 0 || handle->snapshot > RDMASNIFF_RECEIVE_SIZE)
320 handle->snapshot = RDMASNIFF_RECEIVE_SIZE;
H A Dpcap-dpdk.c384 // caplen = min(pkt_len, p->snapshot);
386 caplen = pkt_len < (uint32_t)p->snapshot ? pkt_len: (uint32_t)p->snapshot;
820 if (p->snapshot <= 0 || p->snapshot > MAXIMUM_SNAPLEN)
822 p->snapshot = MAXIMUM_SNAPLEN;
943 if (p->snapshot <=0 || p->snapshot> MAXIMUM_SNAPLEN)
945 p->snapshot = MAXIMUM_SNAPLEN;
/netbsd-current/external/gpl3/gdb.old/dist/gdb/contrib/ari/
H A Dupdate-web-ari.sh36 echo "Usage: $0 <snapshot/sourcedir> <tmpdir> <destdir> <project>" 1>&2
39 snapshot=$1 ; shift
57 if [ ! -r ${snapshot} ]
59 echo ERROR: Can not read snapshot file 1>&2
98 if [ -d ${snapshot} ]
101 srcdir=${snapshot}
122 case ${snapshot} in
123 *.tar.bz2 ) bzcat ${snapshot} ;;
124 *.tar ) cat ${snapshot} ;;
125 * ) ECHO Bad file ${snapshot} ; exi
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/contrib/ari/
H A Dupdate-web-ari.sh36 echo "Usage: $0 <snapshot/sourcedir> <tmpdir> <destdir> <project>" 1>&2
39 snapshot=$1 ; shift
57 if [ ! -r ${snapshot} ]
59 echo ERROR: Can not read snapshot file 1>&2
98 if [ -d ${snapshot} ]
101 srcdir=${snapshot}
122 case ${snapshot} in
123 *.tar.bz2 ) bzcat ${snapshot} ;;
124 *.tar ) cat ${snapshot} ;;
125 * ) ECHO Bad file ${snapshot} ; exi
[all...]
/netbsd-current/external/gpl2/lvm2/lib/liblvm/
H A DMakefile44 filter_netbsd.c snapshot.c mirrored.c dev_manager.c fs.c dev.c \
69 .PATH: ${LVM2_DISTDIR}/lib/snapshot
/netbsd-current/external/bsd/am-utils/dist/
H A DMakefile.am337 snapshot: dist install-snapshot
338 install-snapshot:
342 rm -f $(FTPTOP)/am-utils-6.1-snapshot.tar.gz && \
343 ln -s snapshots/$$snap $(FTPTOP)/am-utils-6.1-snapshot.tar.gz && \
346 test-snapshot: dist
/netbsd-current/external/gpl2/lvm2/dist/tools/
H A Dlvcreate.c40 if (lp->snapshot && !arg_count(cmd, virtualsize_ARG)) {
43 "the snapshot origin.");
400 lp->snapshot = 1;
418 if (lp->snapshot) {
436 if (!(lp->segtype = get_segtype_from_string(cmd, "snapshot")))
446 if (lp->snapshot) {
/netbsd-current/games/trek/
H A Dwarp.c176 p = (char *) Etc.snapshot;
H A Dtrek.h144 #define E_SNAP 9 /* take a snapshot for time warp */
256 char snap; /* set if snapshot taken */
309 /* other information kept in a snapshot */
322 /* Other stuff, not dumped in a snapshot */
329 char snapshot[sizeof Quad + sizeof Event + sizeof Now]; member in struct:Etc_struct
330 /* snapshot for time warp */
/netbsd-current/external/cddl/osnet/dist/uts/common/fs/zfs/sys/
H A Ddsl_prop.h84 boolean_t snapshot);
/netbsd-current/dist/pf/sbin/pflogd/
H A Dprivsep.c200 hpcap->snapshot = snap;
266 /* also set hpcap->snapshot in child */
268 hpcap->snapshot = snaplen;
/netbsd-current/external/gpl2/lvm2/dist/
H A DMakefile45 lib/snapshot \
/netbsd-current/external/gpl2/lvm2/dist/test/
H A Dlvm-utils.sh175 for i in $abs_top_builddir/dmeventd/mirror/*.so $abs_top_builddir/dmeventd/snapshot/*.so

Completed in 316 milliseconds

1234