Searched refs:pending (Results 1 - 25 of 76) sorted by path

1234

/illumos-gate/usr/src/boot/lib/libz/
H A Ddeflate.c407 s->pending = 0;
450 int ZEXPORT deflatePending (strm, pending, bits)
451 unsigned *pending;
456 if (pending != Z_NULL)
457 *pending = strm->state->pending;
516 if (err == Z_BUF_ERROR && s->pending == 0)
624 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
637 * Flush as much pending output as possible. All deflate() output goes
649 len = s->pending;
[all...]
H A Ddeflate.h100 Bytef *pending_buf; /* output still pending */
102 Bytef *pending_out; /* next pending byte to output to the stream */
103 uInt pending; /* nb of bytes in the pending buffer */ member in struct:internal_state
278 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);}
H A Dtrees.c880 * Flush the bits in the bit buffer to pending output (leaves at most 7 bits)
1099 Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,
H A Dzlib.h274 buffer because there might be more output pending.
280 If the parameter flush is set to Z_SYNC_FLUSH, all pending output is
290 If flush is set to Z_PARTIAL_FLUSH, all pending output is flushed to the
320 If the parameter flush is set to Z_FINISH, pending input is processed,
321 pending output is flushed and deflate returns with Z_STREAM_END if there was
356 This function discards any unprocessed input and does not flush any pending
419 more output pending.
454 this case all pending input is processed and all pending output is flushed;
511 This function discards any unprocessed input and does not flush any pending
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.c219 Bytef *pending_buf; /* output still pending */
220 Bytef *pending_out; /* next pending byte to output to the stream */
221 int pending; /* nb of bytes in the pending buffer */ member in struct:deflate_state
394 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);}
677 s->pending = 0;
693 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
706 * Flush as much pending output as possible.
712 unsigned len = state->pending;
724 state->pending
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_nfs4.c4192 int pending = 0; local
4209 pending = 0;
4213 pending = 1;
4217 if (pending)
/illumos-gate/usr/src/cmd/fm/eversholt/files/sparc/sun4v/
H A Dzambezi.esc775 event ereport.asic.zambezi.asu.pending-ram-parity-error@interconnect
777 event ereport.asic.zambezi.asu.pending-tid-ram-parity-error@interconnect
837 ereport.asic.zambezi.asu.pending-ram-parity-error@interconnect,
838 ereport.asic.zambezi.asu.pending-tid-ram-parity-error@interconnect,
/illumos-gate/usr/src/cmd/fs.d/ufs/fsck/
H A Dsetup.c1313 int pending, transferred; local
1458 pending = sizeof (struct fs);
1461 transferred = read(child_pipe[FROM_CHILD], target, pending);
1462 pending -= transferred;
1464 } while ((pending > 0) && (transferred > 0));
1466 if (pending > 0) {
/illumos-gate/usr/src/cmd/fs.d/ufs/mkfs/
H A Dmkfs.c3111 * Flush all pending writes and try a normal
3210 * In case we need any data that's pending in an aiowrite(),
3318 * Flush all pending writes and try a normal
3327 * Keep track of our pending writes.
5740 int row, column, pending, written; local
5744 pending = sizeof (sblock);
5747 written = write(fileno(stdout), source, pending);
5748 pending -= written;
5750 } while ((pending > 0) && (written > 0));
/illumos-gate/usr/src/cmd/hal/hald/
H A Dhald_runner.c424 call_notify(DBusPendingCall *pending, void *user_data) argument
435 m = dbus_pending_call_steal_reply(pending);
462 dbus_pending_call_unref (pending);
474 dbus_pending_call_unref (pending);
/illumos-gate/usr/src/cmd/isns/isnsd/
H A Desi.c573 * ESI failure, the ESI event will be removed with a pending time,
577 * pending - the pending flag.
585 int pending
605 (void) el_remove(puid, uid, pending);
697 * removed, the ESI event will be marked as removal pending, which
698 * will result in removing the Entity object after the pending time.
703 * pending - flag for the ESI removal pending.
713 int pending
[all...]
H A Dobj.c3645 * pending - 1: do not remove the ESI entry immediately;
3656 int pending
3697 pending);
3716 pending);
3741 (void) esi_remove_obj(obj, pending);
3807 int pending
3810 return (do_dereg(lcp, 0, 0, pending));
H A Dsched.c454 * pending - Do not actually remove, mark it for removal pending.
463 int pending
472 if (evl_remove(id1, id2, pending) != 0) {
482 if (ev_remove(n->event, id2, 1, pending) == 0) {
/illumos-gate/usr/src/cmd/listen/
H A Dlisten.c110 struct call_list *Priv_call; /* call save pending list */
179 static void pitchcall(struct call_list *pending, struct t_discon *discon);
483 /* set up free call list and pending connection lists */
899 struct call_list *phead; /* pending head */
1621 * pitchcall: remove call from pending list
1625 pitchcall(struct call_list *pending, struct t_discon *discon) argument
1630 if (EMPTYLIST(pending)) {
1634 p = pending->cl_head;
1639 pending->cl_head = p->c_np;
1640 if (pending
[all...]
/illumos-gate/usr/src/cmd/mandoc/
H A Dmdoc_macro.c533 int j, lastarg, maxargs, nl, pending; local
554 * both of our own and of pending sub-blocks.
587 * When there is no pending sub block,
596 * When there is a pending sub block, postpone
705 pending = find_pending(mdoc, ntok, line, ppos,
708 pending = 0;
709 if ( ! pending)
/illumos-gate/usr/src/cmd/print/bsd-sysv-commands/
H A Ddisable.c95 int pending = 0; /* not implemented */ local
108 pending = 1;
/illumos-gate/usr/src/cmd/sgs/rtld/common/
H A Dutil.c702 static APlist *pending = NULL; local
707 * pending queue and return. We'll pick up the queue after any
711 (void) aplist_append(&pending, tobj, AL_CNT_PENDING);
772 * pending objects that might have been delayed as this
782 for (APLIST_TRAVERSE(pending, idx, pobj)) {
783 aplist_delete(pending, &idx);
3111 * pending messages - lasterr is simply a pointer to
/illumos-gate/usr/src/cmd/syslogd/
H A Dsyslogd.c573 * Open the log device, and pull up all pending messages.
969 logmymsg(int pri, char *msg, int flags, int pending) argument
990 qptr = pending ? &tmpq : &inputq;
1285 DPRINT2(3, "logmsg(%u): pending SHUTDOWN %d\n",
1301 "arrived SHUTDOWN. pending %d\n",
1410 * below, and start pulling out the pending messages.
1663 * Pull out all pending messages, if they exist.
2997 * open the log device, and pull up all pending message
3003 * Now we can deliver the pending internal error messages.
3020 * LOG_CONS. Therefor, we should pull up all pending lo
[all...]
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dasm.S2186 * if there is a character pending, return it; otherwise return -1
2187 * BIOS call "INT 16H Function 01H" to check whether a character is pending
2212 DATA32 jmp pending
2217 pending: label
2546 * BIOS call "INT 1AH Function 02H" to check whether a character is pending
/illumos-gate/usr/src/lib/libpp/common/
H A Dpplib.h251 int pending; /* ppline() pending output */ \
H A Dppline.c78 if (pp.pending == pppendout() || pplastout() != '\n')
85 pp.pending = pppendout();
H A Dppmacref.c57 pp.pending = pppendout();
/illumos-gate/usr/src/ucbcmd/sed/
H A Dsed.h147 extern union reptr *pending;
H A Dsed0.c95 pending = 0;
H A Dsed1.c60 union reptr *pending; variable in typeref:union:reptr
126 if(pending) {
127 ipc = pending;
128 pending = 0;
505 pending = ipc;
517 pending = ipc;

Completed in 578 milliseconds

1234