Searched refs:terminated (Results 1 - 25 of 65) sorted by relevance

123

/macosx-10.10/Heimdal-398.1.2/kcm/
H A Dmain.c47 terminated(void *ctx) function
98 heim_sipc_signal_handler(SIGINT, terminated, "SIGINT");
99 heim_sipc_signal_handler(SIGTERM, terminated, "SIGTERM");
103 heim_sipc_signal_handler(SIGXCPU, terminated, "CPU time limit exceeded");
/macosx-10.10/ruby-106/ruby/lib/rubygems/
H A Dmock_gem_ui.rb55 @terminated = false
76 def terminated?
77 @terminated
81 @terminated = true
/macosx-10.10/Heimdal-398.1.2/kdc/
H A Dmain.c51 static void terminated(void *ctx) __attribute__((noreturn));
139 terminated(void *ctx) function
201 heim_sipc_signal_handler(SIGINT, terminated, "SIGINT");
202 heim_sipc_signal_handler(SIGTERM, terminated, "SIGTERM");
204 heim_sipc_signal_handler(SIGXCPU, terminated, "CPU time limit exceeded");
/macosx-10.10/apr-32/apr-util/apr-util/misc/
H A Dapr_queue.c54 int terminated; member in struct:apr_queue_t
134 queue->terminated = 0;
152 if (queue->terminated) {
162 if (!queue->terminated) {
178 if (queue->terminated) {
215 if (queue->terminated) {
265 if (queue->terminated) {
276 if (!queue->terminated) {
292 if (queue->terminated) {
329 if (queue->terminated) {
[all...]
H A Dapr_thread_pool.c76 volatile int terminated; member in struct:apr_thread_pool
135 me->terminated = 0;
252 while (!me->terminated && elt->state != TH_STOP) {
261 while (NULL != task && !me->terminated) {
284 || me->terminated || elt->state != TH_RUN) {
333 _myself->terminated = 1;
/macosx-10.10/apache-793/httpd/server/mpm/worker/
H A Dfdqueue.c29 int terminated; member in struct:fd_queue_info_t
219 if (queue_info->terminated) {
234 queue_info->terminated = 1;
314 AP_DEBUG_ASSERT(!queue->terminated);
351 if (!queue->terminated) {
360 if (queue->terminated) {
407 queue->terminated = 1;
H A Dfdqueue.h64 int terminated; member in struct:fd_queue_t
/macosx-10.10/apache-793/httpd/server/mpm/event/
H A Dfdqueue.c37 int terminated; member in struct:fd_queue_info_t
198 if (queue_info->terminated) {
289 queue_info->terminated = 1;
375 AP_DEBUG_ASSERT(!queue->terminated);
404 AP_DEBUG_ASSERT(!queue->terminated);
436 if (!queue->terminated) {
445 if (queue->terminated) {
501 queue->terminated = 1;
H A Dfdqueue.h84 int terminated; member in struct:fd_queue_t
/macosx-10.10/ipsec-286.1.1/ipsec-tools/racoon/
H A Dsession.c124 int terminated = 0; variable
323 if (!terminated) {
337 if ( terminated )
512 if ( terminated )
561 terminated = 1; /* in case if it hasn't been set yet */
598 terminated = 1;
H A Dschedule.c63 extern int terminated;
83 if (sched->func != NULL && !terminated) {
/macosx-10.10/xnu-2782.1.97/osfmk/kern/
H A Dcoalition.c109 unsigned int terminated : 1; /* coalition became empty and spawns are now forbidden */ member in struct:coalition
304 assert(coal->terminated);
385 if (coal->reaped || coal->terminated) {
467 if (coal->terminated) {
497 assert(!coal->terminated);
498 coal->terminated = TRUE;
530 * is already terminated.
541 if (coal->reaped || coal->terminated) {
632 if (coal->terminated || coal->termrequested) {
649 assert(!coal->terminated);
[all...]
H A Dtask_policy.c1035 if (requested.terminated) {
1047 next.terminated = 1;
1159 prev.terminated != next.terminated ||
1328 thread->requested_policy.terminated = task->effective_policy.terminated;
1401 * Useful if you cannot guarantee the thread won't get terminated
1554 requested.terminated = value;
2578 bits |= (requested.terminated ? POLICY_REQ_TERMINATED : 0);
2623 bits |= (effective.terminated
[all...]
/macosx-10.10/WebCore-7600.1.25/workers/
H A DWorkerRunLoop.h58 bool terminated() const { return m_messageQueue.killed(); } function in class:WebCore::WorkerRunLoop
88 // This should only be called when the context is closed or loop has been terminated.
H A DWorkerRunLoop.cpp217 if ((!context->isClosing() && !runLoop.terminated()) || m_task.isCleanupTask())
H A DWorkerThread.cpp164 if (m_runLoop.terminated()) {
165 // The worker was terminated before the thread had a chance to run. Since the context didn't exist yet,
200 // Does not return until terminated.
/macosx-10.10/SmartcardCCID-55008/ccid/ccid/src/
H A Dccid_usb.c74 int terminated; member in struct:usbDevice_MultiSlot_Extension
1307 while (!msExt->terminated)
1339 while (!completed && !msExt->terminated)
1351 while (!completed && !msExt->terminated)
1440 msExt->terminated = TRUE;
1465 DEBUG_COMM3("Multi_PollingProc (%d/%d): Thread terminated",
1483 if (msExt && !msExt->terminated)
1485 msExt->terminated = TRUE;
1517 if ((msExt == NULL) || msExt->terminated)
1556 if (msExt->terminated)
[all...]
/macosx-10.10/IOHIDFamily-606.1.7/tools/
H A DIOHIDReportTest.c121 boolean_t terminated = context == 0; local
129 printf("%-10.10s: %s\n", terminated ? "terminated" : "matched", debugString ? CFStringGetCStringPtr(debugString, CFStringGetSystemEncoding()) : "");
134 if ( terminated ) {
/macosx-10.10/xnu-2782.1.97/osfmk/mach/
H A Dtask_policy.h197 terminated :1, /* all throttles should be removed for quick exit or SIGTERM handling */ member in struct:task_requested_policy
243 terminated :1, /* all throttles have been removed for quick exit or SIGTERM handling */ member in struct:task_effective_policy
/macosx-10.10/llvmCore-3425.0.34/lib/Support/Windows/
H A DProgram.inc211 // An environment block consists of a null-terminated block of
212 // null-terminated strings. Convert the array of environment variables to
/macosx-10.10/vim-55/runtime/syntax/
H A Dptcap.vim63 " If editing a termcap file, an entry in the database is terminated by
64 " a (non-escaped) newline. Otherwise, it is terminated by a line which
/macosx-10.10/OpenSSH-189/openssh/
H A Dsftp.c956 * Returns NULL on error or a NULL-terminated array of arguments.
961 * If "terminated" is not NULL, *terminated will be set to 1 when the
962 * last argument's quote has been properly terminated or 0 otherwise.
969 u_int *terminated)
983 if (terminated != NULL)
984 *terminated = 1;
1074 if (terminated != NULL)
1075 *terminated = 0;
1603 int terminated)
968 makeargv(const char *arg, int *argcp, int sloppy, char *lastquote, u_int *terminated) argument
1602 complete_cmd_parse(EditLine *el, char *cmd, int lastarg, char quote, int terminated) argument
1693 complete_match(EditLine *el, struct sftp_conn *conn, char *remote_path, char *file, int remote, int lastarg, char quote, int terminated) argument
1819 u_int argc, carg, cursor, len, terminated, ret = CC_ERROR; local
[all...]
/macosx-10.10/CPANInternal-159.1/Term-ReadPassword-0.11/
H A DReadPassword.pm271 terminated by the user with Control-C. If this is not supplied, or is
282 the input operation was terminated.
/macosx-10.10/Heimdal-398.1.2/kpasswd/
H A Dkpasswdd.c44 static void terminated(void *) __attribute__((__noreturn__));
767 terminated(void *ctx) function
911 heim_sipc_signal_handler(SIGINT, terminated, "SIGINT");
912 heim_sipc_signal_handler(SIGTERM, terminated, "SIGTERM");
/macosx-10.10/ruby-106/ruby/lib/
H A Dgetoptlong.rb179 # Append them to ARGV when option processing is terminated.
375 # Returns true if option processing has terminated, false otherwise.
377 def terminated?

Completed in 326 milliseconds

123