Lines Matching +defs:c +defs:mode
245 static bool exec_context_needs_term(const ExecContext *c) { in exec_context_needs_term()
391 static int acquire_path(const char *path, int flags, mode_t mode) { in acquire_path()
870 char c; in ask_for_confirmation() local
954 static int get_fixed_user(const ExecContext *c, const char **user, in get_fixed_user()
977 static int get_fixed_group(const ExecContext *c, const char **group, gid_t *gid) { in get_fixed_group()
995 static int get_supplementary_groups(const ExecContext *c, const char *user, in get_supplementary_groups()
1416 static bool context_has_address_families(const ExecContext *c) { in context_has_address_families()
1423 static bool context_has_syscall_filters(const ExecContext *c) { in context_has_syscall_filters()
1430 static bool context_has_syscall_logs(const ExecContext *c) { in context_has_syscall_logs()
1437 static bool context_has_no_new_privileges(const ExecContext *c) { in context_has_no_new_privileges()
1483 static int apply_syscall_filter(const Unit* u, const ExecContext *c, bool needs_ambient_hack) { in apply_syscall_filter()
1515 static int apply_syscall_log(const Unit* u, const ExecContext *c) { in apply_syscall_log()
1548 static int apply_syscall_archs(const Unit *u, const ExecContext *c) { in apply_syscall_archs()
1561 static int apply_address_families(const Unit* u, const ExecContext *c) { in apply_address_families()
1574 static int apply_memory_deny_write_execute(const Unit* u, const ExecContext *c) { in apply_memory_deny_write_execute()
1587 static int apply_restrict_realtime(const Unit* u, const ExecContext *c) { in apply_restrict_realtime()
1600 static int apply_restrict_suid_sgid(const Unit* u, const ExecContext *c) { in apply_restrict_suid_sgid()
1613 static int apply_protect_sysctl(const Unit *u, const ExecContext *c) { in apply_protect_sysctl()
1629 static int apply_protect_kernel_modules(const Unit *u, const ExecContext *c) { in apply_protect_kernel_modules()
1644 static int apply_protect_kernel_logs(const Unit *u, const ExecContext *c) { in apply_protect_kernel_logs()
1657 static int apply_protect_clock(const Unit *u, const ExecContext *c) { in apply_protect_clock()
1670 static int apply_private_devices(const Unit *u, const ExecContext *c) { in apply_private_devices()
1685 static int apply_restrict_namespaces(const Unit *u, const ExecContext *c) { in apply_restrict_namespaces()
1698 static int apply_lock_personality(const Unit* u, const ExecContext *c) { in apply_lock_personality()
1727 static int apply_restrict_filesystems(Unit *u, const ExecContext *c) { in apply_restrict_filesystems()
1744 static int apply_protect_hostname(const Unit *u, const ExecContext *c, int *ret_exit_status) { in apply_protect_hostname()
1811 const ExecContext *c, in build_environment()
2003 static int build_pass_environment(const ExecContext *c, char ***ret) { in build_pass_environment()
2112 uint64_t c = 1; in setup_private_users() local
3943 static int acquire_home(const ExecContext *c, uid_t uid, const char** home, char **buf) { in acquire_home()
3966 static int compile_suggested_paths(const ExecContext *c, const ExecParameters *p, char ***ret) { in compile_suggested_paths()
4039 static int exec_context_cpu_affinity_from_numa(const ExecContext *c, CPUSet *ret) { in exec_context_cpu_affinity_from_numa()
4060 bool exec_context_get_cpu_affinity_from_numa(const ExecContext *c) { in exec_context_get_cpu_affinity_from_numa()
5299 void exec_context_init(ExecContext *c) { in exec_context_init()
5325 void exec_context_done(ExecContext *c) { in exec_context_done()
5413 int exec_context_destroy_runtime_directory(const ExecContext *c, const char *runtime_prefix) { in exec_context_destroy_runtime_directory()
5451 int exec_context_destroy_credentials(const ExecContext *c, const char *runtime_prefix, const char *… in exec_context_destroy_credentials()
5471 static void exec_command_done(ExecCommand *c) { in exec_command_done()
5478 void exec_command_done_array(ExecCommand *c, size_t n) { in exec_command_done_array()
5483 ExecCommand* exec_command_free_list(ExecCommand *c) { in exec_command_free_list()
5495 void exec_command_free_array(ExecCommand **c, size_t n) { in exec_command_free_array()
5500 void exec_command_reset_status_array(ExecCommand *c, size_t n) { in exec_command_reset_status_array()
5505 void exec_command_reset_status_list_array(ExecCommand **c, size_t n) { in exec_command_reset_status_list_array()
5522 const char* exec_context_fdname(const ExecContext *c, int fd_index) { in exec_context_fdname()
5551 const ExecContext *c, in exec_context_named_iofds()
5601 static int exec_context_load_environment(const Unit *unit, const ExecContext *c, char ***ret) { in exec_context_load_environment()
5727 void exec_context_dump(const ExecContext *c, FILE* f, const char *prefix) { in exec_context_dump()
6202 bool exec_context_maintains_privileges(const ExecContext *c) { in exec_context_maintains_privileges()
6217 int exec_context_get_effective_ioprio(const ExecContext *c) { in exec_context_get_effective_ioprio()
6232 bool exec_context_get_effective_mount_apivfs(const ExecContext *c) { in exec_context_get_effective_mount_apivfs()
6246 void exec_context_free_log_extra_fields(ExecContext *c) { in exec_context_free_log_extra_fields()
6255 void exec_context_revert_tty(ExecContext *c) { in exec_context_revert_tty()
6299 ExecContext *c, in exec_context_get_clean_directories()
6356 int exec_context_get_clean_mask(ExecContext *c, ExecCleanMask *ret) { in exec_context_get_clean_mask()
6431 static void exec_command_dump(ExecCommand *c, FILE *f, const char *prefix) { in exec_command_dump()
6449 void exec_command_dump_list(ExecCommand *c, FILE *f, const char *prefix) { in exec_command_dump_list()
6472 int exec_command_set(ExecCommand *c, const char *path, ...) { in exec_command_set()
6497 int exec_command_append(ExecCommand *c, const char *path, ...) { in exec_command_append()
6643 const ExecContext *c, in exec_runtime_make()
6687 int exec_runtime_acquire(Manager *m, const ExecContext *c, const char *id, bool create, ExecRuntime… in exec_runtime_acquire()