Lines Matching refs:DebugData

1343 			arm_debug_set32(thread->machine.DebugData);  in machine_thread_set_state()
1420 arm_debug_set32(thread->machine.DebugData); in machine_thread_set_state()
1496 arm_debug_set64(thread->machine.DebugData); in machine_thread_set_state()
1622 thread->machine.DebugData = NULL; in machine_thread_state_initialize()
1728 if (thread && thread->machine.DebugData) { in find_debug_state32()
1729 return &(thread->machine.DebugData->uds.ds32); in find_debug_state32()
1738 if (thread && thread->machine.DebugData) { in find_debug_state64()
1739 return &(thread->machine.DebugData->uds.ds64); in find_debug_state64()
1762 thread->machine.DebugData = zalloc_flags(ads_zone, in find_or_allocate_debug_state64()
1764 bzero(thread->machine.DebugData, sizeof *(thread->machine.DebugData)); in find_or_allocate_debug_state64()
1765 thread->machine.DebugData->dsh.flavor = ARM_DEBUG_STATE64; in find_or_allocate_debug_state64()
1766 thread->machine.DebugData->dsh.count = ARM_DEBUG_STATE64_COUNT; in find_or_allocate_debug_state64()
1767 os_ref_init(&thread->machine.DebugData->ref, &dbg_refgrp); in find_or_allocate_debug_state64()
1788 thread->machine.DebugData = zalloc_flags(ads_zone, in find_or_allocate_debug_state32()
1790 bzero(thread->machine.DebugData, sizeof *(thread->machine.DebugData)); in find_or_allocate_debug_state32()
1791 thread->machine.DebugData->dsh.flavor = ARM_DEBUG_STATE32; in find_or_allocate_debug_state32()
1792 thread->machine.DebugData->dsh.count = ARM_DEBUG_STATE32_COUNT; in find_or_allocate_debug_state32()
1793 os_ref_init(&thread->machine.DebugData->ref, &dbg_refgrp); in find_or_allocate_debug_state32()
1807 if (thread != NULL && thread->machine.DebugData != NULL) { in free_debug_state()
1808 arm_debug_state_t *pTmp = thread->machine.DebugData; in free_debug_state()
1809 thread->machine.DebugData = NULL; in free_debug_state()