| /freebsd-12-stable/bin/sh/tests/builtins/ |
| D | trap16.0 | 3 traps=$(${SH} -c 'trap "echo bad" 0; trap - 0; trap') 4 [ -z "$traps" ] || exit 1 5 traps=$(${SH} -c 'trap "echo bad" 0; trap "" 0; trap') 7 [ "$traps" = "$expected_traps" ] || exit 2 8 traps=$(${SH} -c 'trap "echo bad" 0; trap 0; trap') 9 [ -z "$traps" ] || exit 3 10 traps=$(${SH} -c 'trap "echo bad" 0; trap -- 0; trap') 11 [ -z "$traps" ] || exit 4 12 traps=$(${SH} -c 'trap "echo bad" 0 1 2; trap - 0 1 2; trap') 13 [ -z "$traps" ] || exit 5 [all …]
|
| D | trap2.0 | 8 traps=$(trap) 9 if [ "$teststring" != "-" ] && [ -z "$traps" ]; then 12 # subshell and subshells shall reset traps. However, an example 19 eval "$traps" 21 if [ "$traps" != "$traps2" ]; then
|
| /freebsd-12-stable/contrib/libstdc++/src/ |
| D | limits.cc | 60 const bool __numeric_limits_base::traps; member in __numeric_limits_base 84 const bool numeric_limits<bool>::traps; member in numeric_limits<bool> 108 const bool numeric_limits<char>::traps; member in numeric_limits<char> 132 const bool numeric_limits<signed char>::traps; member in numeric_limits<signed char> 156 const bool numeric_limits<unsigned char>::traps; member in numeric_limits<unsigned char> 182 const bool numeric_limits<wchar_t>::traps; member in numeric_limits<wchar_t> 207 const bool numeric_limits<short>::traps; member in numeric_limits<short> 231 const bool numeric_limits<unsigned short>::traps; member in numeric_limits<unsigned short> 255 const bool numeric_limits<int>::traps; member in numeric_limits<int> 279 const bool numeric_limits<unsigned int>::traps; member in numeric_limits<unsigned int> [all …]
|
| /freebsd-12-stable/contrib/gcc/ |
| D | dfp.c | 84 context->traps = 0; in decimal_from_decnumber() 97 set.traps = 0; in decimal_real_from_string() 114 set.traps = 0; in decimal_to_decnumber() 154 set.traps = 0; in encode_decimal32() 176 set.traps = 0; in decode_decimal32() 198 set.traps = 0; in encode_decimal64() 226 set.traps = 0; in decode_decimal64() 254 set.traps = 0; in encode_decimal128() 286 set.traps = 0; in decode_decimal128() 362 set.traps = 0; in decimal_do_compare() [all …]
|
| /freebsd-12-stable/contrib/libstdc++/include/std/ |
| D | std_limits.h | 264 static const bool traps = false; member 364 static const bool traps = __glibcxx_integral_traps; 415 static const bool traps = __glibcxx_integral_traps; 466 static const bool traps = __glibcxx_integral_traps; 517 static const bool traps = __glibcxx_integral_traps; 568 static const bool traps = __glibcxx_integral_traps; 619 static const bool traps = __glibcxx_integral_traps; 670 static const bool traps = __glibcxx_integral_traps; 721 static const bool traps = __glibcxx_integral_traps; 772 static const bool traps = __glibcxx_integral_traps; [all …]
|
| /freebsd-12-stable/contrib/ofed/infiniband-diags/src/ |
| D | ibsendtrap.c | 215 static const trap_def_t traps[] = { variable 231 for (i = 0; traps[i].trap_name; i++) in process_send_trap() 232 if (strcmp(traps[i].trap_name, trap_name) == 0) in process_send_trap() 233 return send_trap(traps[i].build_func); in process_send_trap() 247 for (i = 0; traps[i].trap_name; i++) { in main() 249 " %s\n", traps[i].trap_name); in main() 254 "\n default behavior is to send \"%s\"", traps[0].trap_name); in main() 262 trap_name = argv[0] ? argv[0] : traps[0].trap_name; in main()
|
| /freebsd-12-stable/contrib/gcclibs/libdecnumber/ |
| D | decContext.c | 60 context->traps = DEC_Errors; /* all but informational */ in decContextDefault() 76 context->traps = 0; /* no traps set */ in decContextDefault() 87 context->traps = 0; /* no traps set */ in decContextDefault() 98 context->traps = 0; /* no traps set */ in decContextDefault() 225 if (status & context->traps) in decContextSetStatus()
|
| D | decContext.h | 78 uint32_t traps; /* trap-enabler flags */ member
|
| /freebsd-12-stable/contrib/llvm-project/libcxx/include/ |
| D | limits | 57 static constexpr bool traps = false; 182 static _LIBCPP_CONSTEXPR const bool traps = false; 244 static _LIBCPP_CONSTEXPR const bool traps = true; 246 static _LIBCPP_CONSTEXPR const bool traps = false; 295 static _LIBCPP_CONSTEXPR const bool traps = false; 341 static _LIBCPP_CONSTEXPR const bool traps = false; 387 static _LIBCPP_CONSTEXPR const bool traps = false; 437 static _LIBCPP_CONSTEXPR const bool traps = false; 483 static _LIBCPP_CONSTEXPR const bool traps = __base::traps; 529 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::traps; [all …]
|
| /freebsd-12-stable/contrib/bsnmp/snmp_mibII/ |
| D | mibII_interfaces.c | 47 int traps; member 113 ifp->trap_enable = ifc->traps; in ifchange_func() 412 ifc->traps = (value->v.integer == 1) ? 1 : 0; in op_ifxtable()
|
| /freebsd-12-stable/sys/arm/arm/ |
| D | trap-v4.c | 201 vmexp.traps++; in abort_handler() 613 uvmexp.traps++; in prefetch_abort_handler()
|
| /freebsd-12-stable/contrib/bsnmp/snmpd/ |
| D | BEGEMOT-SNMPD.txt | 137 "The trap sink for v1 traps." 162 "A table with destinations for standard traps." 187 traps." 196 traps."
|
| D | snmpd.config | 92 # send traps to the traphost
|
| /freebsd-12-stable/contrib/ipfilter/ |
| D | WhatsNew50.txt | 17 * ipmon.conf can now be used to generate SNMPv1 and SNMPv2 traps using
|
| /freebsd-12-stable/lib/libc/softfloat/templates/ |
| D | softfloat-specialize | 43 Raises the exceptions specified by `flags'. Floating-point traps can be 45 substitute a result value. If traps are not implemented, this routine
|
| /freebsd-12-stable/contrib/bsnmp/snmp_ntp/ |
| D | BEGEMOT-NTP-MIB.txt | 140 "Enables the sending of traps when either the peer is lost/
|
| /freebsd-12-stable/lib/libc/softfloat/ |
| D | softfloat-specialize | 57 Raises the exceptions specified by `flags'. Floating-point traps can be 59 substitute a result value. If traps are not implemented, this routine
|
| /freebsd-12-stable/contrib/gdb/gdb/ |
| D | minimon.h | 405 INT32 traps; member
|
| /freebsd-12-stable/contrib/gcc/config/mips/ |
| D | mips.opt | 50 mdivide-traps
|
| /freebsd-12-stable/contrib/bsnmp/ |
| D | NEWS | 20 Fix link traps to be more RFC conform (thanks to glebius@freebsd.org)
|
| /freebsd-12-stable/usr.sbin/bsnmpd/bsnmpd/ |
| D | snmpd.config | 116 # send traps to the traphost
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| D | WebAssemblyInstrConv.td | 138 // Conversion from floating point to integer traps on overflow and invalid.
|
| /freebsd-12-stable/contrib/ntp/ntpdc/ |
| D | ntpdc_ops.c | 77 static void traps (struct parse *, FILE *); 187 { "traps", traps, { NO, NO, NO, NO }, 2363 traps( in traps() function
|
| D | ntpdc-opts.def | 755 .It Ic traps 756 Display the traps set in the server.
|
| /freebsd-12-stable/contrib/tcp_wrappers/ |
| D | README | 91 installing booby traps. 239 feature may be used to install "booby traps". For details, see the 504 booby traps", UNIX Security Symposium III Proceedings (Baltimore), 718 traps: it gives better protection against nasty stuff that remote
|