Lines Matching refs:setmem
756 if (mon_ops->setmem.resp_delim) in monitor_open()
757 compile_pattern (mon_ops->setmem.resp_delim, &setmem_resp_delim_pattern, in monitor_open()
1452 if ((memaddr & 0x7) == 0 && len >= 8 && current_monitor->setmem.cmdll) in monitor_write_memory()
1455 cmd = current_monitor->setmem.cmdll; in monitor_write_memory()
1459 if ((memaddr & 0x3) == 0 && len >= 4 && current_monitor->setmem.cmdl) in monitor_write_memory()
1462 cmd = current_monitor->setmem.cmdl; in monitor_write_memory()
1464 else if ((memaddr & 0x1) == 0 && len >= 2 && current_monitor->setmem.cmdw) in monitor_write_memory()
1467 cmd = current_monitor->setmem.cmdw; in monitor_write_memory()
1472 cmd = current_monitor->setmem.cmdb; in monitor_write_memory()
1491 if (current_monitor->setmem.resp_delim) in monitor_write_memory()
1497 if (current_monitor->setmem.term) in monitor_write_memory()
1500 monitor_expect (current_monitor->setmem.term, NULL, 0); in monitor_write_memory()
1503 if (current_monitor->setmem.term_cmd) in monitor_write_memory()
1505 monitor_printf ("%s", current_monitor->setmem.term_cmd); in monitor_write_memory()
1526 monitor_printf (current_monitor->setmem.cmdb, memaddr); in monitor_write_memory_bytes()
1621 monitor_printf (current_monitor->setmem.cmdll, memaddr); in monitor_write_memory_longlongs()
1665 if ((len > 8) && (((len & 0x07)) == 0) && current_monitor->setmem.cmdll) in monitor_write_memory_block()