Lines Matching refs:ta
505 int ta = 0; in pr_is_watchpoint() local
577 ta = 1; in pr_is_watchpoint()
585 *pta = ta; in pr_is_watchpoint()
683 sys_watchpoint(caddr_t addr, int watchcode, int ta) in sys_watchpoint() argument
699 sqp->sq_info.si_trapafter = ta; in sys_watchpoint()
769 int ta; in watch_xcopyin() local
779 watchcode = pr_is_watchpoint(&vaddr, &ta, in watch_xcopyin()
781 if (watchcode && ta == 0) in watch_xcopyin()
805 while (count && watchcode && ta && len > part && error == 0) { in watch_xcopyin()
827 (!sys_watchpoint(vaddr, watchcode, ta) || in watch_xcopyin()
859 int ta; in watch_xcopyout() local
870 watchcode = pr_is_watchpoint(&vaddr, &ta, in watch_xcopyout()
873 if (ta == 0) in watch_xcopyout()
904 while (count && watchcode && ta && len > part && error == 0) { in watch_xcopyout()
925 (!sys_watchpoint(vaddr, watchcode, ta) || in watch_xcopyout()
963 int ta; in watch_copyinstr() local
974 watchcode = pr_is_watchpoint(&vaddr, &ta, in watch_copyinstr()
977 if (ta == 0) in watch_copyinstr()
1014 while (resid && watchcode && ta && len > part && error == 0 && in watch_copyinstr()
1039 (!sys_watchpoint(vaddr, watchcode, ta) || in watch_copyinstr()
1077 int ta; in watch_copyoutstr() local
1088 watchcode = pr_is_watchpoint(&vaddr, &ta, in watch_copyoutstr()
1090 if (watchcode && ta == 0) in watch_copyoutstr()
1121 while (resid && watchcode && ta && len > part && error == 0 && in watch_copyoutstr()
1146 (!sys_watchpoint(vaddr, watchcode, ta) || in watch_copyoutstr()
1176 int ta; in watch_fuword() local
1182 watchcode = pr_is_watchpoint(&vaddr, &ta, size, NULL, S_READ); in watch_fuword()
1183 if (watchcode == 0 || ta != 0) { in watch_fuword()
1194 (!sys_watchpoint(vaddr, watchcode, ta) || in watch_fuword()
1200 if (watchcode == 0 || ta != 0) in watch_fuword()
1246 int ta; in watch_suword8() local
1252 watchcode = pr_is_watchpoint(&vaddr, &ta, sizeof (value), NULL, in watch_suword8()
1254 if (watchcode == 0 || ta != 0) { in watch_suword8()
1267 (!sys_watchpoint(vaddr, watchcode, ta) || in watch_suword8()
1273 if (watchcode == 0 || ta != 0) in watch_suword8()
1288 int ta; in watch_suword16() local
1294 watchcode = pr_is_watchpoint(&vaddr, &ta, sizeof (value), NULL, in watch_suword16()
1296 if (watchcode == 0 || ta != 0) { in watch_suword16()
1309 (!sys_watchpoint(vaddr, watchcode, ta) || in watch_suword16()
1315 if (watchcode == 0 || ta != 0) in watch_suword16()
1330 int ta; in watch_suword32() local
1336 watchcode = pr_is_watchpoint(&vaddr, &ta, sizeof (value), NULL, in watch_suword32()
1338 if (watchcode == 0 || ta != 0) { in watch_suword32()
1351 (!sys_watchpoint(vaddr, watchcode, ta) || in watch_suword32()
1357 if (watchcode == 0 || ta != 0) in watch_suword32()
1373 int ta; in watch_suword64() local
1379 watchcode = pr_is_watchpoint(&vaddr, &ta, sizeof (value), NULL, in watch_suword64()
1381 if (watchcode == 0 || ta != 0) { in watch_suword64()
1394 (!sys_watchpoint(vaddr, watchcode, ta) || in watch_suword64()
1400 if (watchcode == 0 || ta != 0) in watch_suword64()
1495 int mapped, watchcode, ta; in watch_physio() local
1499 watchcode = pr_is_watchpoint(&vaddr, &ta, len, in watch_physio()
1502 if (watchcode == 0 || ta != 0) { in watch_physio()
1523 (!sys_watchpoint(vaddr, watchcode, ta) || in watch_physio()
1532 if (watchcode == 0 || ta != 0) { in watch_physio()