Lines Matching defs:program
4 * This program is free software: you can redistribute it and/or modify
9 * This program is distributed in the hope that it will be useful,
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
717 char program[UTIL_PATH_SIZE];
741 strscpyl(program, sizeof(program), UDEV_LIBEXEC_DIR "/", argv[0], NULL);
743 if(access(program, X_OK))
744 strscpyl(program, sizeof(program), "/usr/lib/udev/", argv[0], NULL);
745 if(access(program, X_OK))
746 strscpyl(program, sizeof(program), "/lib/udev/", argv[0], NULL);
748 argv[0] = program;
1064 char program[UTIL_PATH_SIZE];
1068 log_debug("delay execution of '%s'", program);
1072 udev_event_apply_format(event, cmd, program, sizeof(program), false);
1074 udev_event_spawn(event, timeout_usec, timeout_warn_usec, program, envp, sigmask, NULL, 0);