Searched refs:kind (Results 1 - 25 of 75) sorted by relevance

123

/illumos-gate/usr/src/cmd/rpcgen/
H A Drpc_scan.c74 if (tokp->kind != expect)
85 if (tokp->kind != expect1 && tokp->kind != expect2)
96 if (tokp->kind != expect1 && tokp->kind != expect2 &&
97 tokp->kind != expect3)
108 switch (tokp->kind) {
133 if (tokp->kind == expect) {
159 tokp->kind = TOK_EOF;
211 tokp->kind
[all...]
H A Drpc_scan.h101 tok_kind kind; member in struct:token
H A Drpc_parse.c76 switch (tok.kind) {
271 } while (tok.kind != TOK_RBRACE);
365 } while (tok.kind != TOK_RBRACE);
381 } while (tok.kind == TOK_VERSION);
406 if (tok.kind == TOK_EQUAL) {
413 } while (tok.kind != TOK_RBRACE);
450 while (tok.kind == TOK_CASE) {
484 if (tok.kind == TOK_DEFAULT) {
577 if (tok.kind == TOK_STAR) {
622 if (tok.kind
[all...]
/illumos-gate/usr/src/cmd/dtrace/test/cmd/scripts/
H A Ddtfailures.ksh34 kind=`basename $(dirname $tst)`
38 printf "%-3d %-10s %-31s " $failure $kind $name
/illumos-gate/usr/src/cmd/tnf/prex/
H A Dcmd.h71 cmd_kind_t kind; member in struct:cmd
77 cmd_kind_t kind,
87 cmd_t *cmd_set(char *setname_p, cmd_kind_t kind, char *fcnname_p);
88 cmd_t *cmd_expr(expr_t * expr_p, cmd_kind_t kind, char *fcnname_p);
H A Dcmd.c61 cmd_set(char *setname_p, cmd_kind_t kind, char *fcnname_p) argument
71 if (kind == CMD_CONNECT && !fcn_find(fcnname_p)) {
85 new_p->kind = kind;
99 cmd_expr(expr_t * expr_p, cmd_kind_t kind, char *fcnname_p) argument
103 if (kind == CMD_CONNECT && !fcn_find(fcnname_p)) {
112 new_p->kind = kind;
157 switch (cmd_p->kind) {
182 if (cmd_p->kind
[all...]
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DFlow.java77 new String[] {"kind", "depth"})
111 private final Kind kind; field in class:Flow
116 * Creates a {@code Flow} instance with the given flow kind and
131 kind = Enum.valueOf(Kind.class, flowKindName);
142 * @return non-null flow kind indicating direction of flow (entry or
148 return kind;
168 * equality. Defines equality as having the same flow kind and
172 * type {@code Flow} and both instances have equal flow kind and
181 return ((kind == f.kind)
[all...]
H A DDrop.java53 new String[] {"CPU", "kind", "count", "total",
74 * Indicates what kind of buffer space experienced the data drop
125 private final Kind kind; field in class:Drop
134 * Creates a {@code Drop} instance with the given CPU, drop kind,
138 * @param dropKindName name of enumeration value indicating the kind
155 kind = Enum.valueOf(Kind.class, dropKindName);
189 * Gets the kind of drop for all drops included in {@link
192 * @return non-null drop kind
197 return kind;
266 buf.append(", kind
[all...]
/illumos-gate/usr/src/uts/common/tnf/
H A Dtnf_types.h127 #define TNF_SCALAR_TAG(type, size, align, kind) \
137 kind }
139 #define TNF_STD_SCALAR_TAG(type, kind) \
141 TNF_ALIGN(type##_t), kind)
148 #define TNF_ARRAY_TAG(type, eltag, props, slots, kind) \
158 kind, \
162 #define TNF_STD_ARRAY_TAG(type, eltype, kind) \
164 tnf_array_properties, tnf_array_slots, kind)
170 #define TNF_DERIVED_TAG(type, basetag, props, size, align, kind) \
180 kind, \
[all...]
/illumos-gate/usr/src/tools/ctf/stabs/common/
H A Dforth.c183 int lkind = 0, kind; local
200 (kind = ctf_type_kind(ctf, tid)) == CTF_ERR) {
219 if ((kind = ctf_type_kind(ctf, tid)) == CTF_ERR) {
221 return (parse_warn("Can't get kind for %s",
235 lkind = kind;
243 switch (kind) {
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_dis.c256 char kind[16], ckind[16]; local
260 (void) strcpy(kind, "D type");
263 (void) strcpy(kind, "string");
266 (void) snprintf(kind, sizeof (kind), "0x%x", t->dtdt_kind);
318 kind, ckind, (t->dtdt_flags & DIF_TF_BYUREF) ? "user " : "",
322 kind, ckind, (ulong_t)t->dtdt_size);
463 char kind[4], scope[4], flags[16] = { 0 }; local
467 (void) strcpy(kind, "arr");
470 (void) strcpy(kind, "sc
[all...]
H A Ddt_print.c91 /* determines whether the given CTF kind is a struct or union */
376 int kind; local
386 (kind = ctf_type_kind(ctfp, rtype)) == CTF_ERR) {
393 if (kind == CTF_K_INTEGER &&
443 else if (CTF_IS_STRUCTLIKE(kind))
452 if (CTF_IS_STRUCTLIKE(kind))
548 int kind; local
567 (kind = ctf_type_kind(ctfp, rtype)) == CTF_ERR ||
568 kind < CTF_K_INTEGER || kind > CTF_K_FORWAR
[all...]
H A Ddt_decl.c75 dt_decl_alloc(ushort_t kind, char *name) argument
82 ddp->dd_kind = kind;
224 * Set the kind and name of the current declaration. If none is allocated,
225 * make a new decl and push it on to the top of our stack. If the name or kind
230 dt_decl_spec(ushort_t kind, char *name) argument
235 return (dt_decl_push(dt_decl_alloc(kind, name)));
244 if (ddp->dd_name != NULL && kind == CTF_K_TYPEDEF) {
253 ddp->dd_kind = kind;
328 dt_node_t *flist, const char *kind, uint_t flags)
339 "not use a variable-length argument list\n", kind);
327 dt_decl_prototype(dt_node_t *plist, dt_node_t *flist, const char *kind, uint_t flags) argument
477 dt_decl_sou(uint_t kind, char *name) argument
533 uint_t kind; local
[all...]
H A Ddt_parser.c511 dt_node_xalloc(dtrace_hdl_t *dtp, int kind) argument
520 dnp->dn_kind = (uchar_t)kind;
540 dt_node_alloc(int kind) argument
542 dt_node_t *dnp = dt_node_xalloc(yypcb->pcb_hdl, kind);
557 uchar_t kind = dnp->dn_kind; local
561 switch (kind) {
678 uint_t kind = ctf_type_kind(fp, base); local
684 if (kind == CTF_K_INTEGER && ctf_type_encoding(fp, base, &e) == 0) {
694 if (kind == CTF_K_FLOAT && ctf_type_encoding(fp, base, &e) == 0) {
699 if (kind
840 uint_t kind; local
860 uint_t kind; local
879 uint_t kind; local
900 uint_t kind; local
919 uint_t kind; local
982 uint_t kind; local
1007 uint_t kind; local
1552 uint_t id, kind; local
1801 uint_t kind; local
2450 uint_t kind; local
2922 uint_t kind; local
3177 int kind, val, uref; local
4325 dt_node_provider_cmp_argv(dt_provider_t *pvp, dt_node_t *pnp, const char *kind, uint_t old_argc, dt_node_t *old_argv, uint_t new_argc, dt_node_t *new_argv) argument
[all...]
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dtypegraph.c460 int kind; local
491 if ((kind = mdb_ctf_type_kind(type)) != CTF_K_STRUCT &&
492 kind != CTF_K_UNION && kind != CTF_K_ARRAY) {
505 if (kind == CTF_K_ARRAY) {
532 * is found to be of kind CTF_K_UNION. With unions, we attempt to do better
545 int kind; local
550 kind = mdb_ctf_type_kind(type);
552 if (kind == CTF_K_STRUCT || kind !
632 int kind; local
685 uint_t kind; local
1622 int kind; local
1792 int fam, kind; local
1998 int kind = mdb_ctf_type_kind(tp->tgt_type); local
2030 int kind; local
2579 int kind = mdb_ctf_type_kind(tp->tgt_type); local
2860 int kind, depth = fl->fl_depth, i; local
3020 int kind; local
3213 int i, kind; local
3290 int kind; local
[all...]
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Ddisp_major_status.c124 display_unknown(kind, value, buffer)
125 const char *kind;
132 (char *) xmalloc(strlen(unknown_error)+strlen(kind)+7)) == NULL)
135 sprintf(str, unknown_error, kind, value);
/illumos-gate/usr/src/lib/libkmf/include/
H A Drdn_parser.h67 OidAvaTag kind; member in struct:NameToKind
/illumos-gate/usr/src/common/ctf/
H A Dctf_decl.c91 uint_t kind, n = 1; local
102 switch (kind = LCTF_INFO_KIND(fp, tp->ctt_info)) {
146 cdp->cd_kind = kind;
164 if (kind == CTF_K_ARRAY || (is_qual && prec == CTF_PREC_BASE))
H A Dctf_create.c274 uint_t kind = CTF_INFO_KIND(dtd->dtd_data.ctt_info); local
282 switch (kind) {
332 uint_t kind = CTF_INFO_KIND(dtd->dtd_data.ctt_info); local
355 switch (kind) {
358 if (kind == CTF_K_INTEGER) {
486 int kind, i; local
498 kind = CTF_INFO_KIND(dtd->dtd_data.ctt_info);
499 switch (kind) {
510 if (kind != CTF_K_ENUM)
661 const char *name, const ctf_encoding_t *ep, uint_t kind)
660 ctf_add_encoded(ctf_file_t *fp, uint_t flag, const char *name, const ctf_encoding_t *ep, uint_t kind) argument
680 ctf_add_reftype(ctf_file_t *fp, uint_t flag, ctf_id_t ref, uint_t kind) argument
907 ctf_add_forward(ctf_file_t *fp, uint_t flag, const char *name, uint_t kind) argument
991 uint_t kind, vlen, root; local
1048 uint_t kind, vlen, root; local
1258 uint_t kind, flag, vlen; local
[all...]
H A Dctf_lookup.c245 ushort_t info, kind, n; local
269 kind = LCTF_INFO_KIND(fp, info);
272 if (kind == CTF_K_UNKNOWN && n == 0)
275 if (kind != CTF_K_FUNCTION)
/illumos-gate/usr/src/cmd/fm/fmd/common/
H A Dfmd_self.c49 self_case_create(fmd_hdl_t *hdl, int kind, const char *name) argument
53 scp->sc_kind = kind;
67 self_case_lookup(fmd_hdl_t *hdl, int kind, const char *name) argument
73 if (scp->sc_kind == kind && strcmp(scp->sc_name, name) == 0)
/illumos-gate/usr/src/lib/libtnf/
H A Dutil.c51 tnf_kind_t kind; member in struct:ntok
91 * Data kind depends on implementation properties of base tag
109 return (p->kind);
H A Dtype.c45 * Get data kind of a type record
58 return (info->kind);
/illumos-gate/usr/src/cmd/lp/filter/postscript/common/
H A Dmisc.c54 error(int kind, char *mesg, ...) argument
60 * Called when we've run into some kind of program error. *mesg is printed using
62 * kind is FATAL.
81 if ( kind == FATAL && ignore == OFF ) {
/illumos-gate/usr/src/cmd/tbl/
H A Dtu.c175 int kind, li, lj; local
178 /* stores into lwid the kind of line */
180 kind = lefdata(i,c);
181 if (kind==0) return(-1);
183 if (lefdata(next(i),c)== kind) return(-1);
184 while (i>=0 && lefdata(i,c)==kind)
187 *lwidp=kind;

Completed in 138 milliseconds

123