/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/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/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/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/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()
|
H A D | sanitizer_stacktrace_libcdep.cpp | 39 const SymbolizedStack *frames = symbolized_stack.get(); in ProcessAddressFrames() local 40 if (!frames) in ProcessAddressFrames() 43 for (const SymbolizedStack *cur = frames; cur; cur = cur->next) { in ProcessAddressFrames()
|
/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 …]
|
H A D | README-MULTI-AP | 52 must use 4-address mode for all frames sent over this link ([3], section 14). 68 only be used for frames sent to a backhaul STA, not to a normal STA. Also, 69 frames sent to a backhaul STA must use 4-address mode, while frames sent to a 104 6. STA and AP both use 4-address mode for Data frames. 143 1. Fronthaul BSS Beacon frames advertise WPS support (nothing Multi-AP
|
/freebsd/tools/tools/net80211/wlaninject/ |
H A D | README | 2 This tool generates raw 802.11 frames. The resulting frame will 21 -N Mark transmitted frames such that no ACK is expected. In practice, 60 This is mainly used for management frames. For data frames, -b
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | flif | 20 >>5 ubyte <255 \b, %i frames 26 >>>6 beshort x \b, %i frames,
|
/freebsd/sys/contrib/zstd/doc/ |
H A D | README.md | 23 …m/facebook/zstd/tree/dev/tests#decodecorpus---tool-to-generate-zstandard-frames-for-decoder-testin… 24 This tool, stored in `/tests` directory, is able to generate random valid frames,
|