Searched refs:daemon (Results 1 - 25 of 134) sorted by relevance

123456

/macosx-10.10.1/CPANInternal-159.1/SOAP-Lite-1.11/examples/server/
H A Dsoap.tcp10 my $daemon = SOAP::Transport::TCP::Server
16 print "Contact to SOAP server at ", join(':', $daemon->sockhost, $daemon->sockport), "\n";
17 $daemon->handle;
H A Dsoap.daemon12 my $daemon = SOAP::Transport::HTTP::Daemon
29 print "Contact to SOAP server at ", $daemon->url, "\n";
30 $daemon->handle;
H A Dsoap.daemon.forkafterprocessing16 my $daemon = SOAP::Transport::HTTP::Daemon::ForkAfterProcessing
24 print "Contact to SOAP server at ", $daemon->url, "\n";
25 $daemon->handle;
H A Dsoap.daemon.forkonaccept15 my $daemon = SOAP::Transport::HTTP::Daemon::ForkOnAccept
23 print "Contact to SOAP server at ", $daemon->url, "\n";
24 $daemon->handle;
/macosx-10.10.1/CPANInternal-159.1/SOAP-Lite-1.11/examples/
H A Dinline.daemon16 my $daemon = SOAP::Transport::HTTP::Daemon
20 print "Contact to SOAP server at ", $daemon->url, "\n";
21 $daemon->handle;
/macosx-10.10.1/CPANInternal-159.1/SOAP-Lite-1.11/examples/XMLRPC/
H A Dxmlrpc.daemon7 my $daemon = XMLRPC::Transport::HTTP::Daemon
11 print "Contact to XMLRPC server at ", $daemon->url, "\n";
12 $daemon->handle;
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.25/t/
H A DUtils.pm19 my $daemon = HTTP::Daemon->new(
24 return $daemon;
35 my $daemon = shift;
39 my $conn = $daemon->accept;
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.300/t/
H A DUtils.pm19 my $daemon = HTTP::Daemon->new(
24 return $daemon;
35 my $daemon = shift;
39 my $conn = $daemon->accept;
/macosx-10.10.1/ruby-106/ruby/test/rubygems/
H A Dtest_gem_commands_server_command.rb13 @cmd.send :handle_options, %w[-p 8808 --no-daemon]
15 assert_equal false, @cmd.options[:daemon]
19 @cmd.send :handle_options, %w[-p 9999 -d /nonexistent --daemon]
21 assert_equal true, @cmd.options[:daemon]
/macosx-10.10.1/bind9-45.101/bind9/contrib/nslint-2.1a3/lbl/
H A Dos-solaris2.h25 int daemon(int, int);
/macosx-10.10.1/cron-39/xcodescripts/
H A Dinstall_misc.sh4 install -o daemon -d "${DSTROOT}/private/var/at"
/macosx-10.10.1/postfix-255/postfix/conf/
H A Daliases20 daemon: root
/macosx-10.10.1/postfix-255/postfix/proto/
H A Daliases020 daemon: root
/macosx-10.10.1/OpenSSH-189/openssh/openbsd-compat/
H A Ddaemon.c1 /* $OpenBSD: daemon.c,v 1.6 2005/08/08 08:05:33 espie Exp $ */
31 /* OPENBSD ORIGINAL: lib/libc/gen/daemon.c */
52 daemon(int nochdir, int noclose) function
/macosx-10.10.1/Libc-1044.1.2/gen/FreeBSD/
H A Ddaemon.c31 static char sccsid[] = "@(#)daemon.c 8.1 (Berkeley) 6/4/93";
34 __FBSDID("$FreeBSD: src/lib/libc/gen/daemon.c,v 1.8 2007/01/09 00:27:53 imp Exp $");
74 int daemon(int, int) __DARWIN_1050(daemon); variable
77 daemon(nochdir, noclose) function
/macosx-10.10.1/Heimdal-398.1.2/lib/roken/
H A Ddaemon.c31 static char sccsid[] = "@(#)daemon.c 8.1 (Berkeley) 6/4/93";
51 daemon(int nochdir, int noclose) function
/macosx-10.10.1/mDNSResponder-561.1.1/mDNSPosix/
H A Dmdnsd.sh18 # Linux /etc/init.d script to start/stop the mdnsd daemon.
33 # Some systems have start-stop-daemon, some don't.
34 if [ -r /sbin/start-stop-daemon ]; then
35 START="start-stop-daemon --start --quiet --exec"
38 # STOP="start-stop-daemon --stop -s TERM --quiet --oknodo --exec"
39 STOP="start-stop-daemon --stop --quiet --oknodo --exec"
50 echo -n "Starting Apple Darwin Multicast DNS / DNS Service Discovery daemon:"
56 echo -n "Stopping Apple Darwin Multicast DNS / DNS Service Discovery daemon:"
61 echo -n "Restarting Apple Darwin Multicast DNS / DNS Service Discovery daemon:"
H A DMakefile33 # This Makefile builds an mDNSResponder daemon and a libdns_sd.so shared library
39 # 'sudo make install [DEBUG=1]' to install mdnsd daemon and libdns_sd.
145 # we get build failures: ���daemon��� is deprecated (declared at /usr/include/stdlib.h:283)
234 # daemon target builds the daemon
246 @echo "Responder daemon done"
297 # Note: If daemon already installed, we make sure it's stopped before overwriting it
314 # that the daemon is installed *before* we try to execute the command to start it.
H A DPosixDaemon.c17 File: daemon.c
24 // In Mac OS X 10.5 and later trying to use the daemon function gives a ������daemon��� is deprecated���
26 // Since this is supposed to be portable cross-platform code, we don't care that daemon is
28 #define daemon yes_we_know_that_daemon_is_deprecated_in_os_x_10_5_thankyou macro
42 #undef daemon macro
43 extern int daemon(int, int);
48 #include "mDNSUNP.h" // For daemon()
65 // On successful registration of dot-local mDNS host name, daemon may want to check if
83 // %%% Reconfigure() probably belongs in the platform support layer (mDNSPosix.c), not the daemon cd
[all...]
/macosx-10.10.1/ntp-92/
H A Dntpd-wrapper20 logger -p daemon.err "$0: scutil key ${KEY} not present after ${TIMEOUT} seconds"
30 logger -p daemon.err -f ${LOG}
/macosx-10.10.1/ruby-106/ruby/lib/rubygems/commands/
H A Dserver_command.rb8 :port => 8808, :gemdir => [], :daemon => false
37 add_option '--[no-]daemon', 'run as a daemon' do |daemon, options|
38 options[:daemon] = daemon
57 "--port 8808 --dir #{Gem.dir} --no-daemon"
/macosx-10.10.1/PowerManagement-494.1.2/pmconfigd/
H A Dupsshutdown16 logger -i -p daemon.emerg -t UPS "${MSG}"
/macosx-10.10.1/Security-57031.1.35/Security/include/security_utilities/
H A Ddaemon.cpp28 #include <security_utilities/daemon.h>
50 // we are the daemon process (Har! Har!)
97 secdebug("daemon", "self-execution complete");
102 secdebug("daemon", "self-executing (ouch!)");
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Ddaemon.cpp28 #include <security_utilities/daemon.h>
50 // we are the daemon process (Har! Har!)
97 secdebug("daemon", "self-execution complete");
102 secdebug("daemon", "self-executing (ouch!)");
/macosx-10.10.1/apache-793/httpd/docs/conf/
H A Dhttpd.conf.in.orig77 User daemon
78 Group daemon
266 # socket used to communicate with the CGI daemon of mod_cgid.

Completed in 236 milliseconds

123456