Searched defs:stop (Results 1 - 25 of 37) sorted by relevance

12

/osnet-11/usr/src/grub/grub2/grub-core/lib/i386/
H A Dhalt.c31 stop (void) function
60 stop ();
/osnet-11/usr/src/lib/libdns_sd/java/com/apple/dnssd/
H A DDNSSDService.java50 void stop(); method in interface:DNSSDService
H A DDNSSD.java130 Note: browsing consumes network bandwidth. Call {@link DNSSDService#stop} when you have finished browsing.<P>
186 calling {@link DNSSDService#stop}.<P>
363 The enumeration MUST be cancelled by calling {@link DNSSDService#stop} when no more domains
676 public void stop() { this.HaltOperation(); } method in class:AppleService
708 // functions to stop their own operation and start others. For example, a resolveListener callback
709 // may well stop the resolve and then start a QueryRecord call to monitor the TXT record.
712 // some other thread could stop the operation and start a new one using same file descriptor, and
/osnet-11/usr/src/lib/libmail/common/
H A Dsetup_exec.c45 int stop; local
55 stop = FALSE;
56 while (*q && (stop == FALSE)) {
72 stop = TRUE;
/osnet-11/usr/src/lib/libgen/common/
H A Dbgets.c52 static char *stop = NULL; variable
84 char *stop = _get_stop(&key); local
86 if (!stop)
87 stop = (char *)calloc(CHARS, sizeof (char));
91 (void) memset(stop, 0, CHARS);
94 stop[(unsigned char)*cp] = 1;
110 if (stop[c]) {
/osnet-11/usr/src/grub/grub2/grub-core/commands/i386/pc/
H A Dhalt.c36 stop (void) function
55 stop ();
64 stop ();
78 stop ();
87 stop ();
97 stop ();
/osnet-11/usr/src/grub/grub-0.97/stage2/
H A Dstart.S338 /* go here when you need to stop the machine hard after an error condition */
339 stop: jmp stop label
H A Dstart_eltorito.S120 /* go here when you need to stop the machine hard after an error condition */
121 stop: jmp stop label
207 jmp stop
/osnet-11/usr/src/lib/libproc/common/
H A DPsyscall.c61 int stop; local
65 stop = Psysexit(P, sysnum, TRUE);
70 (void) Psysexit(P, sysnum, stop);
238 int sentry; /* old value of stop-on-syscall-entry */
240 sentry = Psysentry(P, sysindex, TRUE); /* set stop-on-syscall-entry */
277 (void) Psysentry(P, sysindex, sentry); /* restore sysentry stop */
304 int sexit; /* old value of stop-on-syscall-exit */
411 * Execute the syscall instruction and stop on syscall entry.
/osnet-11/usr/src/lib/libldap4/util/
H A Dline64.c60 char *p, *s, *d, *byte, *stop; local
118 stop = strchr( s, '\0' );
120 for ( p = s, *vlen = 0; p < stop; p += 4, *vlen += 3 ) {
274 unsigned char *byte, *p, *stop; local
292 stop = (unsigned char *) (val + vlen);
296 for ( byte = (unsigned char *) val; byte < stop;
316 for ( byte = (unsigned char *) val; byte < stop - 2;
335 if ( byte < stop ) {
336 for ( i = 0; byte + i < stop; i++ ) {
/osnet-11/usr/src/cmd/perl/contrib/Sun/Solaris/Exacct/t/
H A Drandtest.c123 static void stop(int sig) function
206 (void) signal(SIGINT, stop);
207 (void) signal(SIGTERM, stop);
208 (void) signal(SIGHUP, stop);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DDB.pm29 $DB::signal = 0; # signal flag (will cause a stop at the next line)
106 my ($stop, $action);
107 if (($stop,$action) = split(/\0/,$DB::dbline{$DB::lineno})) {
108 if ($stop eq '1') {
112 $stop = 0 unless $stop; # avoid un_init warning
113 $evalarg = "\$DB::signal |= do { $stop; }"; &eval;
509 # client-specific pre/post-stop actions.
538 sub stop {} subroutine
572 CLIENT->skippkg('hide::hide') # ask DB not to stop i
[all...]
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/
H A Dslpd.java71 * java com.sun.slpd [monitor] [stop] [-f <config file name>]
76 * brought up. The optional stop argument indicates that slpd should
77 * signal a running slpd to stop. The optional <config file name> argument
237 * Usage: slpd [monitor] [stop] [-f config-file name]<br>
242 * <b>stop <b> Bring down a running slpd and exit.
289 } else if (args[i].equals("stop")) {
335 // Either start or stop the server, depending on what was
342 stop();
463 static void stop() throws ServiceLocationException { method in class:slpd
561 // We signal for stop o
[all...]
/osnet-11/usr/src/lib/libldap5/sources/ldap/util/
H A Dline64.c202 char *p, *stop; local
206 stop = strchr( src, '\0' );
208 for ( p = src, len = 0; p < stop; p += 4, len += 3 ) {
323 unsigned char *p, *byte, *stop; local
348 stop = (unsigned char *)val;
351 stop = (unsigned char *) (val + vlen);
365 for ( byte = (unsigned char *) val; byte < stop;
429 unsigned char *byte, *stop; local
437 stop = src + srclen;
440 for ( byte = src; byte < stop
[all...]
/osnet-11/usr/src/lib/libparted/common/libparted/fs/hfs/
H A Dreloc.c54 unsigned int start, stop; local
59 start = stop = 0;
71 start = stop = *ptr_fblock < *ptr_to_fblock+size ?
73 while (start && stop-start != size) {
76 stop = start;
78 ok = (stop-start == size);
84 start = stop = *ptr_to_fblock+1;
85 while (stop < PED_BE16_TO_CPU(priv_data->mdb->total_blocks)
86 && stop-start != size) {
87 if (TST_BLOC_OCCUPATION(priv_data->alloc_map,stop))
[all...]
H A Dreloc_plus.c58 unsigned int start, stop; local
63 start = stop = 0;
75 start = stop = *ptr_fblock < *ptr_to_fblock+size ?
77 while (start && stop-start != size) {
80 stop = start;
82 ok = (stop-start == size);
88 start = stop = *ptr_to_fblock+1;
89 while (stop < PED_BE32_TO_CPU(priv_data->vh->total_blocks)
90 && stop-start != size) {
91 if (TST_BLOC_OCCUPATION(priv_data->alloc_map,stop))
[all...]
/osnet-11/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DConsumer.java367 * @see #stop()
390 * A consumer may stop on its own in response to the {@code exit()}
401 * cases it is not necessary to call {@code stop()}. If a consumer
402 * stops for any reason (an explicit call to {@code stop()} or any
407 * Note that a call to {@code stop()} blocks until the background
409 * stop()} returns, a call to {@link #isRunning()} returns {@code
416 * if {@code stop()} was already called
421 public void stop(); method in interface:Consumer
425 * abort()} is effectively the same as {@link #stop()} except that
441 * The {@code abort()} and {@code stop()} method
[all...]
H A DLocalConsumer.java167 // the stop() method to be synchronized without causing deadlock
174 // stopLock is a synchronization lock used to ensure that the stop()
178 // 1. stop() grabs the lock on this consumer before determining if
180 // 2. Once stop() determines that this consumer is actually running,
185 // worker thread from finishing while it waits for stop() to
188 // 3. stop() interrupts this consumer and grabs the stopLock, then
189 // waits on the stopLock for this consumer to stop (i.e. for the
193 // case the stop() method) that the worker thread is finished.
196 // finishes and grabs the stopLock before the stop() method does.
197 // Setting the flag in that case tells the stop() metho
777 stop() method in class:LocalConsumer
[all...]
/osnet-11/usr/src/grub/grub-0.97/stage1/
H A Dstage1.S400 /* go here when you need to stop the machine hard after an error condition */
401 stop: jmp stop label
/osnet-11/usr/src/cmd/hal/addons/network-devices/
H A Daddon-network-discovery.c140 time_t start, stop; local
/osnet-11/usr/src/lib/libc/amd64/unwind/
H A Dunwind.c365 _Unwind_Stop_Fn stop, void *stop_parameter,
381 res = (*stop)(1, phase,
408 exception_object->private_1 = (uint64_t)stop;
417 res = (*stop)(1, phase,
439 _Unwind_Stop_Fn stop, void *stop_parameter)
446 return (_Unwind_ForcedUnwind_Body(exception_object, stop,
364 _Unwind_ForcedUnwind_Body(struct _Unwind_Exception *exception_object, _Unwind_Stop_Fn stop, void *stop_parameter, struct _Unwind_Context *ctx, int resume) argument
438 _Unwind_ForcedUnwind(struct _Unwind_Exception *exception_object, _Unwind_Stop_Fn stop, void *stop_parameter) argument
/osnet-11/usr/src/lib/libdtrace/common/
H A Ddt_proc.c224 * Check to see if the control thread was requested to stop when the victim
226 * If 'why' is set in the stop mask, we wait on dpr_cv for dt_proc_continue().
370 * its own needs: the stop() action assumes that prun(1) or some other tool
377 * wait for it to run and then stop again for a reason other than the current
378 * PR_REQUESTED stop. Since PCWSTOP/Pstopstatus() can be applied repeatedly
381 * changes, the representative LWP ID changes, or the stop timestamp advances.
423 * the stop timestamp has changed, restore PR_KLC/PR_RLC to its
448 * the process to stop on an event or die. We process any events by calling
516 * Check for an appropriate stop request and wait for dt_proc_continue.
531 * Wait for the process corresponding to this control thread to stop,
785 dt_proc_create_thread(dtrace_hdl_t *dtp, dt_proc_t *dpr, uint_t stop) argument
[all...]
/osnet-11/usr/src/lib/libast/common/comp/
H A Domitted.c869 int stop; local
978 stop = suffix;
989 } while (suffix != stop);
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Dsendto_kdc.c1193 int stop = 1; local
1201 stop = (msg_handler(context, &reply, msg_handler_data) != 0);
1204 if (stop) {
/osnet-11/usr/src/grub/grub-0.97/grub/
H A Dasmstub.c126 /* Do a setjmp here for the stop command. */
256 stop (void) function
270 stop ();
276 stop ();
284 stop ();
291 stop ();
299 stop ();
307 stop ();
315 stop ();
699 stop ();
[all...]

Completed in 160 milliseconds

12