Searched refs:capture (Results 1 - 21 of 21) sorted by relevance

/freebsd-10.2-release/etc/
H A Dddb.conf12 script kdb.enter.panic=textdump set; capture on; run lockinfo; show pcpu; bt; ps; alltrace; capture off; call doadump; reset
/freebsd-10.2-release/tools/tools/ether_reflect/
H A Dether_reflect.c72 pcap_t *capture; local
111 if ((capture = pcap_open_live(interface, SNAPLEN, promisc, timeout,
120 if (pcap_compile(capture, &program, in_string, 1, netmask) < 0)
123 if (pcap_setfilter(capture, &program) < 0)
126 if (pcap_setdirection(capture, PCAP_D_IN) < 0)
130 error = pcap_next_ex(capture, &header,
160 if (pcap_inject(capture, packet, header->len) < 0)
162 pcap_perror(capture, "pcap_inject");
/freebsd-10.2-release/sys/contrib/octeon-sdk/
H A Dcvmx-helper-jtag.c222 jtgd.s.capture = 1;
229 } while (jtgd.s.capture);
H A Dcvmx-sriomaintx-defs.h1299 (use only first capture register)
1348 Packet/control symbol capture registers contain
1350 capture register 0 will contain meaningful
1352 to allow capture of other errors. */
1367 (use only first capture register)
1375 Packet/control symbol capture registers contain
1377 capture register 0 will contain meaningful
1379 to allow capture of other errors. */
2150 lock original request transaction capture
2154 and lock transaction capture informatio
2226 uint32_t capture : 32; /**< Bytes 4 thru 7 of the packet header. */ member in struct:cvmx_sriomaintx_erb_pack_capt_1::cvmx_sriomaintx_erb_pack_capt_1_s
2255 uint32_t capture : 32; /**< Bytes 8 thru 11 of the packet header. */ member in struct:cvmx_sriomaintx_erb_pack_capt_2::cvmx_sriomaintx_erb_pack_capt_2_s
2284 uint32_t capture : 32; /**< Bytes 12 thru 15 of the packet header. */ member in struct:cvmx_sriomaintx_erb_pack_capt_3::cvmx_sriomaintx_erb_pack_capt_3_s
2314 uint32_t capture : 32; /**< Control Character and Control Symbol or Bytes 0 to member in struct:cvmx_sriomaintx_erb_pack_sym_capt::cvmx_sriomaintx_erb_pack_sym_capt_s
[all...]
H A Dcvmx-ciu-defs.h10649 uint64_t capture : 1; /**< Perform JTAG capture operation (self-clearing when member in struct:cvmx_ciu_qlm_jtgd::cvmx_ciu_qlm_jtgd_s
10669 uint64_t capture : 1;
10674 uint64_t capture : 1; /**< Perform JTAG capture operation (self-clearing when member in struct:cvmx_ciu_qlm_jtgd::cvmx_ciu_qlm_jtgd_cn52xx
10694 uint64_t capture : 1;
10700 uint64_t capture : 1; /**< Perform JTAG capture operation (self-clearing when member in struct:cvmx_ciu_qlm_jtgd::cvmx_ciu_qlm_jtgd_cn56xx
10720 uint64_t capture : 1;
10725 uint64_t capture member in struct:cvmx_ciu_qlm_jtgd::cvmx_ciu_qlm_jtgd_cn56xxp1
10745 uint64_t capture : 1; /**< Perform JTAG capture operation (self-clearing when member in struct:cvmx_ciu_qlm_jtgd::cvmx_ciu_qlm_jtgd_cn61xx
[all...]
/freebsd-10.2-release/contrib/bmake/mk/
H A Dlibs.mk20 # In meta mode, we can capture dependenices for _one_ of the progs.
70 # We cannot capture dependencies for meta mode here
H A Dprogs.mk20 # In meta mode, we can capture dependenices for _one_ of the progs.
69 # We cannot capture dependencies for meta mode here
H A Dgendirdeps.mk266 # if you want to capture SRC_DIRDEPS in .MAKE.DEPENDFILE put
/freebsd-10.2-release/contrib/atf/atf-c/detail/
H A Dprocess_test.c1054 TC_FORK_STREAMS(capture, CAPTURE, capture, CAPTURE);
1055 TC_FORK_STREAMS(capture, CAPTURE, connect, CONNECT);
1056 TC_FORK_STREAMS(capture, CAPTURE, default, DEFAULT);
1057 TC_FORK_STREAMS(capture, CAPTURE, inherit, INHERIT);
1058 TC_FORK_STREAMS(capture, CAPTURE, redirect_fd, REDIRECT_FD);
1059 TC_FORK_STREAMS(capture, CAPTURE, redirect_path, REDIRECT_PATH);
1060 TC_FORK_STREAMS(connect, CONNECT, capture, CAPTURE);
1066 TC_FORK_STREAMS(default, DEFAULT, capture, CAPTURE);
1072 TC_FORK_STREAMS(inherit, INHERIT, capture, CAPTUR
[all...]
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGBlocks.cpp184 /// A chunk of data that we actually have to capture in the block.
194 const BlockDecl::Capture *capture,
197 Capture(capture), Type(type) {}
241 /// Determines if the given type is safe for constant capture in C++.
283 // invalid?), it's not clear what we should do. Maybe capture as
359 "Can't capture 'this' outside a method");
402 // If we have a lifetime qualifier, honor it for capture purposes.
592 CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
593 if (capture.isConstant()) continue;
612 capture
192 BlockLayoutChunk(CharUnits align, CharUnits size, Qualifiers::ObjCLifetime lifetime, const BlockDecl::Capture *capture, llvm::Type *type) argument
747 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
984 const CGBlockInfo::Capture &capture = BlockInfo->getCapture(variable); local
1183 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
1224 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
1333 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
1504 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
[all...]
H A DCGDebugInfo.cpp2980 // 'this' capture.
2993 const BlockDecl::Capture &capture = *i; local
2994 const VarDecl *variable = capture.getVariable();
3004 chunk.Capture = &capture;
3014 const BlockDecl::Capture *capture = i->Capture; local
3016 // If we have a null capture, this must be the C++ 'this' capture.
3017 if (!capture) {
3027 const VarDecl *variable = capture->getVariable();
3031 if (capture
[all...]
H A DCGObjCMac.cpp1966 // Ignore the optional 'this' capture: C++ objects are not assumed
1975 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
1978 if (capture.isConstant()) continue;
1980 uint64_t fieldOffset = layout->getElementOffset(capture.getIndex());
2482 // Ignore the optional 'this' capture: C++ objects are not assumed
2494 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
2497 if (capture.isConstant()) continue;
2500 CharUnits::fromQuantity(layout->getElementOffset(capture.getIndex()));
3845 // Create the fragile hazards. Note that this will not capture any
3847 // capture th
[all...]
/freebsd-10.2-release/contrib/bmake/
H A Dbsd.after-import.mk6 # capture the generated files we need, and add an after-import
64 # These are the simple files we want to capture
/freebsd-10.2-release/share/mk/
H A Dbsd.progs.mk23 # In meta mode, we can capture dependenices for _one_ of the progs.
71 # We cannot capture dependencies for meta mode here
/freebsd-10.2-release/usr.sbin/crashinfo/
H A Dcrashinfo.sh307 echo "ddb capture buffer"
310 ddb capture -M $VMCORE -N $KERNEL print
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaPseudoObject.cpp229 OpaqueValueExpr *capture(Expr *op);
338 OpaqueValueExpr *PseudoOpBuilder::capture(Expr *e) { function in class:PseudoOpBuilder
359 // If the expression hasn't already been captured, just capture it
362 OpaqueValueExpr *cap = capture(e);
405 OpaqueValueExpr *capturedRHS = capture(RHS);
465 result = capture(result.take());
645 // If we have a base, capture it in an OVE and rebuild the syntactic
648 InstanceReceiver = capture(RefExpr->getBase());
696 /// \param captureSetValueAsResult If true, capture the actual
968 InstanceBase = capture(RefExp
[all...]
/freebsd-10.2-release/sys/ddb/
H A Ddb_capture.c28 * DDB capture support: capture kernel debugger output into a fixed-size
62 static MALLOC_DEFINE(M_DDB_CAPTURE, "ddb_capture", "DDB capture buffer");
77 static int db_capture_inpager; /* Suspend capture in pager. */
78 static int db_capture_inprogress; /* DDB capture currently in progress. */
83 static SYSCTL_NODE(_debug_ddb, OID_AUTO, capture, CTLFLAG_RW, 0,
84 "DDB capture options");
87 &db_capture_bufoff, 0, "Bytes of data in DDB capture buffer");
91 "Maximum value for debug.ddb.capture.bufsize");
94 &db_capture_inprogress, 0, "DDB output capture i
[all...]
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriterDecl.cpp838 const BlockDecl::Capture &capture = *i; local
839 Writer.AddDeclRef(capture.getVariable(), Record);
842 if (capture.isByRef()) flags |= 1;
843 if (capture.isNested()) flags |= 2;
844 if (capture.hasCopyExpr()) flags |= 4;
847 if (capture.hasCopyExpr()) Writer.AddStmt(capture.getCopyExpr());
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/AST/
H A DASTDumper.cpp1452 OS << "capture this";
1457 OS << "capture";
/freebsd-10.2-release/sys/contrib/v4l/
H A Dvideodev2.h88 #define VID_TYPE_CAPTURE 1 /* Can capture */
97 #define VID_TYPE_SUBCAPTURE 512 /* Can capture subareas of the image */
255 #define V4L2_CAP_VIDEO_CAPTURE 0x00000001 /* Is a video capture device */
258 #define V4L2_CAP_VBI_CAPTURE 0x00000010 /* Is a raw VBI capture device */
260 #define V4L2_CAP_SLICED_VBI_CAPTURE 0x00000040 /* Is a sliced VBI capture device */
262 #define V4L2_CAP_RDS_CAPTURE 0x00000100 /* RDS data capture */
1626 struct v4l2_captureparm capture; member in union:v4l2_streamparm::__anon7662
/freebsd-10.2-release/contrib/subversion/
H A DMakefile.in593 lcov --capture -d . -b . -o gcov-lcov.dat > gcov-lcov.log

Completed in 423 milliseconds