Lines Matching refs:ta
528 int ta = 0; in pr_is_watchpoint() local
600 ta = 1; in pr_is_watchpoint()
608 *pta = ta; in pr_is_watchpoint()
706 sys_watchpoint(caddr_t addr, int watchcode, int ta) in sys_watchpoint() argument
722 sqp->sq_info.si_trapafter = ta; in sys_watchpoint()
792 int ta; in watch_xcopyin() local
802 watchcode = pr_is_watchpoint(&vaddr, &ta, in watch_xcopyin()
804 if (watchcode && ta == 0) in watch_xcopyin()
828 while (count && watchcode && ta && len > part && error == 0) { in watch_xcopyin()
850 (!sys_watchpoint(vaddr, watchcode, ta) || in watch_xcopyin()
882 int ta; in watch_xcopyout() local
893 watchcode = pr_is_watchpoint(&vaddr, &ta, in watch_xcopyout()
896 if (ta == 0) in watch_xcopyout()
927 while (count && watchcode && ta && len > part && error == 0) { in watch_xcopyout()
948 (!sys_watchpoint(vaddr, watchcode, ta) || in watch_xcopyout()
986 int ta; in watch_copyinstr() local
997 watchcode = pr_is_watchpoint(&vaddr, &ta, in watch_copyinstr()
1000 if (ta == 0) in watch_copyinstr()
1037 while (resid && watchcode && ta && len > part && error == 0 && in watch_copyinstr()
1062 (!sys_watchpoint(vaddr, watchcode, ta) || in watch_copyinstr()
1100 int ta; in watch_copyoutstr() local
1111 watchcode = pr_is_watchpoint(&vaddr, &ta, in watch_copyoutstr()
1113 if (watchcode && ta == 0) in watch_copyoutstr()
1144 while (resid && watchcode && ta && len > part && error == 0 && in watch_copyoutstr()
1169 (!sys_watchpoint(vaddr, watchcode, ta) || in watch_copyoutstr()
1199 int ta; in watch_fuword() local
1205 watchcode = pr_is_watchpoint(&vaddr, &ta, size, NULL, S_READ); in watch_fuword()
1206 if (watchcode == 0 || ta != 0) { in watch_fuword()
1217 (!sys_watchpoint(vaddr, watchcode, ta) || in watch_fuword()
1223 if (watchcode == 0 || ta != 0) in watch_fuword()
1269 int ta; in watch_suword8() local
1275 watchcode = pr_is_watchpoint(&vaddr, &ta, sizeof (value), NULL, in watch_suword8()
1277 if (watchcode == 0 || ta != 0) { in watch_suword8()
1290 (!sys_watchpoint(vaddr, watchcode, ta) || in watch_suword8()
1296 if (watchcode == 0 || ta != 0) in watch_suword8()
1311 int ta; in watch_suword16() local
1317 watchcode = pr_is_watchpoint(&vaddr, &ta, sizeof (value), NULL, in watch_suword16()
1319 if (watchcode == 0 || ta != 0) { in watch_suword16()
1332 (!sys_watchpoint(vaddr, watchcode, ta) || in watch_suword16()
1338 if (watchcode == 0 || ta != 0) in watch_suword16()
1353 int ta; in watch_suword32() local
1359 watchcode = pr_is_watchpoint(&vaddr, &ta, sizeof (value), NULL, in watch_suword32()
1361 if (watchcode == 0 || ta != 0) { in watch_suword32()
1374 (!sys_watchpoint(vaddr, watchcode, ta) || in watch_suword32()
1380 if (watchcode == 0 || ta != 0) in watch_suword32()
1396 int ta; in watch_suword64() local
1402 watchcode = pr_is_watchpoint(&vaddr, &ta, sizeof (value), NULL, in watch_suword64()
1404 if (watchcode == 0 || ta != 0) { in watch_suword64()
1417 (!sys_watchpoint(vaddr, watchcode, ta) || in watch_suword64()
1423 if (watchcode == 0 || ta != 0) in watch_suword64()
1518 int mapped, watchcode, ta; in watch_physio() local
1522 watchcode = pr_is_watchpoint(&vaddr, &ta, len, in watch_physio()
1525 if (watchcode == 0 || ta != 0) { in watch_physio()
1546 (!sys_watchpoint(vaddr, watchcode, ta) || in watch_physio()
1555 if (watchcode == 0 || ta != 0) { in watch_physio()