Searched refs:exec (Results 1 - 3 of 3) sorted by relevance

/systemd/src/dbus1-generator/
H A Ddbus1-generator.c39 const char *exec,
49 assert(service || exec);
78 exec,
152 _cleanup_free_ char *name = NULL, *exec = NULL, *user = NULL, *service = NULL; local
156 { "D-BUS Service", "Exec", config_parse_string, 0, &exec },
201 if (streq(exec, "/bin/false") || !exec) {
206 if (exec[0] != '/') {
212 return create_dbus_files(p, name, service, exec, user, type);
35 create_dbus_files( const char *path, const char *name, const char *service, const char *exec, const char *user, const char *type) argument
/systemd/src/analyze/
H A Danalyze-verify.c137 static int verify_executable(Unit *u, ExecCommand *exec) { argument
138 if (exec == NULL)
141 if (access(exec->path, X_OK) < 0)
142 return log_unit_error_errno(u, errno, "Command %s is not executable: %m", exec->path);
148 ExecCommand *exec; local
154 exec = u->type == UNIT_SOCKET ? SOCKET(u)->control_command :
157 k = verify_executable(u, exec);
/systemd/src/systemctl/
H A Dsystemctl.c3259 LIST_FIELDS(struct ExecStatusInfo, exec);
3405 LIST_HEAD(ExecStatusInfo, exec);
3574 LIST_FOREACH(exec, p, i->exec) {
3941 LIST_PREPEND(exec, i->exec, info);
4490 while ((p = info.exec)) {
4491 LIST_REMOVE(exec, info.exec, p);

Completed in 33 milliseconds