Searched defs:drop (Results 1 - 24 of 24) sorted by relevance

/illumos-gate/usr/src/lib/libast/common/misc/
H A Dmimetype.c37 drop(Mime_t* mp) function
65 mp->freef = drop;
H A Dfts.c108 #define drop(p,f) (((f)->fts_namelen < MINNAME) ? ((f)->fts_link = (p)->free, (p)->free = (f)) : (free(f), (p)->free)) macro
835 drop(fts, f);
841 drop(fts, f);
1239 drop(fts, f);
1303 drop(fts, f);
1391 drop(fts, fts->current);
H A Dmime.c124 drop(Dt_t* dt, void* object, Dtdisc_t* disc) function
780 mp->dict.freef = drop;
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DDropEvent.java45 private Drop drop; field in class:DropEvent
51 * @throws NullPointerException if the given drop is {@code null}
57 drop = dataDrop;
64 if (drop == null) {
65 throw new NullPointerException("drop is null");
70 * Gets the drop information generated by DTrace.
72 * @return non-null drop information generated by DTrace
77 return drop;
112 buf.append(", drop = ");
113 buf.append(drop);
[all...]
H A DLocalConsumer.java1166 dataDropped(Drop drop) throws ConsumerException argument
1168 fireDataDropped(new DropEvent(this, drop));
/illumos-gate/usr/src/uts/common/zmod/
H A Dinftrees.c47 unsigned drop; /* code bits to drop for sub-table */ local
154 with length len. That code is converted to an index by dropping drop
155 bits off of the bottom. For codes where len is less than drop + curr,
156 those top drop + curr - len bits are incremented through all values to
162 new sub-table should be started. drop is zero when the root table is
163 being filled, and drop is root when sub-tables are being filled.
208 drop = 0; /* current bits to drop from code for index */
220 this.bits = (unsigned char)(len - drop);
[all...]
/illumos-gate/usr/src/boot/lib/libz/
H A Dinftrees.c45 unsigned drop; /* code bits to drop for sub-table */ local
152 with length len. That code is converted to an index by dropping drop
153 bits off of the bottom. For codes where len is less than drop + curr,
154 those top drop + curr - len bits are incremented through all values to
160 new sub-table should be started. drop is zero when the root table is
161 being filled, and drop is root when sub-tables are being filled.
205 drop = 0; /* current bits to drop from code for index */
218 here.bits = (unsigned char)(len - drop);
[all...]
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_handle.c313 dtrace_dropdata_t drop; local
319 bzero(&drop, sizeof (drop));
320 drop.dtdda_handle = dtp;
321 drop.dtdda_cpu = cpu;
322 drop.dtdda_kind = what;
323 drop.dtdda_drops = howmany;
324 drop.dtdda_msg = str;
342 if ((*dtp->dt_drophdlr)(&drop, dtp->dt_droparg) == DTRACE_HANDLE_ABORT)
356 "dynamic variable drop" },
392 dtrace_dropdata_t drop; local
[all...]
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs_cmd.c511 * nfscmd_dropped_entrysize(dir, drop, nents)
513 * We need to drop "drop" entries from dir in order to fit in the
518 nfscmd_dropped_entrysize(struct dirent64 *dir, size_t drop, size_t nents) argument
523 for (i = nents - drop; i > 0 && dir != NULL; i--)
529 for (size = 0, i = 0; i < drop && dir != NULL; i++) {
/illumos-gate/usr/src/uts/common/io/ib/clients/rdsv3/
H A Drds_recv.c217 * under normal operation. They can also drop back in the conn
219 * new instance of a conn. We drop those, otherwise we have
226 * being reassembled. This means that senders can't drop messages
312 int drop)
317 RDSV3_DPRINTF4("rdsv3_still_queued", "Enter rs: %p inc: %p drop: %d",
318 rs, inc, drop);
323 if (drop) {
335 "inc %p rs %p still %d dropped %d", inc, rs, ret, drop);
624 * The socket is being shut down and we're asked to drop messages that were
311 rdsv3_still_queued(struct rdsv3_sock *rs, struct rdsv3_incoming *inc, int drop) argument
/illumos-gate/usr/src/uts/common/io/ral/
H A Drt2560_var.h114 int drop; member in struct:rt2560_rx_data
/illumos-gate/usr/src/lib/libast/common/port/
H A Dastconf.c953 int drop; local
1179 if ((drop = !sp) && !(sp = sfstropen()))
1287 if (drop)
/illumos-gate/usr/src/lib/libdtrace_jni/common/
H A Ddtj_consume.c157 "failed to establish drop handler: %s",
206 jobject drop = NULL; local
254 drop = (*jenv)->NewObject(jenv, g_drop_jc, g_dropinit_jm,
261 (*jenv)->CallVoidMethod(jenv, jc->dtjj_caller, g_drop_jm, drop);
262 (*jenv)->DeleteLocalRef(jenv, drop);
2193 * exception in the getAggregate() thread if the drop handler is
/illumos-gate/usr/src/cmd/sendmail/src/
H A Ddaemon.c3098 bool drop; local
3134 ** Want to drop to the user who started the process in all cases
3140 drop = !(UseMSP && RunAsUid != 0 &&
3143 if (drop_privileges(drop) != EX_OK)
3147 "could not drop privileges: %s",
H A Dmain.c332 /* drop group id privileges (RunAsUser not yet set) */
1372 /* drop privileges -- daemon mode done after socket/bind */
1549 ** drop privs to prevent normal
1568 sm_dprintf("Failed to drop privs for user %d attempt to expand, exiting\n",
2273 /* Only drop when a child gives status */
2556 /* drop privileges */
2923 ** drop -- whether or not to drop CurEnv envelope
2935 finis(drop, cleanup, exitstat)
2936 bool drop;
3219 bool drop = false; local
[all...]
/illumos-gate/usr/src/uts/common/inet/ipd/
H A Dipd.c230 int ipdn_drop; /* drop percentage */
270 * - drop
279 int dwait, corrupt, drop, rand, off, status; local
288 drop = ins->ipdn_drop;
299 if (drop != 0 && rand % 100 < drop) {
534 * We have to drop the lock here, lest we cause a deadlock.
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dsockfilter.c699 struct sonode *drop; local
706 while ((drop =
712 (void) socket_close(drop, 0, kcred);
713 socket_destroy(drop);
908 * drop its' reference on the filter module whenever its'
/illumos-gate/usr/src/uts/common/io/hxge/
H A Dhpi_pfc.c833 hpi_pfc_set_interrupt_mask(hpi_handle_t handle, boolean_t drop, argument
841 if (drop)
/illumos-gate/usr/src/lib/libast/common/regex/
H A Dregcomp.c182 drop(regdisc_t* disc, Rex_t* e) function
194 drop(disc, e->re.group.expr.binary.left);
195 drop(disc, e->re.group.expr.binary.right);
205 drop(disc, e->re.group.expr.rex);
307 drop(env->disc, e);
312 drop(env->disc, e);
319 drop(env->disc, f);
341 drop(env->disc, f);
1329 drop(env->disc, e);
1456 drop(en
[all...]
H A Dreglib.h42 #define drop _reg_drop macro
579 extern void drop(regdisc_t*, Rex_t*);
/illumos-gate/usr/src/lib/efcode/include/fcode/
H A Dproto.h90 FNPROTO(drop); variable
/illumos-gate/usr/src/uts/common/io/cxgbe/common/
H A Dcommon.h146 u64 drop; member in struct:lb_port_stats
/illumos-gate/usr/src/lib/efcode/engine/
H A Dforth.c157 drop(env);
721 * 'unloop' Fcode implementation, drop 3 loop ctrl elements off return stack.
1199 drop(fcode_env_t *env) function
1201 CHECK_DEPTH(env, 1, "drop");
1277 drop(env);
1334 CHECK_DEPTH(env, 2, "2drop");
2227 drop(env);
2241 drop(env);
2543 ANSI(0x046, 0, "drop", drop);
[all...]
/illumos-gate/usr/src/uts/sun/io/eri/
H A Deri.h114 uint32_t drop; member in struct:stats

Completed in 140 milliseconds