Searched defs:ops (Results 1 - 5 of 5) sorted by relevance
/lxc/src/lxc/bdev/ |
H A D | bdev.h | 91 const struct bdev_ops *ops; member in struct:bdev
|
H A D | bdev.c | 186 const struct bdev_ops *ops; member in struct:bdev_type 190 {.name = "zfs", .ops = &zfs_ops,}, 191 {.name = "lvm", .ops = &lvm_ops,}, 192 {.name = "rbd", .ops = &rbd_ops,}, 193 {.name = "btrfs", .ops = &btrfs_ops,}, 194 {.name = "dir", .ops = &dir_ops,}, 195 {.name = "aufs", .ops = &aufs_ops,}, 196 {.name = "overlayfs", .ops = &ovl_ops,}, 197 {.name = "loop", .ops = &loop_ops,}, 198 {.name = "nbd", .ops [all...] |
/lxc/src/lxc/ |
H A D | start.h | 53 struct lxc_operations *ops; member in struct:lxc_handler
|
H A D | start.c | 938 /* After this call, we are in error because this ops should not return 941 handler->ops->start(handler, handler->data); 1269 if (handler->ops->post_start(handler, handler->data)) 1300 struct lxc_operations* ops, void *data, const char *lxcpath, 1313 handler->ops = ops; 1299 __lxc_start(const char *name, struct lxc_conf *conf, struct lxc_operations* ops, void *data, const char *lxcpath, bool backgrounded) argument
|
/lxc/src/lxc/cgroups/ |
H A D | cgroup.c | 34 static struct cgroup_ops *ops = NULL; variable in typeref:struct:cgroup_ops 43 if (ops) { 44 INFO("cgroup driver %s", ops->name); 50 ops = cgm_ops_init(); 52 if (!ops) 53 ops = cgfsng_ops_init(); 54 if (!ops) 55 ops = cgfs_ops_init(); 56 if (ops) 57 INFO("Initialized cgroup driver %s", ops [all...] |
Completed in 14 milliseconds