Searched defs:opts (Results 1 - 5 of 5) sorted by relevance
/lxc/src/lxc/bdev/ |
H A D | lxcaufs.c | 361 char **opts = NULL; local 373 opts = lxc_string_split(mntent->mnt_opts, ','); 374 if (opts) 375 arrlen = lxc_array_len((void **)opts); 380 if (strstr(opts[i], "br=") && (strlen(opts[i]) > (len = strlen("br=")))) 381 tmp = opts[i] + len; 417 lxc_free_array((void **)opts, free);
|
H A D | lxcoverlay.c | 493 char **opts = NULL; local 506 opts = lxc_string_split(mntent->mnt_opts, ','); 507 if (opts) 508 arrlen = lxc_array_len((void **)opts); 513 if (strstr(opts[i], "upperdir=") && (strlen(opts[i]) > (len = strlen("upperdir=")))) 514 upperdir = opts[i] + len; 515 else if (strstr(opts[i], "workdir=") && (strlen(opts[i]) > (len = strlen("workdir=")))) 516 workdir = opts[ [all...] |
/lxc/src/lxc/ |
H A D | criu.c | 129 static void exec_criu(struct criu_opts *opts) argument 161 if (strcmp(opts->action, "dump") == 0 || strcmp(opts->action, "pre-dump") == 0) { 166 if (opts->user->predump_dir) 170 if (opts->user->pageserver_address && opts->user->pageserver_port) 174 if (strcmp(opts->action, "dump") == 0 && !opts->user->stop) 178 if (opts->tty_id[0]) 182 if (!opts 779 do_restore(struct lxc_container *c, int status_pipe, struct migrate_opts *opts, char *criu_version) argument 1061 do_dump(struct lxc_container *c, char *mode, struct migrate_opts *opts) argument 1158 __criu_pre_dump(struct lxc_container *c, struct migrate_opts *opts) argument 1163 __criu_dump(struct lxc_container *c, struct migrate_opts *opts) argument 1180 __criu_restore(struct lxc_container *c, struct migrate_opts *opts) argument [all...] |
H A D | conf.c | 3800 char *target, *opts; local 3804 opts = get_field(target, 2); 3805 if (!opts) 3807 null_endofword(opts); 3808 if (!strstr(opts, "shared"))
|
H A D | lxccontainer.c | 3969 struct migrate_opts *opts, unsigned int size) 3972 struct migrate_opts *valid_opts = opts; 3978 if (size > sizeof(*opts)) { 3982 addr = (void *)opts + sizeof(*opts); 3983 end = (void *)opts + size; 3995 if (size < sizeof(*opts)) { 3996 valid_opts = malloc(sizeof(*opts)); 4000 memset(valid_opts, 0, sizeof(*opts)); 4001 memcpy(valid_opts, opts, siz 3968 do_lxcapi_migrate(struct lxc_container *c, unsigned int cmd, struct migrate_opts *opts, unsigned int size) argument 4041 struct migrate_opts opts; local 4056 struct migrate_opts opts; local [all...] |
Completed in 35 milliseconds