| /freebsd/sys/contrib/dev/mediatek/mt76/ |
| H A D | agg-rx.c | 16 mt76_aggr_release(struct mt76_rx_tid *tid, struct sk_buff_head *frames, int idx) in mt76_aggr_release() argument 28 __skb_queue_tail(frames, skb); in mt76_aggr_release() 33 struct sk_buff_head *frames, in mt76_rx_aggr_release_frames() argument 40 mt76_aggr_release(tid, frames, idx); in mt76_rx_aggr_release_frames() 45 mt76_rx_aggr_release_head(struct mt76_rx_tid *tid, struct sk_buff_head *frames) in mt76_rx_aggr_release_head() argument 50 mt76_aggr_release(tid, frames, idx); in mt76_rx_aggr_release_head() 56 mt76_rx_aggr_check_release(struct mt76_rx_tid *tid, struct sk_buff_head *frames) in mt76_rx_aggr_check_release() argument 65 mt76_rx_aggr_release_head(tid, frames); in mt76_rx_aggr_check_release() 84 mt76_rx_aggr_release_frames(tid, frames, status->seqno); in mt76_rx_aggr_check_release() 87 mt76_rx_aggr_release_head(tid, frames); in mt76_rx_aggr_check_release() [all …]
|
| /freebsd/usr.sbin/bsnmpd/modules/snmp_wlan/ |
| H A D | BEGEMOT-WIRELESS-MIB.txt | 70 management frames to indicate why an action took place." 110 mesh routing management frames to indicate why an 132 management frames to indicate what the result of an 655 frames. Accepted values are in units of one tenths of a dBm in 666 transmitted frames are broken into fragments. Setting the value 678 transmitted frames are preceded by transmission of an RTS 680 disable transmission of RTS frames." 727 UNITS "frames" 821 frames are sent when an interface is operating in ad-hoc or ap 832 buffered multicast data frames are transmitted by an interface [all …]
|
| /freebsd/crypto/openssl/doc/designs/quic-design/ |
| H A D | stream-receive-buffers.md | 13 - As packets with stream frames are received in arbitrary frames the 21 a DoS via unlimited flow of incoming stream data frames. 24 - As the peer can recreate stream data frames when resending them, the 25 implementation must be able to handle properly frames with partially 26 or fully overlapping data with previously received frames. 51 OpenSSL handles sending MAX_STREAM_DATA frames appropriately when the 85 Control module to send MAX_DATA and MAX_STREAM_DATA frames. Details 101 data frames. Each list item holds a pointer to the received packet 107 This invariant is ensured on the insertion of overlapping stream frames. 108 Any redundant frames are released. Insertion at the end of the list [all …]
|
| H A D | tx-packetiser.md | 4 This module creates frames from the application data obtained from 5 the application. It also receives CRYPTO frames from the TLS Handshake 6 Record Layer and ACK frames from the ACK Handling And Loss Detector 86 - CFQ: queried for generic control frames 109 they no longer have any need to generate frames at the present time. 119 Many control frames do not require special handling and are handled by the 120 generic CFQ mechanism. The TX packetiser queries the CFQ for any frames to be 125 Coalesced frames are passed to the QUIC record layer for encryption and sending. 126 To send accumulated frames as packets to the QUIC Write Record Layer: 151 the per-packet information recorded by the TXPIM to track which frames are [all …]
|
| H A D | quic-overview.md | 27 The frame in flight manager manages the queueing of frames which may need to be 57 protocol handshake. It produces and parses the QUIC CRYPTO frames. 62 This module creates frames from the application data obtained from 63 the application. It also receives CRYPTO frames from the TLS Handshake 64 Record Layer and ACK frames from the ACK Handling And Loss Detector 70 Decrypted packets are split into frames here and the frames are forwarded 117 A module that tracks packets sent to the peer and received ACK frames. 119 TX packetizer that it can drop frames waiting to be ACKed when ACK is received. 120 It also schedules retransmits of frames from packets that are considered 123 The module also handles the receiving side - it schedules when ACK frames should
|
| H A D | quic-fifm.md | 4 The QUIC frame-in-flight manager is responsible for tracking frames which were 8 frames. 58 This queue can also be used for initial transmission of **GCR** frames, not 61 - **REGEN** (Regenerate): These frames can be marked for dynamic regeneration 68 can also be handled using a QUIC Send Stream manager. (`CRYPTO` frames could 82 - Need for a generic control queue which can store encoded control frames. 84 most control frames which do not have special requirements. 103 - What control frames using the **GCR** strategy were sent in the packet 115 The CFQ (`QUIC_CFQ`) stores encoded frames which can be blindly retransmitted in 162 * TXPIM in keeping a list of GCR control frames which were sent in a [all …]
|
| H A D | quic-ackm.md | 8 - Handling received ACK frames 17 - Generating ACK frames for later transmission in response to packets we 27 - be notified of all received ACK frames 44 - It indicates what ACK frames should be generated. 46 - It indicates the current deadline by which new ACK frames 164 /* 1 if the packet has one or more ACK-eliciting frames. */ 173 /* Callback called if frames in this packet are lost. arg is cb_arg. */ 176 /* Callback called if frames in this packet are acked. arg is cb_arg. */ 180 * Callback called if frames in this packet are neither acked nor lost. arg 235 /* 1 if the packet has one or more ACK-eliciting frames. */ [all …]
|
| /freebsd/contrib/netbsd-tests/lib/libexecinfo/ |
| H A D | t_backtrace.c | 58 } frames[] = { in myfunc3() local 75 for (j = 0; j < __arraycount(frames); ++j) { in myfunc3() 76 if (!frames[j].is_optional) in myfunc3() 102 if (frames[i].is_optional && in myfunc3() 103 strcmp(strings[j], frames[i].name)) { in myfunc3() 107 ATF_CHECK_STREQ(strings[j], frames[i].name); in myfunc3()
|
| /freebsd/sys/dev/hwpmc/ |
| H A D | hwpmc_powerpc.c | 73 int frames = 0; in pmc_save_kernel_callchain() local 75 cc[frames++] = PMC_TRAPFRAME_TO_PC(tf); in pmc_save_kernel_callchain() 79 for (; frames < maxsamples; frames++) { in pmc_save_kernel_callchain() 98 cc[frames] = pc; in pmc_save_kernel_callchain() 102 return (frames); in pmc_save_kernel_callchain() 598 int frames = 0; in pmc_save_user_callchain() local 600 cc[frames++] = PMC_TRAPFRAME_TO_PC(tf); in pmc_save_user_callchain() 604 for (; frames < maxsamples; frames++) { in pmc_save_user_callchain() 611 cc[frames] = fuword32((uint32_t *)sp + 1); in pmc_save_user_callchain() 614 cc[frames] = fuword(sp + 2); in pmc_save_user_callchain() [all …]
|
| /freebsd/share/examples/bootforth/ |
| H A D | frames.4th | 4 marker task-frames.4th 14 \ Single frames 21 \ Double frames 42 : f_single ( -- ) \ set frames to single 51 : f_double ( -- ) \ set frames to double
|
| H A D | boot.4th | 12 cr .( - frames.4th...) 13 s" /boot/frames.4th" O_RDONLY fopen dup fload fclose
|
| H A D | loader.rc | 18 cr .( - frames.4th...) 19 s" /boot/frames.4th" O_RDONLY fopen dup fload fclose
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_report.cpp | 104 if (ent == 0 || ent->frames == 0) { in PrintStack() 108 SymbolizedStack *frame = ent->frames; in PrintStack() 276 static const SymbolizedStack *SkipTsanInternalFrames(SymbolizedStack *frames) { in FrameIsInternal() 277 if (const SymbolizedStack *f = SkipInternalFrames(frames)) in FrameIsInternal() 279 return frames; // Fallback to the top frame. in FrameIsInternal() 353 if (const SymbolizedStack *frame = SkipTsanInternalFrames(stack->frames)) in PrintReport() 368 if (ent == 0 || ent->frames == 0) { in PrintReport() 372 SymbolizedStack *frame = ent->frames; in PrintReport() 290 SkipTsanInternalFrames(SymbolizedStack * frames) SkipTsanInternalFrames() argument
|
| H A D | tsan_debugging.cpp | 88 if (rep->sleep) CopyTrace(rep->sleep->frames, sleep_trace, trace_size); in __tsan_get_report_data() 105 if (stack) CopyTrace(stack->frames, trace, trace_size); in __tsan_get_report_stack() 121 if (mop->stack) CopyTrace(mop->stack->frames, trace, trace_size); in __tsan_get_report_mop() 140 if (loc->stack) CopyTrace(loc->stack->frames, trace, trace_size); in __tsan_get_report_loc() 163 if (mutex->stack) CopyTrace(mutex->stack->frames, trace, trace_size); in __tsan_get_report_mutex() 179 if (thread->stack) CopyTrace(thread->stack->frames, trace, trace_size); in __tsan_get_report_thread()
|
| H A D | tsan_suppressions.cpp | 116 for (const SymbolizedStack *frame = stack->frames; frame; in IsSuppressed() 122 if (0 == internal_strcmp(stype, kSuppressionRace) && stack->frames != nullptr) in IsSuppressed() 123 return IsSuppressed(kSuppressionRaceTop, stack->frames->info, sp); in IsSuppressed()
|
| /freebsd/contrib/llvm-project/lldb/bindings/interface/ |
| H A D | SBThreadExtensions.i | 12 '''Iterate over all frames in a lldb.SBThread object.''' 16 '''Return the number of frames in a lldb.SBThread object.''' 20 '''A helper object that will lazily hand out frames for a thread when supplied an index.''' 42 '''An accessor function that returns a list() that contains all frames in a lldb.SBThread object.''' 43 frames = [] 45 frames.append(frame) 46 return frames 52 num_frames = property(GetNumFrames, None, doc='''A read only property that returns the number of stack frames in this thread as an integer.''') 53 frames = property(get_thread_frames, None, doc='''A read only property that returns a list() of lldb.SBFrame objects for all frames i [all...] |
| /freebsd/crypto/heimdal/lib/krb5/ |
| H A D | misc.c | 102 int i, frames = backtrace(stack, sizeof(stack) / sizeof(stack[0])); in _krb5_debug_backtrace() local 103 if (frames > 0) in _krb5_debug_backtrace() 104 strs = backtrace_symbols(stack, frames); in _krb5_debug_backtrace() 106 for (i = 0; i < frames; i++) in _krb5_debug_backtrace()
|
| /freebsd/stand/forth/ |
| H A D | frames.4th | 27 marker task-frames.4th 42 \ ASCII frames (used when serial console is detected) 48 \ Single frames 55 \ Double frames 78 : f_ascii ( -- ) ( -- ) \ set frames to ascii 87 : f_single ( -- ) \ set frames to single 97 : f_double ( -- ) \ set frames to double
|
| /freebsd/usr.sbin/fwcontrol/ |
| H A D | fwdv.c | 258 int len, tlen, header, fd, frames, packets, vec, offset, nhdr, i; in dvsend() local 316 frames = 0; in dvsend() 353 fprintf(stderr, "%d", frames % 10); in dvsend() 354 frames ++; in dvsend() 355 if (count > 0 && frames > count) in dvsend() 357 if (frames % frame_rate[system] == 0) in dvsend() 413 frames, rtime, frames/rtime); in dvsend()
|
| /freebsd/contrib/libcbor/test/ |
| H A D | test_allocator.c | 35 int frames = backtrace(buffer, 128); in print_backtrace() local 36 char **symbols = backtrace_symbols(buffer, frames); in print_backtrace() 38 for (int i = 2; i < frames; ++i) { in print_backtrace()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/nsan/ |
| H A D | nsan_suppressions.cpp | 52 SymbolizedStack *frames = Symbolizer::GetOrInit()->SymbolizePC(addr); in GetSuppressionForAddr() local 53 for (SymbolizedStack *cur = frames; cur; cur = cur->next) { in GetSuppressionForAddr() 59 frames->ClearAll(); in GetSuppressionForAddr()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_suppressions.cpp | 84 const SymbolizedStack *frames = symbolized_stack.get(); in IsStackTraceSuppressed() local 85 CHECK(frames); in IsStackTraceSuppressed() 86 for (const SymbolizedStack *cur = frames; cur; cur = cur->next) { in IsStackTraceSuppressed()
|
| /freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/ |
| H A D | marvell,odmi-controller.txt | 17 - marvell,odmi-frames : Number of ODMI frames available. Each frame 36 marvell,odmi-frames = <4>;
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_unwind_linux_libcdep.cpp | 155 InternalMmapVector<backtrace_frame_t> frames(kStackTraceMax); in UnwindSlow() local 158 frames.data(), in UnwindSlow() 168 trace_buffer[size++] = frames[i].absolute_pc + 2; in UnwindSlow()
|
| /freebsd/contrib/wpa/hostapd/ |
| H A D | README | 117 IEEE 802.1X uses Extensible Authentication Protocol (EAP). The frames 119 (EAPOL) and the Authenticator relays these frames to the Authentication 125 frames used by that server. RADIUS is suitable for this, but IEEE 129 is a relatively simple mechanism for denying normal frames going to 131 frames to be passed between the Supplicant and the Authenticator even 135 receives 802.1X (EAPOL) frames from the Supplicant using the wlan#ap 136 device that is also used with IEEE 802.11 management frames. The 137 frames to the Supplicant are sent using the same device. 143 relays the frames between the Supplicant and the Authentication 153 Unauthorized state and only IEEE 802.1X frames are accepted at this [all …]
|