/Linux-v6.1/drivers/net/wireless/broadcom/brcm80211/brcmfmac/ |
D | chip.c | 219 struct brcmf_core pub; member 226 struct brcmf_chip pub; member 256 address = CORE_SB(core->pub.base, sbtmstatelow); in brcmf_chip_sb_iscoreup() 286 base = core->pub.base; in brcmf_chip_sb_coredisable() 391 base = core->pub.base; in brcmf_chip_sb_resetcore() 444 if (core->pub.id == BCMA_CORE_80211) { in brcmf_chip_ai_resetcore() 445 d11core2 = brcmf_chip_get_d11core(&ci->pub, 1); in brcmf_chip_ai_resetcore() 449 struct brcmf_core_priv, pub); in brcmf_chip_ai_resetcore() 513 core->pub.id = coreid; in brcmf_chip_add_core() 514 core->pub.base = base; in brcmf_chip_add_core() [all …]
|
/Linux-v6.1/crypto/asymmetric_keys/ |
D | pkcs8_parser.c | 21 struct public_key *pub; member 76 ctx->pub->pkey_algo = "rsa"; in pkcs8_note_algo() 100 struct public_key *pub; in pkcs8_parse() local 106 ctx.pub = kzalloc(sizeof(struct public_key), GFP_KERNEL); in pkcs8_parse() 107 if (!ctx.pub) in pkcs8_parse() 118 pub = ctx.pub; in pkcs8_parse() 119 pub->key = kmemdup(ctx.key, ctx.key_size, GFP_KERNEL); in pkcs8_parse() 120 if (!pub->key) in pkcs8_parse() 123 pub->keylen = ctx.key_size; in pkcs8_parse() 124 pub->key_is_private = true; in pkcs8_parse() [all …]
|
D | x509_cert_parser.c | 47 public_key_free(cert->pub); in x509_free_certificate() 72 cert->pub = kzalloc(sizeof(struct public_key), GFP_KERNEL); in x509_cert_parse() 73 if (!cert->pub) in x509_cert_parse() 103 cert->pub->key = kmemdup(ctx->key, ctx->key_size, GFP_KERNEL); in x509_cert_parse() 104 if (!cert->pub->key) in x509_cert_parse() 107 cert->pub->keylen = ctx->key_size; in x509_cert_parse() 109 cert->pub->params = kmemdup(ctx->params, ctx->params_size, GFP_KERNEL); in x509_cert_parse() 110 if (!cert->pub->params) in x509_cert_parse() 113 cert->pub->paramlen = ctx->params_size; in x509_cert_parse() 114 cert->pub->algo = ctx->key_algo; in x509_cert_parse() [all …]
|
/Linux-v6.1/drivers/net/wireless/broadcom/brcm80211/brcmsmac/ |
D | dma.h | 83 void dma_rxinit(struct dma_pub *pub); 84 int dma_rx(struct dma_pub *pub, struct sk_buff_head *skb_list); 85 bool dma_rxfill(struct dma_pub *pub); 86 bool dma_rxreset(struct dma_pub *pub); 87 bool dma_txreset(struct dma_pub *pub); 88 void dma_txinit(struct dma_pub *pub); 89 int dma_txfast(struct brcms_c_info *wlc, struct dma_pub *pub, 91 void dma_txflush(struct dma_pub *pub); 92 int dma_txpending(struct dma_pub *pub); 93 void dma_kick_tx(struct dma_pub *pub); [all …]
|
D | dma.c | 558 struct si_info *sii = container_of(sih, struct si_info, pub); in dma_attach() 747 void dma_detach(struct dma_pub *pub) in dma_detach() argument 749 struct dma_info *di = container_of(pub, struct dma_info, dma); in dma_detach() 843 void dma_rxinit(struct dma_pub *pub) in dma_rxinit() argument 845 struct dma_info *di = container_of(pub, struct dma_info, dma); in dma_rxinit() 925 int dma_rx(struct dma_pub *pub, struct sk_buff_head *skb_list) in dma_rx() argument 927 struct dma_info *di = container_of(pub, struct dma_info, dma); in dma_rx() 1023 bool dma_rxfill(struct dma_pub *pub) in dma_rxfill() argument 1025 struct dma_info *di = container_of(pub, struct dma_info, dma); in dma_rxfill() 1109 void dma_rxreclaim(struct dma_pub *pub) in dma_rxreclaim() argument [all …]
|
D | mac80211_if.c | 33 #include "pub.h" 298 if (wl->pub) { in brcms_free() 299 brcms_debugfs_detach(wl->pub); in brcms_free() 300 brcms_c_module_unregister(wl->pub, "linux", wl); in brcms_free() 307 wl->pub = NULL; in brcms_free() 337 wiphy_rfkill_set_hw_state(wl->pub->ieee_hw->wiphy, false); in brcms_remove() 338 wiphy_rfkill_stop_polling(wl->pub->ieee_hw->wiphy); in brcms_remove() 409 if (!wl->pub->up) { in brcms_ops_tx() 437 wiphy_rfkill_stop_polling(wl->pub->ieee_hw->wiphy); in brcms_ops_start() 443 if (!wl->pub->up) in brcms_ops_start() [all …]
|
/Linux-v6.1/net/wireless/ |
D | scan.c | 123 ies = (void *)rcu_access_pointer(bss->pub.beacon_ies); in bss_free() 124 if (ies && !bss->pub.hidden_beacon_bss) in bss_free() 126 ies = (void *)rcu_access_pointer(bss->pub.proberesp_ies); in bss_free() 147 if (bss->pub.hidden_beacon_bss) in bss_ref_get() 148 bss_from_pub(bss->pub.hidden_beacon_bss)->refcount++; in bss_ref_get() 150 if (bss->pub.transmitted_bss) in bss_ref_get() 151 bss_from_pub(bss->pub.transmitted_bss)->refcount++; in bss_ref_get() 159 if (bss->pub.hidden_beacon_bss) { in bss_ref_put() 161 hbss = container_of(bss->pub.hidden_beacon_bss, in bss_ref_put() 163 pub); in bss_ref_put() [all …]
|
/Linux-v6.1/rust/alloc/collections/ |
D | mod.rs | 8 pub mod binary_heap; 12 pub mod linked_list; 14 pub mod vec_deque; 18 pub mod btree_map { 21 pub use super::btree::map::*; 26 pub mod btree_set { 29 pub use super::btree::set::*; 35 pub use binary_heap::BinaryHeap; 40 pub use btree_map::BTreeMap; 45 pub use btree_set::BTreeSet; [all …]
|
/Linux-v6.1/net/mac80211/ |
D | vht.c | 121 struct ieee80211_sta_vht_cap *vht_cap = &link_sta->pub->vht_cap; in ieee80211_vht_cap_ie_to_sta_vht_cap() 128 if (!link_sta->pub->ht_cap.ht_supported) in ieee80211_vht_cap_ie_to_sta_vht_cap() 318 link_sta->pub->bandwidth = ieee80211_sta_cur_vht_bw(link_sta); in ieee80211_vht_cap_ie_to_sta_vht_cap() 326 link_sta->pub->agg.max_amsdu_len = IEEE80211_MAX_MPDU_LEN_VHT_11454; in ieee80211_vht_cap_ie_to_sta_vht_cap() 329 link_sta->pub->agg.max_amsdu_len = IEEE80211_MAX_MPDU_LEN_VHT_7991; in ieee80211_vht_cap_ie_to_sta_vht_cap() 333 link_sta->pub->agg.max_amsdu_len = IEEE80211_MAX_MPDU_LEN_VHT_3895; in ieee80211_vht_cap_ie_to_sta_vht_cap() 346 struct ieee80211_sta_vht_cap *vht_cap = &link_sta->pub->vht_cap; in ieee80211_sta_cap_rx_bw() 347 struct ieee80211_sta_he_cap *he_cap = &link_sta->pub->he_cap; in ieee80211_sta_cap_rx_bw() 348 struct ieee80211_sta_eht_cap *eht_cap = &link_sta->pub->eht_cap; in ieee80211_sta_cap_rx_bw() 393 return link_sta->pub->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40 ? in ieee80211_sta_cap_rx_bw() [all …]
|
D | he.c | 34 link_sta->pub->smps_mode = smps_mode; in ieee80211_update_from_he_6ghz_capa() 36 link_sta->pub->smps_mode = IEEE80211_SMPS_OFF; in ieee80211_update_from_he_6ghz_capa() 42 link_sta->pub->agg.max_amsdu_len = IEEE80211_MAX_MPDU_LEN_VHT_11454; in ieee80211_update_from_he_6ghz_capa() 45 link_sta->pub->agg.max_amsdu_len = IEEE80211_MAX_MPDU_LEN_VHT_7991; in ieee80211_update_from_he_6ghz_capa() 49 link_sta->pub->agg.max_amsdu_len = IEEE80211_MAX_MPDU_LEN_VHT_3895; in ieee80211_update_from_he_6ghz_capa() 55 link_sta->pub->he_6ghz_capa = *he_6ghz_capa; in ieee80211_update_from_he_6ghz_capa() 116 struct ieee80211_sta_he_cap *he_cap = &link_sta->pub->he_cap; in ieee80211_he_cap_ie_to_sta_he_cap() 160 link_sta->pub->bandwidth = ieee80211_sta_cur_vht_bw(link_sta); in ieee80211_he_cap_ie_to_sta_he_cap()
|
/Linux-v6.1/drivers/media/dvb-core/ |
D | dvb_ca_en50221.c | 117 struct dvb_ca_en50221 *pub; member 234 slot_status = ca->pub->poll_slot_status(ca->pub, slot, ca->open); in dvb_ca_en50221_check_camstatus() 287 res = ca->pub->read_cam_control(ca->pub, slot, CTRLIF_STATUS); in dvb_ca_en50221_wait_if_status() 339 ret = ca->pub->write_cam_control(ca->pub, slot, CTRLIF_COMMAND, in dvb_ca_en50221_link_init() 349 ret = ca->pub->write_cam_control(ca->pub, slot, CTRLIF_COMMAND, IRQEN); in dvb_ca_en50221_link_init() 366 ret = ca->pub->write_cam_control(ca->pub, slot, CTRLIF_COMMAND, in dvb_ca_en50221_link_init() 376 ret = ca->pub->write_cam_control(ca->pub, slot, CTRLIF_COMMAND, IRQEN); in dvb_ca_en50221_link_init() 406 _tuple_type = ca->pub->read_attribute_mem(ca->pub, slot, _address); in dvb_ca_en50221_read_tuple() 416 _tuple_length = ca->pub->read_attribute_mem(ca->pub, slot, in dvb_ca_en50221_read_tuple() 426 tuple[i] = ca->pub->read_attribute_mem(ca->pub, slot, in dvb_ca_en50221_read_tuple() [all …]
|
/Linux-v6.1/rust/kernel/ |
D | lib.rs | 25 pub mod error; 26 pub mod prelude; 27 pub mod print; 28 pub mod str; 31 pub use bindings; 32 pub use macros; 40 pub trait Module: Sized + Sync { 53 pub struct ThisModule(*mut bindings::module); 64 pub const unsafe fn from_ptr(ptr: *mut bindings::module) -> ThisModule { in from_ptr()
|
D | prelude.rs | 14 pub use super::{ 18 pub use alloc::{boxed::Box, vec::Vec}; 19 pub use core::pin::Pin; 20 pub use macros::module;
|
D | error.rs | 10 pub mod code { 12 pub const ENOMEM: super::Error = super::Error(-(crate::bindings::ENOMEM as i32)); 24 pub struct Error(core::ffi::c_int); 28 pub fn to_kernel_errno(self) -> core::ffi::c_int { in to_kernel_errno() 59 pub type Result<T = ()> = core::result::Result<T, Error>;
|
/Linux-v6.1/rust/macros/ |
D | helpers.rs | 5 pub(crate) fn try_ident(it: &mut token_stream::IntoIter) -> Option<String> { in try_ident() 13 pub(crate) fn try_literal(it: &mut token_stream::IntoIter) -> Option<String> { in try_literal() 21 pub(crate) fn try_byte_string(it: &mut token_stream::IntoIter) -> Option<String> { in try_byte_string() 31 pub(crate) fn expect_ident(it: &mut token_stream::IntoIter) -> String { in expect_ident() 35 pub(crate) fn expect_punct(it: &mut token_stream::IntoIter) -> char { in expect_punct() 43 pub(crate) fn expect_byte_string(it: &mut token_stream::IntoIter) -> String { in expect_byte_string() 47 pub(crate) fn expect_end(it: &mut token_stream::IntoIter) { in expect_end()
|
/Linux-v6.1/rust/alloc/ |
D | lib.rs | 205 pub mod alloc; 213 pub mod boxed; 216 pub use std::boxed::Box; 218 pub mod borrow; 219 pub mod collections; 221 pub mod ffi; 223 pub mod fmt; 225 pub mod rc; 226 pub mod slice; 228 pub mod str; [all …]
|
D | raw_vec.rs | 54 pub(crate) struct RawVec<T, A: Allocator = Global> { 66 pub const NEW: Self = Self::new(); 74 pub const fn new() -> Self { in new() 94 pub fn with_capacity(capacity: usize) -> Self { in with_capacity() 102 pub fn with_capacity_zeroed(capacity: usize) -> Self { in with_capacity_zeroed() 113 pub(crate) const MIN_NON_ZERO_CAP: usize = if mem::size_of::<T>() == 1 { 123 pub const fn new_in(alloc: A) -> Self { in new_in() 132 pub fn with_capacity_in(capacity: usize, alloc: A) -> Self { in with_capacity_in() 140 pub fn with_capacity_zeroed_in(capacity: usize, alloc: A) -> Self { in with_capacity_zeroed_in() 156 pub unsafe fn into_box(self, len: usize) -> Box<[MaybeUninit<T>], A> { in into_box() [all …]
|
D | slice.rs | 106 pub use core::slice::range; 108 pub use core::slice::ArrayChunks; 110 pub use core::slice::ArrayChunksMut; 112 pub use core::slice::ArrayWindows; 114 pub use core::slice::EscapeAscii; 116 pub use core::slice::SliceIndex; 118 pub use core::slice::{from_mut, from_ref}; 120 pub use core::slice::{from_raw_parts, from_raw_parts_mut}; 122 pub use core::slice::{Chunks, Windows}; 124 pub use core::slice::{ChunksExact, ChunksExactMut}; [all …]
|
D | alloc.rs | 17 pub use core::alloc::*; 54 pub struct Global; 57 pub use std::alloc::Global; 90 pub unsafe fn alloc(layout: Layout) -> *mut u8 { in alloc() 108 pub unsafe fn dealloc(ptr: *mut u8, layout: Layout) { in dealloc() 127 pub unsafe fn realloc(ptr: *mut u8, layout: Layout, new_size: usize) -> *mut u8 { in realloc() 161 pub unsafe fn alloc_zeroed(layout: Layout) -> *mut u8 { in alloc_zeroed() 336 pub(crate) const unsafe fn box_free<T: ?Sized, A: ~const Allocator + ~const Destruct>( in box_free() 374 pub const fn handle_alloc_error(layout: Layout) -> ! { in handle_alloc_error() 390 pub use std::alloc::handle_alloc_error; [all …]
|
/Linux-v6.1/include/crypto/ |
D | curve25519.h | 28 void curve25519_base_arch(u8 pub[CURVE25519_KEY_SIZE], 47 __must_check curve25519_generate_public(u8 pub[CURVE25519_KEY_SIZE], in curve25519_generate_public() 55 curve25519_base_arch(pub, secret); in curve25519_generate_public() 57 curve25519_generic(pub, secret, curve25519_base_point); in curve25519_generate_public() 58 return crypto_memneq(pub, curve25519_null_point, CURVE25519_KEY_SIZE); in curve25519_generate_public()
|
/Linux-v6.1/rust/alloc/vec/ |
D | drain_filter.rs | 24 pub struct DrainFilter< 32 pub(super) vec: &'a mut Vec<T, A>, 34 pub(super) idx: usize, 36 pub(super) del: usize, 38 pub(super) old_len: usize, 40 pub(super) pred: F, 46 pub(super) panic_flag: bool, 56 pub fn allocator(&self) -> &A { in allocator()
|
D | into_iter.rs | 32 pub struct IntoIter< 36 pub(super) buf: NonNull<T>, 37 pub(super) phantom: PhantomData<T>, 38 pub(super) cap: usize, 41 pub(super) alloc: ManuallyDrop<A>, 42 pub(super) ptr: *const T, 43 pub(super) end: *const T, 66 pub fn as_slice(&self) -> &[T] { in as_slice() 84 pub fn as_mut_slice(&mut self) -> &mut [T] { in as_mut_slice() 91 pub fn allocator(&self) -> &A { in allocator() [all …]
|
/Linux-v6.1/net/atm/ |
D | addr.c | 20 if (!*addr->sas_addr.pub) in check_addr() 23 if (!addr->sas_addr.pub[i]) in check_addr() 33 if (!*a->sas_addr.pub) in identical() 34 return !*b->sas_addr.pub; in identical() 35 if (!*b->sas_addr.pub) in identical() 37 return !strcmp(a->sas_addr.pub, b->sas_addr.pub); in identical()
|
/Linux-v6.1/rust/bindings/ |
D | lib.rs | 31 pub use super::bindings_helper::*; 50 pub use bindings_raw::*; 52 pub const GFP_KERNEL: gfp_t = BINDINGS_GFP_KERNEL; 53 pub const __GFP_ZERO: gfp_t = BINDINGS___GFP_ZERO;
|
/Linux-v6.1/Documentation/translations/it_IT/process/ |
D | changes.rst | 156 (http://www.kernel.org/pub/linux/utils/kernel/hotplug/) 376 - <https://www.kernel.org/pub/linux/devel/binutils/> 399 - <https://www.kernel.org/pub/linux/utils/util-linux/> 404 - <https://www.kernel.org/pub/linux/utils/kernel/kmod/> 405 - <https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git> 410 - <https://www.kernel.org/pub/linux/utils/kernel/ksymoops/v2.4/> 420 - <https://www.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/> 421 - <https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git/> 431 - <https://git.kernel.org/pub/scm/linux/kernel/git/jeffm/reiserfsprogs.git/> 436 - <https://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git> [all …]
|