Lines Matching refs:Container

429 /* Base type and functions for Container */
433 } Container;
436 Container_dealloc(Container* self)
443 Container_init(Container *self, PyObject *args, PyObject *kwds)
476 Container *self;
478 self = (Container *)type->tp_alloc(type, 0);
483 /* Container properties */
485 Container_config_file_name(Container *self, void *closure)
498 Container_controllable(Container *self, void *closure)
508 Container_defined(Container *self, void *closure)
518 Container_init_pid(Container *self, void *closure)
524 Container_name(Container *self, void *closure)
534 Container_running(Container *self, void *closure)
544 Container_state(Container *self, void *closure)
557 /* Container Functions */
559 Container_attach_interface(Container *self, PyObject *args, PyObject *kwds)
594 Container_detach_interface(Container *self, PyObject *args, PyObject *kwds)
619 Container_add_device_node(Container *self, PyObject *args, PyObject *kwds)
655 Container_attach_and_possibly_wait(Container *self, PyObject *args,
696 Container_attach(Container *self, PyObject *args, PyObject *kwds)
702 Container_attach_wait(Container *self, PyObject *args, PyObject *kwds)
708 Container_clear_config(Container *self, PyObject *args, PyObject *kwds)
716 Container_clear_config_item(Container *self, PyObject *args, PyObject *kwds)
733 Container_clone(Container *self, PyObject *args, PyObject *kwds)
797 Container_console(Container *self, PyObject *args, PyObject *kwds)
816 Container_console_getfd(Container *self, PyObject *args, PyObject *kwds)
833 Container_create(Container *self, PyObject *args, PyObject *kwds)
880 Container_destroy(Container *self, PyObject *args, PyObject *kwds)
890 Container_freeze(Container *self, PyObject *args, PyObject *kwds)
900 Container_get_cgroup_item(Container *self, PyObject *args, PyObject *kwds)
936 Container_get_config_item(Container *self, PyObject *args, PyObject *kwds)
976 Container_get_config_path(Container *self, PyObject *args, PyObject *kwds)
990 Container_get_keys(Container *self, PyObject *args, PyObject *kwds)
1026 Container_get_interfaces(Container *self)
1077 Container_get_ips(Container *self, PyObject *args, PyObject *kwds)
1137 Container_get_running_config_item(Container *self, PyObject *args,
1161 Container_load_config(Container *self, PyObject *args, PyObject *kwds)
1186 Container_reboot(Container *self, PyObject *args, PyObject *kwds)
1196 Container_rename(Container *self, PyObject *args, PyObject *kwds)
1213 Container_remove_device_node(Container *self, PyObject *args, PyObject *kwds)
1249 Container_save_config(Container *self, PyObject *args, PyObject *kwds)
1274 Container_set_cgroup_item(Container *self, PyObject *args, PyObject *kwds)
1292 Container_set_config_item(Container *self, PyObject *args, PyObject *kwds)
1310 Container_set_config_path(Container *self, PyObject *args, PyObject *kwds)
1327 Container_shutdown(Container *self, PyObject *args, PyObject *kwds)
1344 Container_snapshot(Container *self, PyObject *args, PyObject *kwds)
1379 Container_snapshot_destroy(Container *self, PyObject *args, PyObject *kwds)
1396 Container_snapshot_list(Container *self, PyObject *args, PyObject *kwds)
1434 Container_snapshot_restore(Container *self, PyObject *args, PyObject *kwds)
1452 Container_start(Container *self, PyObject *args, PyObject *kwds)
1515 Container_stop(Container *self, PyObject *args, PyObject *kwds)
1525 Container_unfreeze(Container *self, PyObject *args, PyObject *kwds)
1535 Container_wait(Container *self, PyObject *args, PyObject *kwds)
1572 "Container name",
1580 "Container state",
1826 "lxc.Container", /* tp_name */
1827 sizeof(Container), /* tp_basicsize */
1846 "Container objects", /* tp_doc */
1908 PyModule_AddObject(m, "Container", (PyObject *)&_lxc_ContainerType);