HomeSort by relevance Sort by last modified time
    Searched refs:pidfile (Results 26 - 43 of 43) sorted by null

12

  /external/curl/tests/
sshserver.pl 92 my $pidfile; # ssh daemon pid file
146 elsif($ARGV[0] eq '--pidfile') {
148 $pidfile = "$path/". $ARGV[1];
178 if(!$pidfile) {
179 $pidfile = "$path/". server_pidfilename($proto, $ipvnum, $idnum);
392 my $pidfile_config = $pidfile;
458 # PidFile : OpenSSH 2.1.0 and later
504 push @cfgarr, "PidFile $pidfile_config";
    [all...]
ftpserver.pl 94 my $pidfile; # server pid file name
190 unlink($pidfile);
389 unlink($pidfile);
403 unlink($pidfile);
417 "--pidfile \"$mainsockf_pidfile\" " .
430 unlink($pidfile);
    [all...]
  /external/dbus/dbus/
dbus-sysdeps-util-win.c 56 * @param pidfile #NULL, or pidfile to create
63 _dbus_become_daemon (const DBusString *pidfile,
156 * Writes the given pid_to_write to a pidfile (if non-NULL) and/or to a
157 * pipe (if non-NULL). Does nothing if pidfile and print_pid_pipe are both
160 * @param pidfile the file to write to or #NULL
167 _dbus_write_pid_to_file_and_pipe (const DBusString *pidfile,
172 if (pidfile)
174 _dbus_verbose ("writing pid file %s\n", _dbus_string_get_const_data (pidfile));
175 if (!_dbus_write_pid_file (pidfile,
    [all...]
dbus-sysdeps.h 412 dbus_bool_t _dbus_become_daemon (const DBusString *pidfile,
421 dbus_bool_t _dbus_write_pid_to_file_and_pipe (const DBusString *pidfile,
  /external/toybox/lib/
xwrap.c 639 char pidfile[256], spid[32]; local
643 sprintf(pidfile, "/var/run/%s.pid", name);
646 fd = open(pidfile, O_CREAT|O_EXCL|O_WRONLY, 0644);
650 fd = open(pidfile, O_RDONLY);
657 if (pid < 1 || (kill(pid, 0) && errno == ESRCH)) unlink(pidfile);
  /external/ppp/pppd/
main.c 856 FILE *pidfile; local
860 if ((pidfile = fopen(pidfilename, "w")) != NULL) {
861 fprintf(pidfile, "%d\n", pid);
862 (void) fclose(pidfile);
875 FILE *pidfile; local
882 if ((pidfile = fopen(linkpidfile, "w")) != NULL) {
883 fprintf(pidfile, "%d\n", pid);
885 fprintf(pidfile, "%s\n", ifname);
886 (void) fclose(pidfile);
    [all...]
  /external/v8/tools/testrunner/server/
main.py 47 def __init__(self, pidfile, root, stdin="/dev/null",
49 super(Server, self).__init__(pidfile, stdin, stdout, stderr)
  /external/dbus/bus/
config-parser.c 109 char *pidfile; /**< PID file */ member in struct:BusConfigParser
320 if (included->pidfile != NULL)
322 dbus_free (parser->pidfile);
323 parser->pidfile = included->pidfile;
324 included->pidfile = NULL;
492 dbus_free (parser->pidfile);
753 if (!check_no_attributes (parser, "pidfile", attribute_names, attribute_values, error))
    [all...]
  /external/autotest/client/common_lib/
base_utils.py     [all...]
  /external/autotest/tko/
parse.py 8 from autotest_lib.client.common_lib import mail, pidfile namespace
42 parser.add_option("--write-pidfile",
43 help="write pidfile (.parser_execute)",
458 pid_file_manager = pidfile.PidFileManager("parser", results_dir)
  /external/toybox/toys/pending/
dhcp.c 13 usage: dhcp [-fbnqvoCRB] [-i IFACE] [-r IP] [-s PROG] [-p PIDFILE]
19 -p Create pidfile
61 char *pidfile;
349 int pidfile = open(path, O_CREAT | O_WRONLY | O_TRUNC, 0666); local
350 if (pidfile > 0) {
354 write(pidfile, pidbuf, strlen(pidbuf));
355 close(pidfile);
    [all...]
dhcpd.c 260 char *pidfile; member in struct:server_config_s
464 int pidfile = open(path, O_CREAT | O_WRONLY | O_TRUNC, 0666); local
465 if (pidfile > 0) {
469 write(pidfile, pidbuf, strlen(pidbuf));
470 close(pidfile);
703 {"pidfile" , strinvar , (void*)&gconfig.pidfile , "/var/run/dhcpd.pid"}, //DPID_FILE
    [all...]
  /external/dnsmasq/src/
dnsmasq.c 336 /* write pidfile _after_ forking ! */
339 FILE *pidfile; local
342 if ((pidfile = fopen(daemon->runfile, "w")))
344 fprintf(pidfile, "%d\n", (int) getpid());
345 fclose(pidfile);
796 die(_("failed to open pidfile %s: %s"), daemon->runfile, EC_FILE);
    [all...]
  /external/autotest/scheduler/
drone_manager_unittest.py 423 # executed on each drone host, with the same pidfile paths. Then
428 pidfile_paths = [pidfile.path for pidfile in pidfile_info.keys()]
  /external/toybox/generated/
globals.h 445 char *pidfile; member in struct:dhcp_data
461 char *interface_name, *pidfile, *script; member in struct:dhcp6_data
  /external/autotest/server/
autoserv 69 from autotest_lib.client.common_lib import pidfile, logging_manager namespace
206 if not '--pidfile-label' in args:
207 args.extend(['--pidfile-label', 'container_autoserv'])
677 pid_file_manager = pidfile.PidFileManager(parser.options.pidfile_label,
  /external/dhcpcd-6.8.2/
dhcp-common.c 738 strlcpy(leasefile, ifp->ctx->pidfile, len);
  /external/selinux/libsepol/tests/policies/test-cond/
refpolicy-base.conf 647 attribute pidfile;
866 type var_run_t, file_type, pidfile;
    [all...]

Completed in 426 milliseconds

12