Lines Matching refs:iov
87 iovec iov; in check_hw_feature_supported()
88 iov.iov_base = &dreg_state; in check_hw_feature_supported()
89 iov.iov_len = sizeof(dreg_state); in check_hw_feature_supported()
92 feature == HwFeature::Watchpoint ? NT_ARM_HW_WATCH : NT_ARM_HW_BREAK, &iov); in check_hw_feature_supported()
127 iovec iov; in set_watchpoint() local
128 iov.iov_base = &dreg_state; in set_watchpoint()
129 iov.iov_len = offsetof(user_hwdebug_state, dbg_regs) + sizeof(dreg_state.dbg_regs[0]); in set_watchpoint()
131 ASSERT_EQ(0, ptrace(PTRACE_SETREGSET, child, NT_ARM_HW_WATCH, &iov)) << strerror(errno); in set_watchpoint()
312 iovec iov; in set_breakpoint() local
313 iov.iov_base = &dreg_state; in set_breakpoint()
314 iov.iov_len = offsetof(user_hwdebug_state, dbg_regs) + sizeof(dreg_state.dbg_regs[0]); in set_breakpoint()
316 ASSERT_EQ(0, ptrace(PTRACE_SETREGSET, child, NT_ARM_HW_BREAK, &iov)) << strerror(errno); in set_breakpoint()