Lines Matching refs:DebugData

1323 			arm_debug_set32(thread->machine.DebugData);  in machine_thread_set_state()
1400 arm_debug_set32(thread->machine.DebugData); in machine_thread_set_state()
1476 arm_debug_set64(thread->machine.DebugData); in machine_thread_set_state()
1602 thread->machine.DebugData = NULL; in machine_thread_state_initialize()
1705 if (thread && thread->machine.DebugData) { in find_debug_state32()
1706 return &(thread->machine.DebugData->uds.ds32); in find_debug_state32()
1715 if (thread && thread->machine.DebugData) { in find_debug_state64()
1716 return &(thread->machine.DebugData->uds.ds64); in find_debug_state64()
1739 thread->machine.DebugData = zalloc_flags(ads_zone, in find_or_allocate_debug_state64()
1741 bzero(thread->machine.DebugData, sizeof *(thread->machine.DebugData)); in find_or_allocate_debug_state64()
1742 thread->machine.DebugData->dsh.flavor = ARM_DEBUG_STATE64; in find_or_allocate_debug_state64()
1743 thread->machine.DebugData->dsh.count = ARM_DEBUG_STATE64_COUNT; in find_or_allocate_debug_state64()
1744 os_ref_init(&thread->machine.DebugData->ref, &dbg_refgrp); in find_or_allocate_debug_state64()
1765 thread->machine.DebugData = zalloc_flags(ads_zone, in find_or_allocate_debug_state32()
1767 bzero(thread->machine.DebugData, sizeof *(thread->machine.DebugData)); in find_or_allocate_debug_state32()
1768 thread->machine.DebugData->dsh.flavor = ARM_DEBUG_STATE32; in find_or_allocate_debug_state32()
1769 thread->machine.DebugData->dsh.count = ARM_DEBUG_STATE32_COUNT; in find_or_allocate_debug_state32()
1770 os_ref_init(&thread->machine.DebugData->ref, &dbg_refgrp); in find_or_allocate_debug_state32()
1784 if (thread != NULL && thread->machine.DebugData != NULL) { in free_debug_state()
1785 arm_debug_state_t *pTmp = thread->machine.DebugData; in free_debug_state()
1786 thread->machine.DebugData = NULL; in free_debug_state()