Home
last modified time | relevance | path

Searched refs:get_type (Results 1 – 25 of 28) sorted by relevance

12

/linux/scripts/gdb/linux/
H A Ddmesg.py37 sz = printk_ringbuffer_type.get_type().sizeof
41 off = printk_ringbuffer_type.get_type()['desc_ring'].bitpos // 8
43 sz = prb_desc_ring_type.get_type().sizeof
47 off = prb_desc_ring_type.get_type()['count_bits'].bitpos // 8
49 desc_sz = prb_desc_type.get_type().sizeof
50 off = prb_desc_ring_type.get_type()['descs'].bitpos // 8
54 info_sz = printk_info_type.get_type().sizeof
55 off = prb_desc_ring_type.get_type()['infos'].bitpos // 8
59 off = printk_ringbuffer_type.get_type()['text_data_ring'].bitpos // 8
61 sz = prb_data_ring_type.get_type().sizeof
[all …]
H A Dmapletree.py36 if mt.type == maple_tree_root_type.get_type().pointer():
38 elif mt.type != maple_tree_root_type.get_type():
40 .format(maple_tree_root_type.get_type().pointer(), mt.type))
63 return self.tree['ma_root'].cast(maple_enode_type.get_type().pointer())
110 if node.type != maple_enode_type.get_type().pointer():
112 … .format(mte_safe_root.__name__, maple_enode_type.get_type().pointer(), node.type))
115 val = indirect_ptr.cast(maple_enode_type.get_type().pointer())
121 if entry.type == maple_enode_type.get_type().pointer():
127 … .format(mte_node_type.__name__, maple_enode_type.get_type().pointer(), entry.type))
131 if node.type != maple_node_type.get_type().pointer():
[all …]
H A Drbtree.py26 if root.type == rb_root_type.get_type():
27 node = root.address.cast(rb_root_type.get_type().pointer())
28 elif root.type != rb_root_type.get_type().pointer():
42 if root.type == rb_root_type.get_type():
43 node = root.address.cast(rb_root_type.get_type().pointer())
44 elif root.type != rb_root_type.get_type().pointer():
59 return parent.cast(rb_node_type.get_type().pointer())
67 if node.type == rb_node_type.get_type():
68 node = node.address.cast(rb_node_type.get_type().pointer())
69 elif node.type != rb_node_type.get_type().pointer():
[all …]
H A Ddevice.py32 kobject_type.get_type().pointer(), "entry")
37 subsys = container_of(kobj, kset_type.get_type().pointer(), 'kobj')
38 subsys_priv = container_of(subsys, subsys_private_type.get_type().pointer(), 'subsys')
44 subsys = container_of(kobj, kset_type.get_type().pointer(), 'kobj')
45 subsys_priv = container_of(subsys, subsys_private_type.get_type().pointer(), 'subsys')
69 klist_node_type.get_type().pointer(), 'n_node')
74 dp = container_of(kn, device_private_type.get_type().pointer(), 'knode_bus')
80 dp = container_of(kn, device_private_type.get_type().pointer(), 'knode_class')
86 dp = container_of(kn, device_private_type.get_type().pointer(), 'knode_parent')
145 if dev.type != device_type.get_type().pointer():
H A Dlists.py24 if head.type == list_head.get_type().pointer():
26 elif head.type != list_head.get_type():
47 if head.type == hlist_head.get_type().pointer():
49 elif head.type != hlist_head.get_type():
66 if (head.type == list_head.get_type().pointer()):
68 elif (head.type != list_head.get_type()):
H A Dutils.py31 def get_type(self): member in CachedType
51 return uint_type.get_type()
55 return struct_page_type.get_type()
59 return long_type.get_type()
63 return ulong_type.get_type()
67 return size_t_type.get_type()
159 atomic_long_counter_offset = atomic_long_type.get_type()['counter'].bitpos
160 atomic_long_counter_sizeof = atomic_long_type.get_type()['counter'].type.sizeof
H A Dgenpd.py55 device_link_type.get_type().pointer(),
66 pm_domain_data_type.get_type().pointer(),
80 generic_pm_domain_type.get_type().pointer(),
H A Dtasks.py23 task_ptr_type = task_type.get_type().pointer()
87 thread_info_ptr_type = thread_info_type.get_type().pointer()
88 if task_type.get_type().fields()[0].type == thread_info_type.get_type():
H A Dradixtree.py28 return indirect_ptr.cast(radix_tree_node_type.get_type().pointer())
34 if root.type == radix_tree_root_type.get_type():
36 if root.type == radix_tree_root_type.get_type().pointer():
39 .format(radix_tree_root_type.get_type(), root.type))
H A Dmodules.py31 module_ptr_type = module_type.get_type().pointer()
92 t = self._module_use_type.get_type().pointer()
H A Dpage_owner.py77 …se.cast(utils.get_ulong_type()) + self.page_ext_size * index).cast(page_ext_t.get_type().pointer())
96 return addr.cast(page_owner_t.get_type().pointer())
H A Dslab.py28 slab_ptr_type = slab_type.get_type().pointer()
30 kmem_cache_ptr_type = kmem_cache_type.get_type().pointer()
32 freeptr_t_ptr = freeptr_t.get_type().pointer()
H A Dvfs.py57 return utils.container_of(d_u, dentry_type.get_type().pointer(), "d_u")
H A Dtimerlist.py13 timerqueue_node_type = utils.CachedType("struct timerqueue_node").get_type()
14 hrtimer_type = utils.CachedType("struct hrtimer").get_type()
H A Dinterrupts.py30 desc = desc.cast(irq_desc_type.get_type().pointer())
176 desc = ipi_desc[ipi].cast(irq_desc_type.get_type().pointer())
H A Dclk.py15 clk_core_type.get_type().pointer(), "child_node")
H A Dbpf.py30 bpf_ksym_ptr_type = bpf_ksym_type.get_type().pointer()
82 bpf_prog_ptr_type = bpf_prog_type.get_type().pointer()
H A Dvmalloc.py15 vmap_area_ptr_type = vmap_area_type.get_type().pointer()
H A Dstackdepot.py49 …ool + gdb.Value(offset).cast(utils.get_size_t_type())).cast(stack_record_type.get_type().pointer())
H A Dcpus.py176 task_ptr_type = task_type.get_type().pointer()
H A Dproc.py138 mount_ptr_type = mount_type.get_type().pointer()
/linux/drivers/regulator/
H A Dinternal.h85 const char *id, enum regulator_get_type get_type);
131 enum regulator_get_type get_type);
133 const char *id, enum regulator_get_type get_type);
135 enum regulator_get_type get_type);
137 struct regulator_bulk_data *consumers, enum regulator_get_type get_type);
H A Dcore.c2300 enum regulator_get_type get_type) in _regulator_get_common_check() argument
2302 if (get_type >= MAX_GET_TYPE) { in _regulator_get_common_check()
2303 dev_err(dev, "invalid type %d in %s\n", get_type, __func__); in _regulator_get_common_check()
2329 const char *id, enum regulator_get_type get_type) in _regulator_get_common() argument
2351 switch (get_type) { in _regulator_get_common()
2381 if (get_type == EXCLUSIVE_GET && rdev->open_count) { in _regulator_get_common()
2423 if (get_type == EXCLUSIVE_GET) { in _regulator_get_common()
2456 enum regulator_get_type get_type) in _regulator_get() argument
2461 ret = _regulator_get_common_check(dev, id, get_type); in _regulator_get()
2466 return _regulator_get_common(rdev, dev, id, get_type); in _regulator_get()
[all …]
/linux/drivers/md/
H A Ddm-exception-store.c73 static struct dm_exception_store_type *get_type(const char *type_name) in get_type() function
215 type = get_type("P"); in dm_exception_store_create()
217 type = get_type("N"); in dm_exception_store_create()
/linux/arch/powerpc/kernel/
H A Dreloc_32.S108 beq get_type /* value = 0 */
122 beq get_type /* We have r5 = 0 */
125 get_type: label

12