Home
last modified time | relevance | path

Searched refs:elt_type (Results 1 – 2 of 2) sorted by relevance

/xnu-10063.141.1/tools/lldbmacros/core/
H A Dcollections.py87 def iter_queue_entries(head_value, elt_type, field_name_or_path, backwards=False): argument
109 transform = elt_type.xContainerOfTransform(field_name_or_path)
120 def iter_queue(head_value, elt_type, field_name_or_path, backwards=False, unpack=None): argument
156 elt = elt.xCreateValueFromAddress('element', addr, elt_type)
161 def iter_circle_queue(head_value, elt_type, field_name_or_path, backwards=False): argument
183 transform = elt_type.xContainerOfTransform(field_name_or_path)
200 def iter_mpsc_queue(head_value, elt_type, field_name_or_path): argument
218 transform = elt_type.xContainerOfTransform(field_name_or_path)
243 def __init__(self, head_value, elt_type, field_name_or_path): argument
244 self.transform = elt_type.xContainerOfTransform(field_name_or_path)
[all …]
/xnu-10063.141.1/tools/lldbmacros/
H A Dmemory.py379 def kalloc_array_decode(addr, elt_type): argument
407 if isinstance(elt_type, str):
408 elt_type = gettype(elt_type)
411 ptr = target.xCreateValueFromAddress(None, ptr, elt_type)
412 return (value(ptr.AddressOf()), size // elt_type.GetByteSize())