Lines Matching refs:DebugData

1224 			arm_debug_set32(thread->machine.DebugData);  in machine_thread_set_state()
1301 arm_debug_set32(thread->machine.DebugData); in machine_thread_set_state()
1377 arm_debug_set64(thread->machine.DebugData); in machine_thread_set_state()
1503 thread->machine.DebugData = NULL; in machine_thread_state_initialize()
1606 if (thread && thread->machine.DebugData) { in find_debug_state32()
1607 return &(thread->machine.DebugData->uds.ds32); in find_debug_state32()
1616 if (thread && thread->machine.DebugData) { in find_debug_state64()
1617 return &(thread->machine.DebugData->uds.ds64); in find_debug_state64()
1638 thread->machine.DebugData = zalloc_flags(ads_zone, in find_or_allocate_debug_state64()
1640 bzero(thread->machine.DebugData, sizeof *(thread->machine.DebugData)); in find_or_allocate_debug_state64()
1641 thread->machine.DebugData->dsh.flavor = ARM_DEBUG_STATE64; in find_or_allocate_debug_state64()
1642 thread->machine.DebugData->dsh.count = ARM_DEBUG_STATE64_COUNT; in find_or_allocate_debug_state64()
1663 thread->machine.DebugData = zalloc_flags(ads_zone, in find_or_allocate_debug_state32()
1665 bzero(thread->machine.DebugData, sizeof *(thread->machine.DebugData)); in find_or_allocate_debug_state32()
1666 thread->machine.DebugData->dsh.flavor = ARM_DEBUG_STATE32; in find_or_allocate_debug_state32()
1667 thread->machine.DebugData->dsh.count = ARM_DEBUG_STATE32_COUNT; in find_or_allocate_debug_state32()
1681 if (thread != NULL && thread->machine.DebugData != NULL) { in free_debug_state()
1682 void *pTmp = thread->machine.DebugData; in free_debug_state()
1683 thread->machine.DebugData = NULL; in free_debug_state()