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

123

/illumos-gate/usr/src/cmd/tail/tests/
H A Dtailtests.sh385 stop(); function
415 stop(); function
/illumos-gate/usr/src/lib/libdns_sd/java/com/apple/dnssd/
H A DDNSSDService.java35 void stop(); method in interface:DNSSDService
/illumos-gate/usr/src/lib/libcmdutils/common/
H A Dgid.c40 static int findunusedgid(gid_t start, gid_t stop, gid_t *ret);
44 * Find the highest unused uid. If the highest unused gid is "stop",
48 findnextgid(gid_t start, gid_t stop, gid_t *ret) argument
59 if (grp->gr_gid == stop) { /* Overflow check */
72 return (findunusedgid(start, stop, ret));
73 while (isreservedgid(gid) && gid < stop) /* Skip reserved IDs */
94 findunusedgid(gid_t start, gid_t stop, gid_t *ret) argument
98 for (gid = start; gid <= stop; gid++) {
107 if (gid > stop)
H A Duid.c41 static int findunuseduid(uid_t start, uid_t stop, uid_t *ret);
45 * Find the highest unused uid. If the highest unused uid is "stop",
49 findnextuid(uid_t start, uid_t stop, uid_t *ret) argument
60 if (pwd->pw_uid == stop) { /* Overflow check */
73 return (findunuseduid(start, stop, ret));
74 while (isreserveduid(uid) && uid < stop) /* Skip reserved IDs */
95 findunuseduid(uid_t start, uid_t stop, uid_t *ret) argument
99 for (uid = start; uid <= stop; uid++) {
108 if (uid > stop)
/illumos-gate/usr/src/lib/libmail/common/
H A Dsetup_exec.c45 int stop; local
55 stop = FALSE;
56 while (*q && (stop == FALSE)) {
72 stop = TRUE;
/illumos-gate/usr/src/cmd/fm/modules/common/eversholt/
H A Dstats_impl.h47 hrtime_t stop; member in struct:stats
/illumos-gate/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]) {
/illumos-gate/usr/src/cmd/ptools/pstop/
H A Dpstop.c38 static int stop(char *);
58 " (stop processes or lwps with /proc request)\n");
63 rc += stop(*++argv);
69 stop(char *arg) function
83 * the process and stop every lwp, which matches the mask. If
/illumos-gate/usr/src/cmd/lp/filter/postscript/common/
H A Dmisc.c105 int start, stop; /* end points */ local
117 start = stop = str_convert(&str, 0);
120 stop = str_convert(&str, 9999);
122 if ( start > stop )
123 error(FATAL, "illegal range %d-%d", start, stop);
126 olist[nolist++] = stop;
/illumos-gate/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
/illumos-gate/usr/src/cmd/tip/
H A Dvalue.c260 vinterp(char *s, char stop) argument
265 while ((c = *s++) != 0 && c != stop)
307 return (c == stop ? s-1 : NULL);
/illumos-gate/usr/src/uts/sun4v/io/
H A Dvnet_common.c187 uint8_t mtype, ldc_dring_handle_t handle, uint64_t start, uint64_t stop)
192 if ((rv = VIO_DRING_ACQUIRE(&otd, mtype, handle, start, stop)) != 0)
204 ldc_dring_handle_t handle, uint64_t start, uint64_t stop, uint8_t dstate)
215 rv = VIO_DRING_RELEASE(mtype, handle, start, stop);
186 vnet_dring_entry_copy(vnet_public_desc_t *from, vnet_public_desc_t *to, uint8_t mtype, ldc_dring_handle_t handle, uint64_t start, uint64_t stop) argument
203 vnet_dring_entry_set_dstate(vnet_public_desc_t *descp, uint8_t mtype, ldc_dring_handle_t handle, uint64_t start, uint64_t stop, uint8_t dstate) argument
/illumos-gate/usr/src/lib/libproc/common/
H A DPsyscall.c63 int stop; local
67 stop = Psysexit(P, sysnum, TRUE);
72 (void) Psysexit(P, sysnum, stop);
245 int sentry; /* old value of stop-on-syscall-entry */
247 sentry = Psysentry(P, sysindex, TRUE); /* set stop-on-syscall-entry */
284 (void) Psysentry(P, sysindex, sentry); /* restore sysentry stop */
311 int sexit; /* old value of stop-on-syscall-exit */
428 * Execute the syscall instruction and stop on syscall entry.
/illumos-gate/usr/src/cmd/fm/eversholt/common/
H A Dstats.c51 hrtime_t stop; member in struct:stats::__anon455::__anon456
206 sp->u.elapse.stop = gethrtime();
247 if (sp->u.elapse.start && sp->u.elapse.stop) {
249 sp->u.elapse.stop - sp->u.elapse.start;
/illumos-gate/usr/src/uts/common/os/
H A Dbitmap.c164 * get the lowest bit in the range of 'start' and 'stop', inclusive.
167 * Neither start nor stop is required to align with word boundaries.
172 bt_getlowbit(ulong_t *map, size_t start, size_t stop) argument
176 int limit = stop >> BT_ULSHIFT;
178 index_t partial_stop = stop & BT_ULMASK;
180 if (start > stop) {
185 * The range between 'start' and 'stop' can be very large, and the
/illumos-gate/usr/src/uts/common/rpc/
H A Dclnt_gen.c233 int stop; local
298 stop = MIN_PRIV;
306 i >= stop; i--) {
343 stop = *last_used + 1;
/illumos-gate/usr/src/uts/common/io/sfxge/common/
H A Defx_sram.c43 uint32_t stop = start + n; local
68 if (stop >= EFX_BUF_TBL_SIZE) {
75 for (id = start; id != stop; id++) {
90 EFSYS_PROBE2(buf, uint32_t, start, uint32_t, stop - 1);
98 EFSYS_ASSERT3U(id, ==, stop);
145 id = stop;
169 uint32_t stop = start + n; local
190 EFSYS_ASSERT3U(stop, <, EFX_BUF_TBL_SIZE);
192 EFSYS_PROBE2(buf, uint32_t, start, uint32_t, stop - 1);
195 FRF_AZ_BUF_CLR_CMD, 1, FRF_AZ_BUF_CLR_END_ID, stop
[all...]
/illumos-gate/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...]
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DConsumer.java370 * @see #stop()
393 * A consumer may stop on its own in response to the {@code exit()}
404 * cases it is not necessary to call {@code stop()}. If a consumer
405 * stops for any reason (an explicit call to {@code stop()} or any
410 * Note that a call to {@code stop()} blocks until the background
412 * stop()} returns, a call to {@link #isRunning()} returns {@code
419 * if {@code stop()} was already called
424 public void stop(); method in interface:Consumer
428 * abort()} is effectively the same as {@link #stop()} except that
444 * The {@code abort()} and {@code stop()} method
[all...]
/illumos-gate/usr/src/lib/libldap5/sources/ldap/util/
H A Dline64.c206 char *p, *stop; local
210 stop = strchr( src, '\0' );
212 for ( p = src, len = 0; p < stop; p += 4, len += 3 ) {
327 unsigned char *p, *byte, *stop; local
352 stop = (unsigned char *)val;
355 stop = (unsigned char *) (val + vlen);
369 for ( byte = (unsigned char *) val; byte < stop;
433 unsigned char *byte, *stop; local
441 stop = src + srclen;
444 for ( byte = src; byte < stop
[all...]
/illumos-gate/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
/illumos-gate/usr/src/cmd/refer/
H A Drefer5.c316 initadd(char *to, char *from, char *stop) argument
322 while (from < stop) {
/illumos-gate/usr/src/cmd/mail/
H A Dgethead.c74 int rc, size, start, stop, ix; local
92 stop = current - 6;
93 if (stop < -1) stop = -1;
98 stop = -1;
101 stop = current + 6;
102 if (stop > nlet) stop = nlet;
107 stop = nlet;
110 for (ln = start; ln != stop; l
[all...]
/illumos-gate/usr/src/cmd/rpcgen/
H A Drpc_hout.c247 define_printed(proc_list *stop, version_list *start) argument
254 if (proc == stop)
256 if (streq(proc->proc_name, stop->proc_name))
539 undefined2(char *type, char *stop) argument
547 if (streq(def->def_name, stop))

Completed in 103 milliseconds

123