Searched defs:action (Results 1 - 2 of 2) sorted by relevance

/lxc/src/lxc/
H A Dseccomp.c246 uint32_t action)
282 ret = seccomp_rule_add_exact(ctx, action, nr, 0);
284 ERROR("Failed (%d) loading rule for %s (nr %d action %d): %s.",
285 ret, line, nr, action, strerror(-ret));
311 uint32_t default_policy_action = -1, default_rule_action = -1, action; local
566 /* read optional action which follows the syscall */
567 action = get_and_clear_v2_action(line, default_rule_action);
568 if (action == -1) {
569 ERROR("Failed to interpret action.");
576 INFO("Adding native rule for %s action
245 do_resolve_add_rule(uint32_t arch, char *line, scmp_filter_ctx ctx, uint32_t action) argument
[all...]
H A Dcriu.c69 char *action; member in struct:criu_opts
71 /* the user-provided migrate options relevant to this action */
154 * criu $(action) --tcp-established --file-locks --link-remap \
155 * --manage-cgroups=full --action-script foo.sh -D $(directory) \
156 * -o $(directory)/$(action).log --ext-mount-map auto
161 if (strcmp(opts->action, "dump") == 0 || strcmp(opts->action, "pre-dump") == 0) {
174 if (strcmp(opts->action, "dump") == 0 && !opts->user->stop)
188 } else if (strcmp(opts->action, "restore") == 0) {
217 ret = snprintf(log, PATH_MAX, "%s/%s.log", opts->user->directory, opts->action);
[all...]

Completed in 48 milliseconds