GDB (API)
|
#include "defs.h"
#include "gdbcmd.h"
#include "tui/tui.h"
#include "tui/tui-hooks.h"
#include "tui/tui-data.h"
#include "tui/tui-layout.h"
#include "tui/tui-io.h"
#include "tui/tui-regs.h"
#include "tui/tui-stack.h"
#include "tui/tui-win.h"
#include "tui/tui-winsource.h"
#include "tui/tui-windata.h"
#include "target.h"
#include "frame.h"
#include "breakpoint.h"
#include "inferior.h"
#include "symtab.h"
#include "source.h"
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <signal.h>
#include <fcntl.h>
#include <setjmp.h>
#include "gdb_curses.h"
#include "readline/readline.h"
Go to the source code of this file.
Functions | |
void | tui_set_key_mode (enum tui_key_mode mode) |
void | tui_initialize_readline (void) |
void | tui_enable (void) |
void | tui_disable (void) |
void | strcat_to_buf (char *buf, int buflen, const char *item_to_add) |
void | tui_show_source (const char *fullname, int line) |
void | tui_show_assembly (struct gdbarch *gdbarch, CORE_ADDR addr) |
int | tui_is_window_visible (enum tui_win_type type) |
int | tui_get_command_dimension (unsigned int *width, unsigned int *height) |
Variables | |
int | tui_active = 0 |
enum tui_key_mode | tui_current_key_mode = TUI_COMMAND_MODE |
void strcat_to_buf | ( | char * | buf, |
int | buflen, | ||
const char * | item_to_add | ||
) |
void tui_disable | ( | void | ) |
void tui_enable | ( | void | ) |
int tui_get_command_dimension | ( | unsigned int * | width, |
unsigned int * | height | ||
) |
void tui_initialize_readline | ( | void | ) |
int tui_is_window_visible | ( | enum tui_win_type | type | ) |
void tui_set_key_mode | ( | enum tui_key_mode | mode | ) |
void tui_show_assembly | ( | struct gdbarch * | gdbarch, |
CORE_ADDR | addr | ||
) |
void tui_show_source | ( | const char * | fullname, |
int | line | ||
) |
int tui_active = 0 |