Searched refs:watchdog (Results 1 - 25 of 34) sorted by relevance

12

/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DWatchdog.h49 // callback (if needed) to determine if the watchdog should fire.
55 // to know if the watchdog has fired in the past, and not whether it should
107 Scope(Watchdog* watchdog) argument
108 : m_watchdog(watchdog)
110 if (!watchdog)
H A DVM.h233 std::unique_ptr<Watchdog> watchdog; member in class:JSC::VM
/macosx-10.10.1/JavaScriptCore-7600.1.17/API/
H A DJSContextRef.cpp93 if (!vm.watchdog)
94 vm.watchdog = std::make_unique<Watchdog>();
95 Watchdog& watchdog = *vm.watchdog; local
98 watchdog.setTimeLimit(vm, limit, internalScriptTimeoutCallback, callbackPtr, callbackData);
100 watchdog.setTimeLimit(vm, limit);
107 if (!vm.watchdog)
108 vm.watchdog = std::make_unique<Watchdog>();
109 Watchdog& watchdog = *vm.watchdog; local
[all...]
/macosx-10.10.1/apache-793/httpd/modules/core/
H A Dmod_watchdog.h24 * @defgroup MOD_WATCHDOG watchdog
52 * Default singleton watchdog instance name.
53 * Singleton watchdog is protected by mutex and
60 * Default watchdog instance name
105 * Callback function used for watchdog.
115 * Get watchdog instance.
116 * @param watchdog Storage for watchdog instance.
118 * @param parent Non-zero to get the parent process watchdog instance.
119 * @param singleton Non-zero to get the singleton watchdog instanc
[all...]
H A Dmod_watchdog.c27 #define AP_WATCHDOG_PGROUP "watchdog"
71 static const char *wd_proc_mutex_type = "watchdog-callback";
82 /* Execute watchdog callback with STOPPING state */
97 /* Main watchdog worker thread. */
165 /* Execute watchdog callback */
202 /* Execute watchdog callback */
216 /* This is hook mode watchdog
224 /* Run watchdog step hook */
235 /* Run the watchdog exit hooks.
236 * If this was singleton watchdog th
300 ap_watchdog_get_instance(ap_watchdog_t **watchdog, const char *name, int parent, int singleton, apr_pool_t *p) argument
661 AP_DECLARE_MODULE(watchdog) = { variable
[all...]
/macosx-10.10.1/postfix-255/postfix/src/master/
H A Dmaster.c199 #include <watchdog.h>
254 WATCHDOG *watchdog; local
522 watchdog = watchdog_create(MASTER_WATCHDOG_TIME, (WATCHDOG_FN) 0, (char *) 0);
532 watchdog_start(watchdog); /* same as trigger servers */
H A Devent_server.c139 /* Override the default 1000s watchdog timeout. The value is
219 #include <watchdog.h>
551 WATCHDOG *watchdog; local
900 watchdog = watchdog_create(event_server_watchdog,
908 watchdog_stop(watchdog);
913 watchdog_start(watchdog);
H A Dmulti_server.c207 #include <watchdog.h>
547 WATCHDOG *watchdog; local
890 watchdog = watchdog_create(var_daemon_timeout, (WATCHDOG_FN) 0, (char *) 0);
897 watchdog_stop(watchdog);
902 watchdog_start(watchdog);
H A Dsingle_server.c183 #include <watchdog.h>
425 WATCHDOG *watchdog; local
758 watchdog = watchdog_create(var_daemon_timeout, (WATCHDOG_FN) 0, (char *) 0);
765 watchdog_stop(watchdog);
770 watchdog_start(watchdog);
H A Dtrigger_server.c127 /* Override the default 1000s watchdog timeout. The value is
192 #include <watchdog.h>
428 WATCHDOG *watchdog; local
775 watchdog = watchdog_create(trigger_server_watchdog,
783 watchdog_stop(watchdog);
788 watchdog_start(watchdog);
/macosx-10.10.1/ntp-92/scripts/monitoring/
H A Dntploopstat339 $offset_i,$offset_f,$drift_i,$drift_f,$compl,$watchdog)
366 $offset_i,$offset_f,$drift_i,$drift_f,$compl_i,$compl_f,$watchdog)
371 $time -= $watchdog;
/macosx-10.10.1/JavaScriptCore-7600.1.17/interpreter/
H A DInterpreter.cpp920 if (UNLIKELY(vm.watchdog && vm.watchdog->didFire(callFrame)))
935 Watchdog::Scope watchdogScope(vm.watchdog.get());
982 if (UNLIKELY(vm.watchdog && vm.watchdog->didFire(callFrame)))
994 Watchdog::Scope watchdogScope(vm.watchdog.get());
1050 if (UNLIKELY(vm.watchdog && vm.watchdog->didFire(callFrame)))
1062 Watchdog::Scope watchdogScope(vm.watchdog.get());
1125 if (UNLIKELY(vm.watchdog
[all...]
/macosx-10.10.1/pdisk-9/
H A DDoSCSICommand.c363 unsigned long watchdog; /* Timeout after this */ local
432 watchdog = TickCount() + 300; /* 5 second timeout */
434 if (/*gStopNow || StopNow() ||*/ TickCount() > watchdog) {
533 watchdog = TickCount() + 15;
534 while (TickCount() < watchdog)
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dwatchdog.c3 /* watchdog 3
5 /* watchdog timer
7 /* #include <watchdog.h>
11 /* void (*action)(WATCHDOG *watchdog, char *context);
14 /* void watchdog_start(watchdog)
15 /* WATCHDOG *watchdog;
17 /* void watchdog_stop(watchdog)
18 /* WATCHDOG *watchdog;
20 /* void watchdog_destroy(watchdog)
21 /* WATCHDOG *watchdog;
[all...]
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dgdb.vim58 syn keyword gdbSet watchdog width write
H A Dtf.vim95 syn keyword tfStatement version watchdog watchname while world contained
H A Djal.vim116 syn keyword jalDirective chip osc clock fuses cpu watchdog powerup protection
/macosx-10.10.1/postfix-255/postfix/src/pickup/
H A Dpickup.c123 #include <watchdog.h>
531 * When we find a file, stroke the watchdog so that it will not bark while
597 * XXX The default watchdog timeout for trigger servers is 1000s, while the
598 * cleanup server watchdog timeout is $daemon_timeout (i.e. several
/macosx-10.10.1/apache-793/httpd/modules/cluster/
H A Dmod_heartmonitor.c59 ap_watchdog_t *watchdog; member in struct:hm_ctx_t
705 rv = hm_watchdog_get_instance(&ctx->watchdog,
710 "Failed to create watchdog instance (%s)",
715 rv = hm_watchdog_register_callback(ctx->watchdog,
721 "Failed to register watchdog callback (%s)",
/macosx-10.10.1/ruby-106/ruby/lib/test/
H A Dunit.rb584 # Thread: watchdog
585 watchdog = start_watchdog
600 watchdog.kill if watchdog
/macosx-10.10.1/JavaScriptCore-7600.1.17/jit/
H A DJITOpcodes.cpp1092 // Emit the watchdog timer check:
1093 if (m_vm->watchdog && m_vm->watchdog->isEnabled())
1094 addSlowCase(branchTest8(NonZero, AbsoluteAddress(m_vm->watchdog->timerDidFireAddress())));
1118 // Emit the slow path of the watchdog timer check:
1119 if (m_vm->watchdog && m_vm->watchdog->isEnabled()) {
H A DJITOperations.cpp982 if (UNLIKELY(vm.watchdog && vm.watchdog->didFire(exec)))
/macosx-10.10.1/JavaScriptCore-7600.1.17/llint/
H A DLLIntSlowPaths.cpp1360 ASSERT(vm.watchdog);
1361 if (UNLIKELY(vm.watchdog->didFire(exec)))
/macosx-10.10.1/procmail-14/procmail/src/
H A Dautoconf536 { unlink("_locktst.alive");alarm(dtimet+2); /* watchdog */
546 "/*locktype: %x, countlocks: %x, timeout %x, watchdog %x, %s*/\n",
/macosx-10.10.1/IOFireWireIP-226.2/KernelSource/IOKit/
H A DIOFWIPBusInterface.cpp16 @function watchdog
17 @abstract watchdog timer - cleans the Link control block's rcb's.
21 void watchdog(OSObject *, IOTimerEventSource *);
316 ( IOTimerEventSource::Action ) &watchdog);
2146 @function watchdog
2155 void watchdog(OSObject *obj, IOTimerEventSource *src) function
2193 // Restart the watchdog timer

Completed in 232 milliseconds

12