HomeSort by relevance Sort by last modified time
    Searched defs:daemon (Results 1 - 25 of 197) sorted by null

1 2 3 4 5 6 7 8

  /bionic/libc/upstream-openbsd/lib/libc/gen/
daemon.c 1 /* $OpenBSD: daemon.c,v 1.7 2010/07/27 22:29:09 marco Exp $ */
37 daemon(int nochdir, int noclose) function
  /external/libmicrohttpd/src/testspdy/
test_daemon_start_stop.c 21 * @brief starts and stops a SPDY daemon
34 struct SPDY_Daemon *daemon = SPDY_start_daemon(get_port(16123), local
39 if(NULL==daemon){
40 printf("no daemon\n");
44 SPDY_stop_daemon(daemon);
test_daemon_start_stop_many.c 37 struct SPDY_Daemon *daemon[num_daemons]; local
45 daemon[j] = SPDY_start_daemon(port + j,
50 if(NULL==daemon[j]){
51 printf("no daemon\n");
59 SPDY_stop_daemon(daemon[j]);
  /external/libmicrohttpd/doc/examples/
logging.c 44 struct MHD_Daemon *daemon; local
46 daemon = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY, PORT, NULL, NULL,
48 if (NULL == daemon)
53 MHD_stop_daemon (daemon);
hellobrowser.c 40 struct MHD_Daemon *daemon; local
42 daemon = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY, PORT, NULL, NULL,
44 if (NULL == daemon)
49 MHD_stop_daemon (daemon);
basicauthentication.c 72 struct MHD_Daemon *daemon; local
74 daemon = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY, PORT, NULL, NULL,
76 if (NULL == daemon)
81 MHD_stop_daemon (daemon);
responseheaders.c 74 struct MHD_Daemon *daemon; local
76 daemon = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY, PORT, NULL, NULL,
78 if (NULL == daemon)
83 MHD_stop_daemon (daemon);
largepost.c 231 struct MHD_Daemon *daemon; local
233 daemon = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY, PORT, NULL, NULL,
237 if (NULL == daemon)
240 MHD_stop_daemon (daemon);
simplepost.c 179 struct MHD_Daemon *daemon; local
181 daemon = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY, PORT, NULL, NULL,
185 if (NULL == daemon)
190 MHD_stop_daemon (daemon);
  /external/libmicrohttpd/src/testcurl/
test_termination.c 92 struct MHD_Daemon *daemon; local
94 daemon = MHD_start_daemon (MHD_USE_THREAD_PER_CONNECTION | MHD_USE_DEBUG,
99 if (daemon == NULL)
101 fprintf (stderr, "Daemon cannot be started!");
122 MHD_stop_daemon (daemon);
  /external/skia/tools/skiaserve/
skiaserve.cpp 104 struct MHD_Daemon* daemon; local
105 daemon = MHD_start_daemon(MHD_USE_SELECT_INTERNALLY
113 if (nullptr == daemon) {
114 SkDebugf("Could not initialize daemon\n");
130 MHD_stop_daemon(daemon);
  /external/skqp/tools/skiaserve/
skiaserve.cpp 104 struct MHD_Daemon* daemon; local
105 daemon = MHD_start_daemon(MHD_USE_SELECT_INTERNALLY
113 if (nullptr == daemon) {
114 SkDebugf("Could not initialize daemon\n");
130 MHD_stop_daemon(daemon);
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-runner/1.2.20/
kotlin-compiler-runner-1.2.20.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-runner/1.2.0/
kotlin-compiler-runner-1.2.0.jar 
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
multiprocessing_shim.py 60 def daemon(self): member in class:ProcessShim
61 return self._proc.daemon
63 @daemon.setter
64 def daemon(self, daemonic): member in class:ProcessShim
65 self._proc.daemon = daemonic
  /external/libmicrohttpd/src/examples/
spdy_response_with_callback.c 164 struct SPDY_Daemon *daemon; local
173 daemon = SPDY_start_daemon(atoi(argv[1]),
185 if(NULL==daemon){
186 printf("no daemon\n");
196 ret = SPDY_get_timeout(daemon, &timeoutlong);
208 maxfd = SPDY_get_fdset (daemon,
223 SPDY_run(daemon);
230 SPDY_stop_daemon(daemon);
mhd2spdy.c 76 struct MHD_Daemon *daemon; local
114 daemon = MHD_start_daemon (
121 if(NULL==daemon)
140 ret = MHD_get_timeout(daemon, &timeoutlong);
149 if(MHD_NO == MHD_get_fdset (daemon,
183 //MHD_run_from_select(daemon,&rs, &ws, &es); //not closing FDs at some time in past
184 MHD_run(daemon);
189 //MHD_run_from_select(daemon,&rs, &ws, &es); //not closing FDs at some time in past
190 MHD_run(daemon);
197 MHD_stop_daemon (daemon);
    [all...]
  /system/tpm/attestation/server/
main.cc 81 LOG(ERROR) << "Error starting attestation dbus daemon.";
108 AttestationDaemon daemon; local
109 LOG(INFO) << "Attestation Daemon Started.";
111 return daemon.Run();
  /external/kotlinc/lib/
kotlin-daemon-client.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-daemon-client/1.2.20/
kotlin-daemon-client-1.2.20.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-daemon-client/1.2.0/
kotlin-daemon-client-1.2.0.jar 
  /external/guava/guava/src/com/google/common/util/concurrent/
ThreadFactoryBuilder.java 30 * <li> whether threads should be marked as {@linkplain Thread#setDaemon daemon}
47 private Boolean daemon = null; field in class:ThreadFactoryBuilder
77 * Sets daemon or not for new threads created with this ThreadFactory.
79 * @param daemon whether or not new Threads created with this ThreadFactory
80 * will be daemon threads
83 public ThreadFactoryBuilder setDaemon(boolean daemon) {
84 this.daemon = daemon;
151 final Boolean daemon = builder.daemon; local
    [all...]
  /external/python/cpython2/Lib/multiprocessing/
process.py 171 def daemon(self): member in class:Process
173 Return whether process is a daemon
177 @daemon.setter
178 def daemon(self, daemonic): member in class:Process
180 Set whether process is a daemon
237 status, self._daemonic and ' daemon' or '')
  /frameworks/base/services/core/java/com/android/server/fingerprint/
EnumerateClient.java 40 IBiometricsFingerprint daemon = getFingerprintDaemon(); local
43 final int result = daemon.enumerate();
63 IBiometricsFingerprint daemon = getFingerprintDaemon(); local
64 if (daemon == null) {
69 final int result = daemon.cancel();
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
process.py 171 def daemon(self): member in class:Process
173 Return whether process is a daemon
177 @daemon.setter
178 def daemon(self, daemonic): member in class:Process
180 Set whether process is a daemon
237 status, self._daemonic and ' daemon' or '')

Completed in 757 milliseconds

1 2 3 4 5 6 7 8