| /NextBSD/bin/sh/tests/builtins/ |
| HD | 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 …]
|
| HD | 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
|
| /NextBSD/contrib/ofed/management/infiniband-diags/src/ |
| HD | ibsendtrap.c | 93 trap_def_t traps[2] = { variable 106 for (i = 0; traps[i].trap_name; i++) { in usage() 107 fprintf(stderr, " %s\n", traps[i].trap_name); in usage() 110 traps[0].trap_name); in usage() 119 for (i = 0; traps[i].trap_name; i++) { in send_trap() 120 if (strcmp(traps[i].trap_name, trap_name) == 0) { in send_trap() 121 return (traps[i].send_func()); in send_trap() 167 trap_name = traps[0].trap_name; in main()
|
| /NextBSD/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 …]
|
| /NextBSD/contrib/gcc/ |
| HD | 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 …]
|
| /NextBSD/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 …]
|
| /NextBSD/contrib/gcclibs/libdecnumber/ |
| HD | 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()
|
| HD | decContext.h | 78 uint32_t traps; /* trap-enabler flags */ member
|
| /NextBSD/contrib/libc++/include/ |
| D | limits | 58 static constexpr bool traps = false; 180 static _LIBCPP_CONSTEXPR const bool traps = false; 241 static _LIBCPP_CONSTEXPR const bool traps = true; 243 static _LIBCPP_CONSTEXPR const bool traps = false; 292 static _LIBCPP_CONSTEXPR const bool traps = false; 338 static _LIBCPP_CONSTEXPR const bool traps = false; 384 static _LIBCPP_CONSTEXPR const bool traps = false; 434 static _LIBCPP_CONSTEXPR const bool traps = false; 480 static _LIBCPP_CONSTEXPR const bool traps = __base::traps; 526 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::traps; [all …]
|
| /NextBSD/contrib/bsnmp/snmp_mibII/ |
| HD | mibII_interfaces.c | 47 int traps; member 113 ifp->trap_enable = ifc->traps; in ifchange_func() 417 ifc->traps = (value->v.integer == 1) ? 1 : 0; in op_ifxtable()
|
| /NextBSD/contrib/groff/doc/ |
| HD | groff-3 | 351 * blank line traps: Blank Line Traps. (line 6) 364 * bp request, and traps (.pe): Page Location Traps. (line 139) 610 * discarded space in traps: Manipulating Spacing. 620 * diversion traps: Diversion Traps. (line 6) 636 * diversions, and traps: Page Location Traps. (line 163) 670 * dumping traps (ptr): Debugging. (line 79) 691 * enabling vertical position traps (vpt): Page Location Traps. 708 * end-of-input traps: End-of-input Traps. (line 6) 1056 * input line traps: Input Line Traps. (line 6) 1057 * input line traps and interrupted lines (itc): Input Line Traps. [all …]
|
| HD | groff-2 | 274 These traps can occur at a given location on the page, at a given 295 "Page location traps" perform an action when `gtroff' reaches or passes 296 a certain vertical location on the page. Page location traps have a 307 Enable vertical position traps if FLAG is non-zero, or disables 308 them otherwise. Vertical position traps are traps set by the `wh' 310 position traps. The parameter that controls whether vertical 311 position traps are enabled is global. Initially vertical position 312 traps are enabled. The current setting of this is available in the 350 do so, the traps must be defined at different locations, then 352 would replace the first one. Earlier defined traps hide later [all …]
|
| /NextBSD/contrib/bsnmp/snmpd/ |
| HD | BEGEMOT-SNMPD.txt | 130 "The trap sink for v1 traps." 155 "A table with destinations for standard traps." 180 traps." 189 traps."
|
| HD | snmpd.config | 81 # send traps to the traphost
|
| /NextBSD/sys/arm/arm/ |
| HD | trap.c | 207 vmexp.traps++; in abort_handler() 626 uvmexp.traps++; in prefetch_abort_handler()
|
| /NextBSD/lib/libz/contrib/asm686/ |
| HD | README.686 | 10 PPro's speed traps. My own tests show a speedup of around 10-20% at
|
| /NextBSD/contrib/ipfilter/ |
| HD | WhatsNew50.txt | 17 * ipmon.conf can now be used to generate SNMPv1 and SNMPv2 traps using
|
| /NextBSD/lib/libc/softfloat/templates/ |
| HD | 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
|
| /NextBSD/contrib/bsnmp/snmp_ntp/ |
| HD | BEGEMOT-NTP-MIB.txt | 140 "Enables the sending of traps when either the peer is lost/
|
| /NextBSD/lib/libc/softfloat/ |
| HD | 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
|
| /NextBSD/contrib/gdb/gdb/ |
| HD | minimon.h | 405 INT32 traps; member
|
| /NextBSD/contrib/groff/src/roff/troff/ |
| HD | TODO | 89 Possibly allow multiple simultaneous input line traps.
|
| /NextBSD/contrib/gcc/config/mips/ |
| HD | mips.opt | 50 mdivide-traps
|
| /NextBSD/contrib/ofed/management/doc/ |
| HD | ibtracer.txt | 28 Only the VendorGet method needs to be supported by this agent. No traps
|
| /NextBSD/etc/ |
| HD | snmpd.config | 104 # send traps to the traphost
|