Lines Matching refs:root
136 static int test_cgfreezer_simple(const char *root) in test_cgfreezer_simple() argument
142 cgroup = cg_name(root, "cg_test_simple"); in test_cgfreezer_simple()
188 static int test_cgfreezer_tree(const char *root) in test_cgfreezer_tree() argument
194 cgroup[0] = cg_name(root, "cg_test_tree_A"); in test_cgfreezer_tree()
360 static int test_cgfreezer_forkbomb(const char *root) in test_cgfreezer_forkbomb() argument
365 cgroup = cg_name(root, "cg_forkbomb_test"); in test_cgfreezer_forkbomb()
399 static int test_cgfreezer_mkdir(const char *root) in test_cgfreezer_mkdir() argument
405 parent = cg_name(root, "cg_test_mkdir_A"); in test_cgfreezer_mkdir()
453 static int test_cgfreezer_rmdir(const char *root) in test_cgfreezer_rmdir() argument
458 parent = cg_name(root, "cg_test_rmdir_A"); in test_cgfreezer_rmdir()
508 static int test_cgfreezer_migrate(const char *root) in test_cgfreezer_migrate() argument
514 cgroup[0] = cg_name(root, "cg_test_migrate_A"); in test_cgfreezer_migrate()
518 cgroup[1] = cg_name(root, "cg_test_migrate_B"); in test_cgfreezer_migrate()
583 static int test_cgfreezer_ptrace(const char *root) in test_cgfreezer_ptrace() argument
590 cgroup = cg_name(root, "cg_test_ptrace"); in test_cgfreezer_ptrace()
665 static int test_cgfreezer_stopped(const char *root) in test_cgfreezer_stopped() argument
670 cgroup = cg_name(root, "cg_test_stopped"); in test_cgfreezer_stopped()
709 static int test_cgfreezer_ptraced(const char *root) in test_cgfreezer_ptraced() argument
715 cgroup = cg_name(root, "cg_test_ptraced"); in test_cgfreezer_ptraced()
778 static int test_cgfreezer_vfork(const char *root) in test_cgfreezer_vfork() argument
783 cgroup = cg_name(root, "cg_test_vfork"); in test_cgfreezer_vfork()
809 int (*fn)(const char *root);
827 char root[PATH_MAX]; in main() local
830 if (cg_find_unified_root(root, sizeof(root), NULL)) in main()
833 switch (tests[i].fn(root)) { in main()