Searched refs:stopped (Results 1 - 25 of 41) sorted by relevance

12

/macosx-10.9.5/dtrace-118.1/test/tst/common/stop/
H A Dtst.stop1.d44 stopped = 0;
52 /pid == $1 && stopped == 1/
63 /pid == $1 && stopped == 0/
66 trace("stopped");
67 stopped = 1;
75 /timestamp > timeout && stopped == 1/
77 trace("looks like it really stopped");
H A Dtst.stop2.d44 stopped = 0;
52 /pid == $1 && stopped == 1/
63 /pid == $1 && stopped == 0/
66 trace("stopped");
67 stopped = 1;
75 /timestamp > timeout && stopped == 1/
77 trace("looks like it really stopped");
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/
H A Dtktimer.rb15 if $stopped
16 $stopped = FALSE
25 exit if $stopped
26 $stopped = TRUE
33 $stopped=TRUE
36 if $stopped then return end
/macosx-10.9.5/tcl-102/tk/tk/library/demos/
H A Dtimer15 if {$stopped} {
16 set stopped 0
24 set stopped 1
34 set stopped 1
37 global startMoment stopped
38 if {$stopped} {return}
/macosx-10.9.5/tcl-102/tk84/tk/library/demos/
H A Dtimer12 if {$stopped} {
13 set stopped 0
21 set stopped 1
31 set stopped 1
34 global startMoment stopped
35 if {$stopped} {return}
/macosx-10.9.5/ruby-104/ruby/test/rake/
H A Dtest_rake_pseudo_status.rb9 refute s.stopped?
18 refute s.stopped?
/macosx-10.9.5/ruby-104/ruby/lib/rake/
H A Dpseudo_status.rb16 def stopped?
/macosx-10.9.5/ruby-104/ruby/test/webrick/
H A Dtest_server.rb27 stopped = 0
29 :StopCallback => Proc.new{ stopped += 1 },
48 assert_equal(stopped, 1)
52 accepted = started = stopped = 0
56 :StopCallback => Proc.new{ stopped += 1 },
61 assert_equal(stopped, 0, log.call)
69 assert_equal(stopped, 1)
H A Dtest_httpserver.rb217 accepted = started = stopped = 0
223 :StopCallback => Proc.new{ stopped += 1 },
240 assert_equal(stopped, 0, log.call)
258 assert_equal(stopped, 1)
/macosx-10.9.5/ruby-104/ruby/lib/
H A Dgserver.rb20 # run simultaneously, and stopped at any time through the class method
53 # server.stopped? # -> false
123 # Returns true if the server has stopped.
124 def stopped?
242 raise "server is already running" if !stopped?
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Dunixchild.h63 stopped, // stopped due to trace or job control (not implemented) enumerator in enum:Security::UnixPlusPlus::Child::State
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Dunixchild.h63 stopped, // stopped due to trace or job control (not implemented) enumerator in enum:Security::UnixPlusPlus::Child::State
/macosx-10.9.5/apache-786.1/httpd/build/rpm/
H A Dhttpd.init119 echo $prog is stopped
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dmach_process.c123 int stopped = 0; local
228 stopped = 1;
234 * If the process was stopped, wake up and run through
238 if (stopped)
275 * (3) it's not currently stopped.
/macosx-10.9.5/WebKit-7537.78.2/mac/Plugins/Hosted/
H A DNetscapePluginInstanceProxy.h161 void didCallPluginFunction(bool& stopped);
271 bool stopped = false; local
272 didCallPluginFunction(stopped);
273 if (stopped) {
358 // This suppresses calls from all plug-ins, even those in different pages, since JS might affect the frame with plug-in that's being stopped.
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/smtpd/
H A Dsmtpd.tcl23 variable stopped
181 variable stopped
199 set stopped 0
210 variable stopped
213 set stopped 1
214 Log notice "smtpd service stopped"
/macosx-10.9.5/groff-38/groff/src/libs/libdriver/
H A Dinput.cpp1447 Return: boolean in the meaning of `stopped'
1448 - true if parsing should be stopped (`x stop').
1454 bool stopped = false; local
1496 stopped = true;
1536 return stopped;
1554 bool stopped = false; // terminating condition local
1653 while (!stopped) {
1816 stopped = parse_x_command();
1831 // If `stopped' is not `true' here then there wasn't any `x stop'.
1832 if (!stopped)
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/i386/
H A Dcpu.c152 * Wait until the CPU indicates that it has stopped.
163 && !cdp->lcpu.stopped) {
H A Dcpu_topology.h143 volatile boolean_t stopped; /* used to indicate that the CPU has "stopped" */ member in struct:x86_lcpu
/macosx-10.9.5/ruby-104/ruby/
H A Dthread_win32.c750 int stopped = --system_working <= 0; local
751 if (stopped) {
757 return stopped;
H A Dthread_pthread.c1463 int stopped; local
1464 stopped = --system_working <= 0;
1467 if (stopped) {
1486 return stopped;
/macosx-10.9.5/bash-92/bash-3.2/examples/complete/
H A Dcomplete-examples131 complete -A stopped -P '%' bg
356 running service setopt shopt signal stopped variable)
H A Dcomplete.ianmac42 # bg completes with stopped jobs
43 complete -A stopped -P '%' bg
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/generic/
H A Dregistry.c3866 int stopped = 0;
3899 stopped = 1;
3919 stopped = 1;
3946 stopped = 1;
3956 stopped = 1;
3970 if (!stopped) {
/macosx-10.9.5/zsh-60/zsh/Src/
H A Djobs.c131 /* change job table entry from stopped to running */
406 if (WIFSTOPPED(pn->status)) /* some processes are stopped */
425 * and have hit ^Z, the sub-job is stopped, but the
426 * super-job may still be running, waiting to be stopped
436 { /* job is done or stopped, remember return value */
1882 * This updates stopped processes (but we should have been
1897 * will prevent zexit from complaining about stopped jobs */
1949 int stopped, ocj = thisjob, jstat; local
2004 /* If AUTO_CONTINUE is set (automatically make stopped jobs running
2018 if ((stopped
[all...]

Completed in 245 milliseconds

12