Home
last modified time | relevance | path

Searched refs:m_termtype (Results 1 – 6 of 6) sorted by relevance

/illumos-gate/usr/src/cmd/mdb/common/kmdb/
H A Dkmdb_main.c307 if (mdb.m_termtype == NULL) { in kmdb_startup()
322 mdb.m_termtype = strdup(ttype); in kmdb_startup()
334 strfree(mdb.m_termtype); in kmdb_startup()
335 mdb.m_termtype = strdup(promttype); in kmdb_startup()
342 if ((mdb.m_term = mdb_termio_create(mdb.m_termtype, inio, outio)) == in kmdb_startup()
343 NULL && strcmp(mdb.m_termtype, KMDB_DEF_TERM_TYPE) != 0) { in kmdb_startup()
345 KMDB_DEF_TERM_TYPE "'\n", mdb.m_termtype); in kmdb_startup()
347 strfree(mdb.m_termtype); in kmdb_startup()
348 mdb.m_termtype = strdup(KMDB_DEF_TERM_TYPE); in kmdb_startup()
350 if ((mdb.m_term = mdb_termio_create(mdb.m_termtype, inio, in kmdb_startup()
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_main.c471 if ((mdb.m_termtype = getenv("TERM")) != NULL) { in main()
472 mdb.m_termtype = strdup(mdb.m_termtype); in main()
701 if (mdb.m_termtype == NULL || (mdb.m_flags & in main()
703 if (mdb.m_termtype != NULL) in main()
704 strfree(mdb.m_termtype); in main()
706 if ((mdb.m_termtype = mdb_scf_console_term()) != in main()
715 if (mdb.m_termtype == NULL && (mdb.m_termtype = in main()
737 if ((mdb.m_term = mdb_termio_create(mdb.m_termtype, in main()
H A Dmdb.h162 char *m_termtype; /* Interactive mode terminal type */ member
H A Dmdb_set.c150 mdb.m_termtype = strdup(arg); in opt_set_term()
H A Dmdb.c1300 mdb.m_forkmode, mdb.m_root, mdb.m_termtype, mdb.m_ipathstr, in mdb_get_config()
1381 mdb.m_termtype = strndup(s, (size_t)(p - s)); in mdb_set_config()
H A Dmdb_cmds.c2503 mdb_printf("%s\n", mdb.m_termtype); in cmd_term()