Searched refs:state (Results 1 - 25 of 2035) sorted by path

1234567891011>>

/freebsd-11-stable/bin/ps/
H A Dextern.h80 char *state(KINFO *, VARENT *);
H A Dkeyword.c192 {"stat", "", "state", NULL, 0, NULL, 0, CHAR, NULL, 0},
193 {"state", "STAT", NULL, "state", LJUST, state, 0, CHAR, NULL, 0},
H A Dprint.c217 state(KINFO *k, VARENT *ve __unused) function
/freebsd-11-stable/bin/sh/
H A Dexpand.c88 enum wordstate state; member in struct:worddest
170 if (p != stackblock() || (is_ws ? dst->state == WORD_QUOTEMARK :
171 dst->state != WORD_WS_DELIMITED) || c == '\0') {
177 dst->state = is_ws ? WORD_WS_DELIMITED : WORD_IDLE;
178 } else if (!is_ws && dst->state == WORD_WS_DELIMITED)
179 dst->state = WORD_IDLE;
219 * Caution: this function uses global state and is not reentrant.
221 * and will reset the global state for the new call.
232 exparg.state = WORD_IDLE;
240 exparg.state
[all...]
H A Dmain.c91 * exception occurs. When an exception occurs the variable "state"
99 volatile int state; local
104 state = 0;
119 if (state == 0 || iflag == 0 || ! rootshell ||
127 if (state == 1)
129 else if (state == 2)
131 else if (state == 3)
153 state = 1;
156 state = 2;
163 state
[all...]
H A Dparser.c974 TSTATE_VAR_NEW, /* other ${var...}, own dquote state */
1411 struct tokenstate *state = state_static; local
1419 state[level].syntax = initialsyntax;
1420 state[level].parenlevel = 0;
1421 state[level].category = TSTATE_TOP;
1431 synentry = state[level].syntax[c];
1435 if (state[level].syntax == BASESYNTAX)
1471 if (state[level].syntax == DQSYNTAX &&
1475 (c != '}' || state[level].category != TSTATE_VAR_OLD))
1479 state[leve
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/
H A Dtst.localtcpstate.ksh28 # Test tcp:::state-change and tcp:::{send,receive} by connecting to
31 # A number of state transition events along with tcp fusion send and
80 print \$s "testing state machine transitions";
120 tcp:::state-change
153 printf("tcp:::state-change to syn-sent - %s\n",
155 printf("tcp:::state-change to syn-received - %s\n",
157 printf("tcp:::state-change to established - %s\n",
159 printf("tcp:::state-change to fin-wait-1 - %s\n",
161 printf("tcp:::state-change to close-wait - %s\n",
163 printf("tcp:::state
[all...]
H A Dtst.remotetcpstate.ksh28 # Test tcp:::state-change and tcp:::{send,receive} by connecting to
31 # A number of state transition events along with tcp send and receive
85 print \$s "testing state machine transitions";
125 tcp:::state-change
151 printf("tcp:::state-change to syn-sent - %s\n",
153 printf("tcp:::state-change to established - %s\n",
155 printf("tcp:::state-change to fin-wait-1 - %s\n",
157 printf("tcp:::state-change to fin-wait-2 - %s\n",
159 printf("tcp:::state-change to time-wait - %s\n",
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ustack/
H A Dtst.spin.ksh48 * its steady state.
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/zpool/
H A Dzpool_vdev.c289 pool_state_t state; local
306 if (zpool_in_use(g_zfs, fd, &state, &name, &inuse) == 0 && inuse) {
309 switch (state) {
330 if (state == POOL_STATE_SPARE && isspare)
333 if (state == POOL_STATE_ACTIVE ||
334 state == POOL_STATE_SPARE || !force) {
335 switch (state) {
1079 pool_state_t state; local
1091 if (zpool_in_use(g_zfs, fd, &state, &name, &inuse) != 0 ||
1093 state !
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_lex.l68 * On the other hand, leaving current buffer in same state it was when
700 yybegin(yystate_t state)
705 if (yypcb->pcb_yystate == state)
706 return; /* nothing to do if we're in the state already */
713 switch (state) {
731 xyerror(D_UNKNOWN, "internal error -- bad yystate %d\n", state);
734 yypcb->pcb_yystate = state;
H A Ddt_proc.c126 int state = Pstate(dpr->dpr_proc); local
133 state != PS_LOST && state != PS_UNDEAD) {
301 dt_dprintf("pid %d: rtld event %s type=%d state %d\n",
302 (int)dpr->dpr_pid, evname, rdm.type, rdm.u.state);
306 if (rdm.u.state != RD_CONSISTENT)
422 * dt_proc_control() will then rediscover the new state and continue as usual.
423 * When the process is still stopped in the same exact state, we sleep for a
465 * If we've reached a new state, found a new representative, or
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libzfs/common/
H A Dlibzfs_import.c221 uint64_t pool_guid, vdev_guid, top_guid, txg, state; local
233 &state) == 0 &&
234 (state == POOL_STATE_SPARE || state == POOL_STATE_L2CACHE) &&
256 * create the pool, we'll be left with a label in this state
537 * pool state
541 uint64_t state, version; local
562 state = fnvlist_lookup_uint64(tmp,
565 ZPOOL_CONFIG_POOL_STATE, state);
880 uint64_t state, tx local
938 uint64_t state, txg, size; local
1675 zpool_in_use(libzfs_handle_t *hdl, int fd, pool_state_t *state, char **namestr, boolean_t *inuse) argument
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libzpool/common/sys/
H A Dzfs_context.h223 #define thread_create(stk, stksize, func, arg, len, pp, state, pri) \
709 int lock; /* wiring state */
/freebsd-11-stable/cddl/lib/libdtrace/
H A Dtcp.d33 * Convert a TCP state value to a string.
76 /* TCP connection state strings. */
78 inline string tcp_state_string[int32_t state] =
79 state == TCPS_CLOSED ? "state-closed" :
80 state == TCPS_LISTEN ? "state-listen" :
81 state == TCPS_SYN_SENT ? "state-syn-sent" :
82 state
[all...]
/freebsd-11-stable/cddl/usr.sbin/dwatch/libexec/
H A DMakefile77 LINKS+= ${LIBEXECDIR}/dwatch/tcp ${LIBEXECDIR}/dwatch/tcp-state-change
/freebsd-11-stable/contrib/amd/amd/
H A Dsrvr_amfs_auto.c199 * Log state change
202 srvrlog(fserver *fs, char *state) argument
204 plog(XLOG_INFO, "file server %s, type %s, state %s", fs->fs_host, fs->fs_type, state);
/freebsd-11-stable/contrib/amd/fsinfo/
H A Dnull_gram.c364 /* YYFINAL -- State number of the termination state. */
461 /* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM.
481 /* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If
495 symbol of state STATE-NUM. */
615 | yy_stack_print -- Print the state stack from its BOTTOM up to its |
783 about the unexpected token YYTOKEN for the state stack whose top is
806 - If this state is a consistent state with a default action, then
811 this state is a consistent state wit
[all...]
H A Dnull_lex.c146 /* Translate the current start state into a value that can be later handed
147 * to BEGIN to return to the state. The YYSTATE alias is for lex
153 /* Action number for EOF rule of a given start state. */
154 #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
174 /* The state buf must be large enough to hold one state per character in the main buffer.
286 * "scanner state".
307 static int yy_start = 0; /* start state number */
678 (yy_start) = 1; /* first start state */
[all...]
/freebsd-11-stable/contrib/apr-util/crypto/
H A Dapr_md4.c68 static void MD4Transform(apr_uint32_t state[4], const unsigned char block[64]);
118 context->state[0] = 0x67452301;
119 context->state[1] = 0xefcdab89;
120 context->state[2] = 0x98badcfe;
121 context->state[3] = 0x10325476;
183 MD4Transform(context->state, context->buffer);
186 MD4Transform(context->state, &input[i]);
207 MD4Transform(context->state, context->buffer);
216 MD4Transform(context->state, inp_tmp);
219 MD4Transform(context->state,
295 MD4Transform(apr_uint32_t state[4], const unsigned char block[64]) argument
[all...]
H A Dapr_md5.c89 static void MD5Transform(apr_uint32_t state[4], const unsigned char block[64]);
150 context->state[0] = 0x67452301;
151 context->state[1] = 0xefcdab89;
152 context->state[2] = 0x98badcfe;
153 context->state[3] = 0x10325476;
216 MD5Transform(context->state, context->buffer);
219 MD5Transform(context->state, &input[i]);
240 MD5Transform(context->state, context->buffer);
249 MD5Transform(context->state, inp_tmp);
252 MD5Transform(context->state,
338 MD5Transform(apr_uint32_t state[4], const unsigned char block[64]) argument
[all...]
/freebsd-11-stable/contrib/apr-util/include/
H A Dapr_md4.h68 /** state (ABCD) */
69 apr_uint32_t state[4]; member in struct:apr_md4_ctx_t
H A Dapr_md5.h75 /** state (ABCD) */
76 apr_uint32_t state[4]; member in struct:apr_md5_ctx_t
/freebsd-11-stable/contrib/apr-util/include/private/
H A Dapr_dbd_odbc_v2.h55 #define SQLGetDiagRec(type, h, i, state, native, buffer, bufsize, reslen) \
59 state, native, buffer, bufsize, reslen)
/freebsd-11-stable/contrib/apr-util/misc/
H A Dapr_thread_pool.c50 volatile enum { TH_RUN, TH_STOP, TH_PROBATION } state; member in struct:apr_thread_list_elt
226 elt->state = TH_RUN;
252 while (!me->terminated && elt->state != TH_STOP) {
271 if (TH_STOP == elt->state) {
277 if (TH_STOP != elt->state)
284 || me->terminated || elt->state != TH_RUN) {
286 if ((TH_PROBATION == elt->state) && me->idle_wait)
309 elt->state = TH_PROBATION;
813 elt->state = TH_STOP;
816 elt->state
[all...]

Completed in 244 milliseconds

1234567891011>>