Lines Matching refs:DebugData

1331 			arm_debug_set32(thread->machine.DebugData);  in machine_thread_set_state()
1408 arm_debug_set32(thread->machine.DebugData); in machine_thread_set_state()
1484 arm_debug_set64(thread->machine.DebugData); in machine_thread_set_state()
1610 thread->machine.DebugData = NULL; in machine_thread_state_initialize()
1713 if (thread && thread->machine.DebugData) { in find_debug_state32()
1714 return &(thread->machine.DebugData->uds.ds32); in find_debug_state32()
1723 if (thread && thread->machine.DebugData) { in find_debug_state64()
1724 return &(thread->machine.DebugData->uds.ds64); in find_debug_state64()
1747 thread->machine.DebugData = zalloc_flags(ads_zone, in find_or_allocate_debug_state64()
1749 bzero(thread->machine.DebugData, sizeof *(thread->machine.DebugData)); in find_or_allocate_debug_state64()
1750 thread->machine.DebugData->dsh.flavor = ARM_DEBUG_STATE64; in find_or_allocate_debug_state64()
1751 thread->machine.DebugData->dsh.count = ARM_DEBUG_STATE64_COUNT; in find_or_allocate_debug_state64()
1752 os_ref_init(&thread->machine.DebugData->ref, &dbg_refgrp); in find_or_allocate_debug_state64()
1773 thread->machine.DebugData = zalloc_flags(ads_zone, in find_or_allocate_debug_state32()
1775 bzero(thread->machine.DebugData, sizeof *(thread->machine.DebugData)); in find_or_allocate_debug_state32()
1776 thread->machine.DebugData->dsh.flavor = ARM_DEBUG_STATE32; in find_or_allocate_debug_state32()
1777 thread->machine.DebugData->dsh.count = ARM_DEBUG_STATE32_COUNT; in find_or_allocate_debug_state32()
1778 os_ref_init(&thread->machine.DebugData->ref, &dbg_refgrp); in find_or_allocate_debug_state32()
1792 if (thread != NULL && thread->machine.DebugData != NULL) { in free_debug_state()
1793 arm_debug_state_t *pTmp = thread->machine.DebugData; in free_debug_state()
1794 thread->machine.DebugData = NULL; in free_debug_state()