Lines Matching refs:DebugData

1390 			arm_debug_set32(thread->machine.DebugData);  in machine_thread_set_state()
1467 arm_debug_set32(thread->machine.DebugData); in machine_thread_set_state()
1543 arm_debug_set64(thread->machine.DebugData); in machine_thread_set_state()
1669 thread->machine.DebugData = NULL; in machine_thread_state_initialize()
1780 if (thread && thread->machine.DebugData) { in find_debug_state32()
1781 return &(thread->machine.DebugData->uds.ds32); in find_debug_state32()
1790 if (thread && thread->machine.DebugData) { in find_debug_state64()
1791 return &(thread->machine.DebugData->uds.ds64); in find_debug_state64()
1814 thread->machine.DebugData = zalloc_flags(ads_zone, in find_or_allocate_debug_state64()
1816 bzero(thread->machine.DebugData, sizeof *(thread->machine.DebugData)); in find_or_allocate_debug_state64()
1817 thread->machine.DebugData->dsh.flavor = ARM_DEBUG_STATE64; in find_or_allocate_debug_state64()
1818 thread->machine.DebugData->dsh.count = ARM_DEBUG_STATE64_COUNT; in find_or_allocate_debug_state64()
1819 os_ref_init(&thread->machine.DebugData->ref, &dbg_refgrp); in find_or_allocate_debug_state64()
1840 thread->machine.DebugData = zalloc_flags(ads_zone, in find_or_allocate_debug_state32()
1842 bzero(thread->machine.DebugData, sizeof *(thread->machine.DebugData)); in find_or_allocate_debug_state32()
1843 thread->machine.DebugData->dsh.flavor = ARM_DEBUG_STATE32; in find_or_allocate_debug_state32()
1844 thread->machine.DebugData->dsh.count = ARM_DEBUG_STATE32_COUNT; in find_or_allocate_debug_state32()
1845 os_ref_init(&thread->machine.DebugData->ref, &dbg_refgrp); in find_or_allocate_debug_state32()
1859 if (thread != NULL && thread->machine.DebugData != NULL) { in free_debug_state()
1860 arm_debug_state_t *pTmp = thread->machine.DebugData; in free_debug_state()
1861 thread->machine.DebugData = NULL; in free_debug_state()