• Home
  • Raw
  • Download

Lines Matching refs:command

254     const char* command = command_string.c_str();  in RunCommandToFd()  local
257 dprintf(fd, "Skipping '%s' on user build.\n", command); in RunCommandToFd()
262 dprintf(fd, "------ %s (%s) ------\n", title.c_str(), command); in RunCommandToFd()
301 dprintf(fd, "*** failed to drop root before running %s: %s\n", command, in RunCommandToFd()
304 MYLOGE("*** could not drop root before running %s: %s\n", command, strerror(errno)); in RunCommandToFd()
329 MYLOGD("execvp on command '%s' failed (error: %s)\n", command, strerror(errno)); in RunCommandToFd()
344 dprintf(fd, "*** command '%s' timed out after %.3fs (killing pid %d)\n", command, in RunCommandToFd()
346 MYLOGE("*** command '%s' timed out after %.3fs (killing pid %d)\n", command, in RunCommandToFd()
350 dprintf(fd, "*** command '%s': Error after %.4fs (killing pid %d)\n", command, in RunCommandToFd()
352 MYLOGE("command '%s': Error after %.4fs (killing pid %d)\n", command, in RunCommandToFd()
361 command, pid); in RunCommandToFd()
362 MYLOGE("could not kill command '%s' (pid %d) even with SIGKILL.\n", command, pid); in RunCommandToFd()
370 … dprintf(fd, "*** command '%s' failed: killed by signal %d\n", command, WTERMSIG(status)); in RunCommandToFd()
371 MYLOGE("*** command '%s' failed: killed by signal %d\n", command, WTERMSIG(status)); in RunCommandToFd()
374 if (!silent) dprintf(fd, "*** command '%s' failed: exit code %d\n", command, status); in RunCommandToFd()
375 MYLOGE("*** command '%s' failed: exit code %d\n", command, status); in RunCommandToFd()