/lxc/src/python-lxc/examples/ |
H A D | pyconsole.py | 34 escape = 1 variable 36 sys.exit("Usage: %s container-name [ttynum [escape]]" % sys.argv[0]) 40 escape = ord(sys.argv[3]) - ord('a') + 1 variable 45 (ct.name, ttynum, ord('a') + escape-1)) 52 ct.console(ttynum, 0, 1, 2, escape)
|
/lxc/src/lxc/ |
H A D | console.h | 41 * disable exiting the pty via a escape sequence. */ 42 int escape; member in struct:lxc_tty_state 44 * escape sequence has been received. */ 123 int escape);
|
H A D | arguments.h | 65 char escape; member in struct:lxc_arguments
|
H A D | console.c | 607 if (ts->escape != -1) { 609 if (c == ts->escape && !ts->saw_escape) { 658 int escape) 686 ttynum, 'a' + escape - 1); 697 ts->escape = escape; 656 lxc_console(struct lxc_container *c, int ttynum, int stdinfd, int stdoutfd, int stderrfd, int escape) argument
|
H A D | lxccontainer.h | 601 * \param escape The escape character (1 == 'a', 2 == 'b', ...). 609 int stdinfd, int stdoutfd, int stderrfd, int escape);
|
H A D | lxccontainer.c | 496 int stdoutfd, int stderrfd, int escape) 504 ret = lxc_console(c, ttynum, stdinfd, stdoutfd, stderrfd, escape); 495 lxcapi_console(struct lxc_container *c, int ttynum, int stdinfd, int stdoutfd, int stderrfd, int escape) argument
|
/lxc/src/lxc/tools/ |
H A D | lxc_console.c | 66 args->escape = etoc(arg); 74 {"escape", required_argument, 0, 'e'}, 88 -e, --escape=PREFIX prefix for escape command\n\ 94 .escape = 1, 148 ret = c->console(c, my_args.ttynum, 0, 1, 2, my_args.escape);
|
/lxc/src/lxc/cgroups/ |
H A D | cgroup.h | 50 bool (*escape)(); member in struct:cgroup_ops
|
H A D | cgroup.c | 118 return ops->escape(handler->cgroup_data);
|
H A D | cgfsng.c | 1061 * Root spawned containers escape the current cgroup, so use init's 1732 /* Only root needs to escape to the cgroup of its init */ 1745 SYSERROR("Failed to escape to %s", fullpath); 1995 .escape = cgfsng_escape,
|
H A D | cgmanager.c | 1429 * We check whether we can talk to cgmanager, escape to root cgroup if 1441 // if root, try to escape to root cgroup 1661 .escape = cgm_escape,
|
H A D | cgfs.c | 2695 .escape = cgfs_escape,
|
/lxc/src/python-lxc/lxc/ |
H A D | __init__.py | 258 def console(self, ttynum=-1, stdinfd=0, stdoutfd=1, stderrfd=2, escape=1): 267 stderrfd, escape)
|
/lxc/src/python-lxc/ |
H A D | lxc.c | 800 "escape", NULL}; 801 int ttynum = -1, stdinfd = 0, stdoutfd = 1, stderrfd = 2, escape = 1; local 805 &escape)) 809 stdinfd, stdoutfd, stderrfd, escape) == 0) { 1631 "escape = 0) -> boolean\n"
|