Home
last modified time | relevance | path

Searched refs:frames (Results 1 – 25 of 189) sorted by relevance

12345678

/freebsd-14.2/sys/contrib/dev/mediatek/mt76/
H A Dagg-rx.c28 __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()
50 mt76_aggr_release(tid, frames, idx); in mt76_rx_aggr_release_head()
65 mt76_rx_aggr_release_head(tid, frames); in mt76_rx_aggr_check_release()
96 struct sk_buff_head frames; in mt76_rx_aggr_reorder_work() local
99 __skb_queue_head_init(&frames); in mt76_rx_aggr_reorder_work()
112 mt76_rx_complete(dev, &frames, NULL); in mt76_rx_aggr_reorder_work()
159 __skb_queue_tail(frames, skb); in mt76_rx_aggr_reorder()
199 __skb_unlink(skb, frames); in mt76_rx_aggr_reorder()
[all …]
/freebsd-14.2/usr.sbin/bsnmpd/modules/snmp_wlan/
H A DBEGEMOT-WIRELESS-MIB.txt727 UNITS "frames"
1811 UNITS "frames"
1820 UNITS "frames"
1829 UNITS "frames"
1838 UNITS "frames"
1847 UNITS "frames"
1857 UNITS "frames"
1867 UNITS "frames"
1877 UNITS "frames"
1887 UNITS "frames"
[all …]
/freebsd-14.2/contrib/netbsd-tests/lib/libexecinfo/
H A Dt_backtrace.c58 } 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-14.2/sys/dev/hwpmc/
H A Dhwpmc_powerpc.c74 int frames = 0; in pmc_save_kernel_callchain() local
76 cc[frames++] = PMC_TRAPFRAME_TO_PC(tf); in pmc_save_kernel_callchain()
80 for (; frames < maxsamples; frames++) { in pmc_save_kernel_callchain()
99 cc[frames] = pc; in pmc_save_kernel_callchain()
103 return (frames); in pmc_save_kernel_callchain()
594 int frames = 0; in pmc_save_user_callchain() local
596 cc[frames++] = PMC_TRAPFRAME_TO_PC(tf); in pmc_save_user_callchain()
600 for (; frames < maxsamples; frames++) { in pmc_save_user_callchain()
610 cc[frames] = fuword(sp + 2); in pmc_save_user_callchain()
614 cc[frames] = fuword32((uint32_t *)sp + 1); in pmc_save_user_callchain()
[all …]
/freebsd-14.2/share/examples/bootforth/
H A Dframes.4th4 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 Dboot.4th12 cr .( - frames.4th...)
13 s" /boot/frames.4th" O_RDONLY fopen dup fload fclose
H A Dloader.rc18 cr .( - frames.4th...)
19 s" /boot/frames.4th" O_RDONLY fopen dup fload fclose
/freebsd-14.2/contrib/llvm-project/lldb/bindings/interface/
H A DSBThreadExtensions.i43 frames = []
45 frames.append(frame)
46 return frames
53frames = property(get_thread_frames, None, doc='''A read only property that returns a list() of ll…
/freebsd-14.2/crypto/heimdal/lib/krb5/
H A Dmisc.c102 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-14.2/stand/forth/
H A Dframes.4th27 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-14.2/usr.sbin/fwcontrol/
H A Dfwdv.c258 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-14.2/contrib/libcbor/test/
H A Dtest_allocator.c35 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-14.2/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_suppressions.cpp85 const SymbolizedStack *frames = symbolized_stack.get(); in IsStackTraceSuppressed() local
86 CHECK(frames); in IsStackTraceSuppressed()
87 for (const SymbolizedStack *cur = frames; cur; cur = cur->next) { in IsStackTraceSuppressed()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_debugging.cpp88 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 Dtsan_report.cpp104 if (ent == 0 || ent->frames == 0) { in PrintStack()
108 SymbolizedStack *frame = ent->frames; in PrintStack()
276 static const SymbolizedStack *SkipTsanInternalFrames(SymbolizedStack *frames) { in SkipTsanInternalFrames() argument
277 if (const SymbolizedStack *f = SkipInternalFrames(frames)) in SkipTsanInternalFrames()
279 return frames; // Fallback to the top frame. in SkipTsanInternalFrames()
353 if (const SymbolizedStack *frame = SkipTsanInternalFrames(stack->frames)) in PrintReport()
368 if (ent == 0 || ent->frames == 0) { in PrintStack()
372 SymbolizedStack *frame = ent->frames; in PrintStack()
H A Dtsan_suppressions.cpp116 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-14.2/sys/contrib/device-tree/Bindings/interrupt-controller/
H A Dmarvell,odmi-controller.txt17 - marvell,odmi-frames : Number of ODMI frames available. Each frame
36 marvell,odmi-frames = <4>;
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_unwind_linux_libcdep.cpp155 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 Dsanitizer_stacktrace_libcdep.cpp39 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-14.2/contrib/wpa/hostapd/
H A DREADME117 IEEE 802.1X uses Extensible Authentication Protocol (EAP). The frames
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
156 the virtual port is set to Authorized state and frames from and to the
[all …]
H A DREADME-MULTI-AP52 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-14.2/contrib/file/magic/Magdir/
H A Dflif20 >>5 ubyte <255 \b, %i frames
26 >>>6 beshort x \b, %i frames,
/freebsd-14.2/tools/tools/net80211/wlaninject/
H A DREADME2 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-14.2/sys/contrib/zstd/doc/
H A DREADME.md23 …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,
/freebsd-14.2/sys/netgraph/
H A Dng_hole.h51 uint64_t frames; member

12345678