Lines Matching refs:cmd
362 static pid_t qtest_create_process(char *cmd) in qtest_create_process() argument
373 cmd, /* command line */ in qtest_create_process()
905 char *cmd; in qtest_vhmp() local
909 cmd = g_strdup_vprintf(fmt, ap); in qtest_vhmp()
912 cmd); in qtest_vhmp()
916 g_free(cmd); in qtest_vhmp()
1048 static void qtest_out(QTestState *s, const char *cmd, uint16_t addr, uint32_t value) in qtest_out() argument
1050 qtest_sendf(s, "%s 0x%x 0x%x\n", cmd, addr, value); in qtest_out()
1069 static uint32_t qtest_in(QTestState *s, const char *cmd, uint16_t addr) in qtest_in() argument
1075 qtest_sendf(s, "%s 0x%x\n", cmd, addr); in qtest_in()
1099 static void qtest_write(QTestState *s, const char *cmd, uint64_t addr, in qtest_write() argument
1102 qtest_sendf(s, "%s 0x%" PRIx64 " 0x%" PRIx64 "\n", cmd, addr, value); in qtest_write()
1126 static uint64_t qtest_read(QTestState *s, const char *cmd, uint64_t addr) in qtest_read() argument
1132 qtest_sendf(s, "%s 0x%" PRIx64 "\n", cmd, addr); in qtest_read()