Lines Matching refs:mi_command_name
76 char *mi_command_name;
139 gdb_assert (m_pyobj->mi_command_name != nullptr);
140 gdb_assert (new_pyobj->mi_command_name != nullptr);
143 gdb_assert (m_pyobj->mi_command_name == this->name ());
149 gdb_assert (strcmp (new_pyobj->mi_command_name,
150 m_pyobj->mi_command_name) == 0);
151 std::swap (new_pyobj->mi_command_name, m_pyobj->mi_command_name);
234 const char *name = cmd_obj->mi_command_name;
261 gdb_assert (obj->mi_command_name != nullptr);
263 pymicmd_debug_printf ("name = %s", obj->mi_command_name);
291 gdb_assert (obj->mi_command_name != nullptr);
293 pymicmd_debug_printf ("name = %s", obj->mi_command_name);
297 mi_command *cmd = mi_cmd_lookup (obj->mi_command_name);
318 mi_command_py_up mi_cmd (new mi_command_py (obj->mi_command_name, obj));
381 if (cmd->mi_command_name != nullptr)
391 if (strcmp (cmd->mi_command_name, name) != 0)
409 cmd->mi_command_name = xstrdup (name);
427 (cmd->mi_command_name == nullptr
428 ? "(null)" : cmd->mi_command_name));
437 xfree (cmd->mi_command_name);
438 cmd->mi_command_name = nullptr;
482 gdb_assert (micmd_obj->mi_command_name != nullptr);
483 std::string name_str = string_printf ("-%s", micmd_obj->mi_command_name);