Searched refs:stop (Results 1 - 25 of 116) sorted by relevance

12345

/illumos-gate/usr/src/cmd/dtrace/test/tst/common/funcs/
H A Derr.D_PROTO_LEN.stopbadarg.d31 * stop() should generate an error if any arguments are sent.
33 * SECTION: Actions and Subroutines/stop()
40 stop("badarg");
/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/uts/sun4v/sys/
H A Dvio_common.h52 #define VIO_DRING_ACQUIRE(otd, mtype, handle, start, stop) \
55 ldc_mem_dring_acquire((handle), (start), (stop)))
61 #define VIO_DRING_RELEASE(mtype, handle, start, stop) \
64 ldc_mem_dring_release((handle), (start), (stop)))
H A Dvnet_common.h141 uint8_t mtype, ldc_dring_handle_t handle, uint64_t start, uint64_t stop);
143 ldc_dring_handle_t handle, uint64_t start, uint64_t stop, uint8_t dstate);
/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/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/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/grub/grub-0.97/stage2/
H A Dstage1_5.c54 stop ();
71 stop ();
/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/cmd/dtrace/test/tst/common/speculation/
H A Derr.D_ACT_SPEC.SpeculateWithStop.d50 stop();
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/stop/
H A Dtst.stop1.d31 * Positive test for stop
33 * SECTION: Actions and Subroutines/stop()
57 stop();
H A Dtst.stop2.d31 * Positive test for stop
33 * SECTION: Actions and Subroutines/stop()
57 stop();
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dengine.c164 const char *stop; local
179 stop = string + pmatch[0].rm_eo;
182 stop = start + strlen(start);
185 if (stop < start)
196 for (dp = start+g->mlen-1; dp < stop; ) {
198 while (dp < stop && charjump[(int)*dp])
201 if (dp >= stop)
224 for (dp = start; dp < stop; dp++)
226 stop - dp >= g->mlen &&
229 if (dp == stop) /* w
373 dissect(struct match *m, const char *start, const char *stop, sopno startst, sopno stopst) argument
558 backref(struct match *m, const char *start, const char *stop, sopno startst, sopno stopst, sopno lev, int rec) argument
756 fast(struct match *m, const char *start, const char *stop, sopno startst, sopno stopst) argument
858 slow(struct match *m, const char *start, const char *stop, sopno startst, sopno stopst) argument
955 step(struct re_guts *g, sopno start, sopno stop, states bef, wint_t ch, states aft) argument
1096 at(struct match *m, const char *title, const char *start, const char *stop, sopno startst, sopno stopst) argument
[all...]
/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/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/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/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/cmd/dtrace/test/tst/common/java_api/src/
H A DTestStopLock.java30 * Test for bug 6399888 stop() hangs if ConsumerListener calls
57 consumer.stop();
/illumos-gate/usr/src/boot/sys/sys/
H A Dbitstring.h74 /* clear bits start ... stop in bitstring */
75 #define bit_nclear(name, start, stop) do { \
77 register int _start = (start), _stop = (stop); \
91 /* set bits start ... stop in bitstring */
92 #define bit_nset(name, start, stop) do { \
94 register int _start = (start), _stop = (stop); \
/illumos-gate/usr/src/boot/sys/boot/usb/tools/
H A Dsysinit.c48 static struct sysinit_data **stop; variable in typeref:struct:sysinit_data
230 stop = start + entries;
235 if (start != stop)
239 for (sipp = start; sipp < stop; sipp++) {
254 for (sipp = start; sipp < stop; sipp++) {
287 for (c = 0, sipp = start; sipp < stop; c++, sipp++) {
313 for (c = 0, sipp = start; sipp < stop; c++, sipp++) {
/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/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/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

Completed in 142 milliseconds

12345