Home
last modified time | relevance | path

Searched defs:self (Results 76 – 100 of 333) sorted by relevance

12345678910>>...14

/Linux-v6.6/tools/cgroup/
Diocost_monitor.py64 def __init__(self, root_blkcg, q_id, include_dying=False): argument
72 def walk(self, blkcg, q_id, parent_path): argument
90 def __iter__(self): argument
94 def __init__(self, ioc): argument
114 def dict(self, now): argument
127 def table_preamble_str(self): argument
139 def table_header_str(self): argument
144 def __init__(self, iocg): argument
175 def dict(self, now, path): argument
192 def table_row_str(self, path): argument
/Linux-v6.6/scripts/gdb/linux/
Dpgtable.py66 def __init__(self, cr3, page_levels): argument
73 def next_entry(self, va): argument
77 def mk_string(self): argument
89 def __init__(self, address, level): argument
136 def next_entry(self, va): argument
144 def mk_string(self): argument
204 def __init__(self): argument
207 def invoke(self, arg, from_tty): argument
Dclk.py26 def __init__(self): argument
29 def show_subtree(self, clk, level): argument
43 def invoke(self, arg, from_tty): argument
61 def __init__(self): argument
64 def lookup_hlist(self, hlist_head, name): argument
72 def invoke(self, name): argument
Dmodules.py47 def __init__(self): argument
50 def invoke(self, mod_name): argument
67 def __init__(self): argument
70 def invoke(self, arg, from_tty): argument
111 def __init__(self): argument
114 def invoke(self, arg, from_tty): argument
Dcpus.py132 def __init__(self): argument
135 def invoke(self, arg, from_tty): argument
152 def __init__(self): argument
155 def invoke(self, var_name, cpu=-1): argument
192 def __init__(self): argument
195 def invoke(self, cpu=-1): argument
Dvfs.py33 def __init__(self): argument
36 def invoke(self, dentry_ptr): argument
50 def __init__(self): argument
53 def invoke(self, inode_ptr): argument
/Linux-v6.6/drivers/crypto/intel/qat/qat_c62x/
Dadf_c62x_hw_data.c26 static u32 get_accel_mask(struct adf_hw_device_data *self) in get_accel_mask()
38 static u32 get_ae_mask(struct adf_hw_device_data *self) in get_ae_mask()
55 static u32 get_ts_clock(struct adf_hw_device_data *self) in get_ts_clock()
77 static u32 get_misc_bar_id(struct adf_hw_device_data *self) in get_misc_bar_id()
82 static u32 get_etr_bar_id(struct adf_hw_device_data *self) in get_etr_bar_id()
87 static u32 get_sram_bar_id(struct adf_hw_device_data *self) in get_sram_bar_id()
92 static enum dev_sku_info get_sku(struct adf_hw_device_data *self) in get_sku()
/Linux-v6.6/drivers/crypto/intel/qat/qat_c3xxx/
Dadf_c3xxx_hw_data.c26 static u32 get_accel_mask(struct adf_hw_device_data *self) in get_accel_mask()
38 static u32 get_ae_mask(struct adf_hw_device_data *self) in get_ae_mask()
55 static u32 get_ts_clock(struct adf_hw_device_data *self) in get_ts_clock()
77 static u32 get_misc_bar_id(struct adf_hw_device_data *self) in get_misc_bar_id()
82 static u32 get_etr_bar_id(struct adf_hw_device_data *self) in get_etr_bar_id()
87 static u32 get_sram_bar_id(struct adf_hw_device_data *self) in get_sram_bar_id()
92 static enum dev_sku_info get_sku(struct adf_hw_device_data *self) in get_sku()
/Linux-v6.6/scripts/
Dgenerate_rust_target.rs31 fn fmt(&self, formatter: &mut Formatter<'_>) -> Result { in fmt()
59 fn push(&mut self, key: &str, value: T); in push()
63 fn push(&mut self, key: &str, value: bool) { in push()
69 fn push(&mut self, key: &str, value: i32) { in push()
75 fn push(&mut self, key: &str, value: String) { in push()
81 fn push(&mut self, key: &str, value: &str) { in push()
87 fn push(&mut self, key: &str, value: Object) { in push()
93 fn fmt(&self, formatter: &mut Formatter<'_>) -> Result { in fmt()
140 fn has(&self, option: &str) -> bool { in has()
/Linux-v6.6/tools/perf/scripts/python/
Dflamegraph.py53 def __init__(self, name, libtype): argument
61 def to_json(self): argument
71 def __init__(self, args): argument
96 def process_event(self, event): argument
119 def get_report_header(self): argument
132 def trace_end(self): argument
Dlibxed.py32 def __init__(self, libxed): argument
46 def __init__(self): argument
80 def Instruction(self): argument
83 def SetMode(self, inst, mode): argument
92 def DisassembleOne(self, inst, bytes_ptr, bytes_cnt, ip): argument
Dgecko.py128 def _intern_stack(self, frame_id: int, prefix_id: Optional[int]) -> int: argument
140 def _intern_string(self, string: str) -> int: argument
150 def _intern_frame(self, frame_str: str) -> int: argument
177 def _add_sample(self, comm: str, stack: List[str], time_ms: Milliseconds) -> None: argument
196 def _to_json_dict(self) -> Dict: argument
351 def end_headers (self): argument
/Linux-v6.6/rust/alloc/
Draw_vec.rs162 pub unsafe fn into_box(self, len: usize) -> Box<[MaybeUninit<T>], A> { in into_box() argument
311 pub fn reserve(&mut self, len: usize, additional: usize) { in reserve()
334 pub fn reserve_for_push(&mut self, len: usize) { in reserve_for_push()
339 pub fn try_reserve(&mut self, len: usize, additional: usize) -> Result<(), TryReserveError> { in try_reserve()
349 pub fn try_reserve_for_push(&mut self, len: usize) -> Result<(), TryReserveError> { in try_reserve_for_push()
371 pub fn reserve_exact(&mut self, len: usize, additional: usize) { in reserve_exact()
377 &mut self, in try_reserve_exact()
395 pub fn shrink_to_fit(&mut self, cap: usize) { in shrink_to_fit()
403 fn needs_to_grow(&self, len: usize, additional: usize) -> bool { in needs_to_grow()
407 fn set_ptr_and_cap(&mut self, ptr: NonNull<[u8]>, cap: usize) { in set_ptr_and_cap()
[all …]
Dboxed.rs1218 fn drop(&mut self) { in drop()
1302 fn clone_from(&mut self, source: &Self) { in clone_from()
1320 fn eq(&self, other: &Self) -> bool { in eq()
1324 fn ne(&self, other: &Self) -> bool { in ne()
1331 fn partial_cmp(&self, other: &Self) -> Option<Ordering> { in partial_cmp()
1335 fn lt(&self, other: &Self) -> bool { in lt()
1339 fn le(&self, other: &Self) -> bool { in le()
1343 fn ge(&self, other: &Self) -> bool { in ge()
1347 fn gt(&self, other: &Self) -> bool { in gt()
1354 fn cmp(&self, other: &Self) -> Ordering { in cmp()
[all …]
Dalloc.rs182 fn alloc_impl(&self, layout: Layout, zeroed: bool) -> Result<NonNull<[u8]>, AllocError> { in alloc_impl()
197 &self, in grow_impl()
246 fn allocate(&self, layout: Layout) -> Result<NonNull<[u8]>, AllocError> { in allocate()
251 fn allocate_zeroed(&self, layout: Layout) -> Result<NonNull<[u8]>, AllocError> { in allocate_zeroed()
256 unsafe fn deallocate(&self, ptr: NonNull<u8>, layout: Layout) { in deallocate()
266 &self, in grow()
277 &self, in grow_zeroed()
288 &self, in shrink()
431 unsafe fn write_clone_into_raw(&self, target: *mut Self); in write_clone_into_raw()
436 default unsafe fn write_clone_into_raw(&self, target: *mut Self) { in write_clone_into_raw()
[all …]
/Linux-v6.6/drivers/net/ethernet/aquantia/atlantic/
Daq_ring.c84 static int aq_get_rxpages(struct aq_ring_s *self, struct aq_ring_buff_s *rxbuf) in aq_get_rxpages()
135 static struct aq_ring_s *aq_ring_alloc(struct aq_ring_s *self, in aq_ring_alloc()
165 struct aq_ring_s *aq_ring_tx_alloc(struct aq_ring_s *self, in aq_ring_tx_alloc()
192 struct aq_ring_s *aq_ring_rx_alloc(struct aq_ring_s *self, in aq_ring_rx_alloc()
236 aq_ring_hwts_rx_alloc(struct aq_ring_s *self, struct aq_nic_s *aq_nic, in aq_ring_hwts_rx_alloc()
259 int aq_ring_init(struct aq_ring_s *self, const enum atl_ring_type ring_type) in aq_ring_init()
314 bool aq_ring_tx_clean(struct aq_ring_s *self) in aq_ring_tx_clean()
368 static void aq_rx_checksum(struct aq_ring_s *self, in aq_rx_checksum()
557 static int __aq_ring_rx_clean(struct aq_ring_s *self, struct napi_struct *napi, in __aq_ring_rx_clean()
859 int aq_ring_rx_clean(struct aq_ring_s *self, in aq_ring_rx_clean()
[all …]
Daq_pci_func.c147 int aq_pci_func_alloc_irq(struct aq_nic_s *self, unsigned int i, in aq_pci_func_alloc_irq()
172 void aq_pci_func_free_irqs(struct aq_nic_s *self) in aq_pci_func_free_irqs()
196 unsigned int aq_pci_func_get_irq_type(struct aq_nic_s *self) in aq_pci_func_get_irq_type()
206 static void aq_pci_free_irq_vectors(struct aq_nic_s *self) in aq_pci_free_irq_vectors()
216 struct aq_nic_s *self; in aq_pci_probe() local
346 struct aq_nic_s *self = pci_get_drvdata(pdev); in aq_pci_remove() local
370 struct aq_nic_s *self = pci_get_drvdata(pdev); in aq_pci_shutdown() local
/Linux-v6.6/tools/testing/selftests/hid/tests/
Dtest_usb_crash.py53 def __init__(self, name=None, input_info=None): argument
60 def is_ready(self): argument
65 def get_evdev(self, application=None): argument
82 def new_uhdev(self, usbVidPid, request): argument
87 def test_creation(self): argument
/Linux-v6.6/drivers/crypto/intel/qat/qat_dh895xcc/
Dadf_dh895xcc_hw_data.c28 static u32 get_accel_mask(struct adf_hw_device_data *self) in get_accel_mask()
36 static u32 get_ae_mask(struct adf_hw_device_data *self) in get_ae_mask()
43 static u32 get_misc_bar_id(struct adf_hw_device_data *self) in get_misc_bar_id()
48 static u32 get_ts_clock(struct adf_hw_device_data *self) in get_ts_clock()
56 static u32 get_etr_bar_id(struct adf_hw_device_data *self) in get_etr_bar_id()
61 static u32 get_sram_bar_id(struct adf_hw_device_data *self) in get_sram_bar_id()
98 static enum dev_sku_info get_sku(struct adf_hw_device_data *self) in get_sku()
/Linux-v6.6/Documentation/sphinx/
Dkfigure.py108 def pass_handle(self, node): # pylint: disable=W0613 argument
436 def visit_kernel_image(self, node): # pylint: disable=W0613 argument
456 def run(self): argument
473 def visit_kernel_figure(self, node): # pylint: disable=W0613 argument
492 def run(self): argument
511 def visit_kernel_render(self, node): argument
581 def run(self): argument
584 def build_node(self): argument
/Linux-v6.6/scripts/tracing/
Ddraw_functrace.py35 def __init__(self, func, time = None, parent = None): argument
44 def calls(self, func, calltime): argument
53 def getParent(self, func): argument
67 def __repr__(self): argument
70 def __toString(self, branch, lastChild): argument
/Linux-v6.6/rust/kernel/sync/
Dcondvar.rs106 fn wait_internal<T: ?Sized, B: Backend>(&self, wait_state: u32, guard: &mut Guard<'_, T, B>) { in wait_internal() argument
133 pub fn wait<T: ?Sized, B: Backend>(&self, guard: &mut Guard<'_, T, B>) -> bool { in wait()
142 pub fn wait_uninterruptible<T: ?Sized, B: Backend>(&self, guard: &mut Guard<'_, T, B>) { in wait_uninterruptible() argument
147 fn notify(&self, count: i32, flags: u32) { in notify()
163 pub fn notify_one(&self) { in notify_one()
171 pub fn notify_all(&self) { in notify_all()
/Linux-v6.6/drivers/comedi/drivers/ni_routing/tools/
Dconvert_csv_to_c.py224 def __init__(self, pattern='csv/device_routes/*.csv'): argument
227 def to_listinit(self): argument
277 def save(self): argument
412 def __init__(self, pattern='csv/route_values/*.csv'): argument
415 def to_structinit(self): argument
466 def save(self): argument
/Linux-v6.6/tools/testing/selftests/bpf/
Dtest_bpftool.py74 def test_feature_dev_json(self, iface): argument
93 def test_feature_kernel(self): argument
118 def test_feature_kernel_full(self): argument
141 def test_feature_kernel_full_vs_not_full(self): argument
159 def test_feature_macros(self): argument
Dtest_offload.py281 def __init__(self, path): argument
285 def __len__(self): argument
288 def __getitem__(self, key): argument
293 def __setitem__(self, key, value): argument
303 def _debugfs_dir_read(self, path): argument
350 def __init__(self, port_count=1): argument
379 def get_ifnames(self): argument
387 def wait_for_netdevs(self, port_count): argument
402 def dfs_num_bound_progs(self): argument
407 def dfs_get_bound_progs(self, expected): argument
[all …]

12345678910>>...14