HomeSort by: relevance | last modified time | path
    Searched refs:started (Results 1 - 25 of 302) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gcc/dist/gcc/analyzer/
varargs.dot 31 started;
39 start -> started [label="on 'va_start(X, ...)'"];
42 start -> started [label="on 'va_copy(X, ...)'"];
47 started -> started [label="on 'va_arg(X, ...)'"];
48 started -> started [label="on 'va_copy(..., X)'"];
53 started -> ended [label="on 'va_end(X)'"];
  /src/external/gpl3/gdb/dist/gnulib/import/
windows-initguard.h 29 volatile LONG started; member in struct:__anon18422
windows-mutex.c 39 if (InterlockedIncrement (&mutex->guard.started) == 0)
44 /* Don't let mutex->guard.started grow and wrap around. */
45 InterlockedDecrement (&mutex->guard.started);
61 if (InterlockedIncrement (&mutex->guard.started) == 0)
66 /* Don't let mutex->guard.started grow and wrap around. */
67 InterlockedDecrement (&mutex->guard.started);
windows-once.h 29 volatile LONG started; member in struct:__anon18424
windows-once.c 32 if (InterlockedIncrement (&once_control->started) == 0)
44 /* Don't let once_control->started grow and wrap around. */
45 InterlockedDecrement (&once_control->started);
46 /* Some other thread has already started the initialization.
windows-recmutex.c 41 if (InterlockedIncrement (&mutex->guard.started) == 0)
46 /* Don't let mutex->guard.started grow and wrap around. */
47 InterlockedDecrement (&mutex->guard.started);
75 if (InterlockedIncrement (&mutex->guard.started) == 0)
80 /* Don't let mutex->guard.started grow and wrap around. */
81 InterlockedDecrement (&mutex->guard.started);
mbtowc-lock.c 73 if (InterlockedIncrement (&guard.started) == 0)
81 /* Don't let guard.started grow and wrap around. */
82 InterlockedDecrement (&guard.started);
setlocale-lock.c 73 if (InterlockedIncrement (&guard.started) == 0)
81 /* Don't let guard.started grow and wrap around. */
82 InterlockedDecrement (&guard.started);
windows-rwlock.c 138 if (InterlockedIncrement (&lock->guard.started) == 0)
143 /* Don't let lock->guard.started grow and wrap around. */
144 InterlockedDecrement (&lock->guard.started);
198 if (InterlockedIncrement (&lock->guard.started) == 0)
203 /* Don't let lock->guard.started grow and wrap around. */
204 InterlockedDecrement (&lock->guard.started);
255 if (InterlockedIncrement (&lock->guard.started) == 0)
260 /* Don't let lock->guard.started grow and wrap around. */
261 InterlockedDecrement (&lock->guard.started);
291 if (InterlockedIncrement (&lock->guard.started) == 0
    [all...]
  /src/external/gpl3/gdb.old/dist/gnulib/import/
windows-initguard.h 29 volatile LONG started; member in struct:__anon21163
windows-mutex.c 39 if (InterlockedIncrement (&mutex->guard.started) == 0)
44 /* Don't let mutex->guard.started grow and wrap around. */
45 InterlockedDecrement (&mutex->guard.started);
61 if (InterlockedIncrement (&mutex->guard.started) == 0)
66 /* Don't let mutex->guard.started grow and wrap around. */
67 InterlockedDecrement (&mutex->guard.started);
windows-once.h 29 volatile LONG started; member in struct:__anon21165
windows-once.c 32 if (InterlockedIncrement (&once_control->started) == 0)
44 /* Don't let once_control->started grow and wrap around. */
45 InterlockedDecrement (&once_control->started);
46 /* Some other thread has already started the initialization.
windows-recmutex.c 41 if (InterlockedIncrement (&mutex->guard.started) == 0)
46 /* Don't let mutex->guard.started grow and wrap around. */
47 InterlockedDecrement (&mutex->guard.started);
75 if (InterlockedIncrement (&mutex->guard.started) == 0)
80 /* Don't let mutex->guard.started grow and wrap around. */
81 InterlockedDecrement (&mutex->guard.started);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
typeid.exp 24 proc do_typeid_tests {started} {
31 if {$started || ![test_compiler_info clang-*-* c++]} {
35 # variables is only available once the inferior is started.
51 # inferior has started.
52 if {$started} {
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
typeid.exp 24 proc do_typeid_tests {started} {
31 if {$started || ![test_compiler_info clang-*-* c++]} {
35 # variables is only available once the inferior is started.
51 # inferior has started.
52 if {$started} {
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
step-over-clone.c 30 /* These are used to signal that the threads have started correctly. The
39 /* Signal that this thread has started correctly. */
59 static int started = 0; local
60 if (!started)
61 started = 1;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
step-over-clone.c 30 /* These are used to signal that the threads have started correctly. The
39 /* Signal that this thread has started correctly. */
59 static int started = 0; local
60 if (!started)
61 started = 1;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/
infcall-thread-announce.c 31 /* The pthread handle. Not valid unless STARTED is true. */
36 int started; member in struct:thread_descriptor
48 thread, mark the thread as started, and then block waiting for the main
64 /* Mark the thread as started. */
65 thread->started = TRUE;
67 /* Signal the main thread to tell it we are started. The main thread
87 new thread was started, otherwise return false. */
95 if (!threads[idx].started)
127 /* Look for a thread that is started. */
129 if (threads[idx].started)
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
infcall-thread-announce.c 31 /* The pthread handle. Not valid unless STARTED is true. */
36 int started; member in struct:thread_descriptor
48 thread, mark the thread as started, and then block waiting for the main
64 /* Mark the thread as started. */
65 thread->started = TRUE;
67 /* Signal the main thread to tell it we are started. The main thread
87 new thread was started, otherwise return false. */
95 if (!threads[idx].started)
127 /* Look for a thread that is started. */
129 if (threads[idx].started)
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dap/
terminate.exp 40 dap_wait_for_event_and_check "inferior started" thread "body reason" started
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dap/
terminate.exp 40 dap_wait_for_event_and_check "inferior started" thread "body reason" started
  /src/tests/lib/libpthread/
t_preempt.c 48 int started; variable
61 started++;
99 started = 0;
105 while (started < NTHREADS) {
109 printf("1: Thread has started.\n");
  /src/usr.bin/w/
pr_time.c 56 pr_attime(time_t *started, time_t *now)
64 tp = localtime(started);
65 diff = *now - *started;
  /src/external/bsd/ntp/dist/
flock-build 80 # in a ssh session started with the -tt option,
89 echo \`date -u '+%H:%M:%S'\` $i started build \$COUNT of 4
97 echo \`date -u '+%H:%M:%S'\` $i started build \$COUNT of 4
103 echo \`date -u '+%H:%M:%S'\` $i started build \$COUNT of 4
109 echo \`date -u '+%H:%M:%S'\` $i started build \$COUNT of 4

Completed in 21 milliseconds

1 2 3 4 5 6 7 8 91011>>