Lines Matching defs:config_path
379 char* config_path = NULL;
383 static char *kwlist[] = {"active", "defined", "config_path", NULL};
388 &config_path, &vargs))
402 list_count = list_all_containers(config_path, &names, NULL);
404 list_count = list_active_containers(config_path, &names, NULL);
406 list_count = list_defined_containers(config_path, &names, NULL);
445 static char *kwlist[] = {"name", "config_path", NULL};
448 char *config_path = NULL;
456 config_path = PyBytes_AS_STRING(fs_config_path);
457 assert(config_path != NULL);
460 self->container = lxc_container_new(name, config_path);
736 char *config_path = NULL;
748 static char *kwlist[] = {"newname", "config_path", "flags", "bdevtype",
771 config_path = PyBytes_AS_STRING(py_config_path);
772 assert(config_path != NULL);
776 config_path, flags, bdevtype,
1643 "clone(newname, config_path, flags, bdevtype, bdevdata, newsize, "