Home
last modified time | relevance | path

Searched refs:GetGlobalVariable (Results 1 – 11 of 11) sorted by relevance

/xnu-12377.1.9/tools/lldbmacros/core/
H A Dkernelcore.py252 v = self._xnu_kernobj_12obscure12.GetGlobalVariable(name)
334 def GetGlobalVariable(name, target=None): member in KernelTarget
354 data_entries = self.GetGlobalVariable('CpuDataEntries')
355 BootCpuData = addressof(self.GetGlobalVariable('percpu_slot_cpu_data'))
366 var = addressof(self.GetGlobalVariable('percpu_slot_' + name))
474 head_element = self.GetGlobalVariable(iter_head_name)
478 return (addr & ~(unsigned(self.GetGlobalVariable("page_size")) - 1))
481 return trunc_page(addr + unsigned(self.GetGlobalVariable("page_size")) - 1)
484 if size > unsigned(self.GetGlobalVariable("page_size")):
486 val = ((addr + size) & (unsigned(self.GetGlobalVariable("page_size"))-1))
[all …]
/xnu-12377.1.9/tools/lldbmacros/
H A Dmicrostackshot.py11 metadata = kern.GetGlobalVariable('telemetry_metadata')
19 kern_ring = kern.GetGlobalVariable("_telemetry_kernel_ring")
33 base_kern_text = kern.GetGlobalVariable('vm_kernel_stext')
H A Dwaitq.py10 g_wqs = kern.GetGlobalVariable('global_waitqs')
11 g_cnt = unsigned(kern.GetGlobalVariable('g_num_waitqs'))
50 kern.GetGlobalVariable('has_lock_pv')
H A Dmemory.py82 for i in range(1, int(kern.GetGlobalVariable('num_zones'))):
221 mag_capacity = unsigned(kern.GetGlobalVariable('_zc_mag_size'))
327 mag_capacity = unsigned(kern.GetGlobalVariable('_zc_mag_size'))
542 kernel_range_start = kern.GetGlobalVariable('segDATACONSTB')
543 kernel_range_end = kernel_range_start + kern.GetGlobalVariable(
546 kernel_range_start = kern.GetGlobalVariable('sconst')
547 kernel_range_end = kernel_range_start + kern.GetGlobalVariable(
558 kalloc_type_heap_array = kern.GetGlobalVariable('kalloc_type_heap_array')
559 kt_var_heaps = kern.GetGlobalVariable('kt_var_heaps') + 1
591 kalloc_type_heap_array = kern.GetGlobalVariable('kalloc_type_heap_array')
[all …]
H A Dexclaves.py60 domain_tbl = kern.GetGlobalVariable('root_table')
H A Drecount.py200 plan = kern.GetGlobalVariable("recount_" + name + "_plan")
485 processor_list = kern.GetGlobalVariable("processor_list")
498 processor_list = kern.GetGlobalVariable("processor_list")
H A Dlog.py352 pcpu_lqs = addressof(kern.GetGlobalVariable('percpu_slot_oslog_queue'))
H A Dprocess.py1691 processor_list = kern.GetGlobalVariable('processor_list')
1712 processor_list = kern.GetGlobalVariable('processor_list')
H A Dmbufs.py13 for i in range(1, int(kern.GetGlobalVariable('num_zones'))):
H A Dxnu.py1222 bootargs = Cast(kern.GetGlobalVariable('PE_state').bootArgs, 'boot_args *')
H A Dpmap.py899 pv_head_table = cast(kern.GetGlobalVariable('pv_head_table'), "uintptr_t*")