Searched defs:kind (Results 1 - 25 of 55) sorted by relevance

123

/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);
/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_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)
H A Dctf_open.c228 ushort_t kind = LCTF_INFO_KIND(fp, tp->ctt_info); local
237 switch (kind) {
274 * kind for the tag, so bump that population count too.
295 ctf_dprintf("detected invalid CTF kind -- %u\n", kind);
299 pop[kind]++;
348 ushort_t kind = LCTF_INFO_KIND(fp, tp->ctt_info); local
360 switch (kind) {
/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/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/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/lib/libkmf/include/
H A Drdn_parser.h67 OidAvaTag kind; member in struct:NameToKind
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_xlator.c105 uint_t kind; local
196 kind = ctf_type_kind(dst->dtt_ctfp, dxp->dx_dst_base);
197 assert(kind == CTF_K_STRUCT || kind == CTF_K_UNION);
H A Ddt_as.c192 const char *kind, *mark = (idp->di_flags & DT_IDFLG_USER) ? "``" : "`"; local
196 kind = "user";
198 kind = "primary kernel";
200 kind = "loadable kernel";
205 "0x%x)\n", kind, dts->dts_object, mark, dts->dts_name, offset);
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_handle.c297 dt_droptag(dtrace_dropkind_t kind) argument
302 if (_dt_droptags[i].dtdrg_kind == kind)
H A Ddt_pragma.c471 int kind = DT_PRAGMA_DIR; local
482 if (kind == DT_PRAGMA_DIR &&
484 kind = DT_PRAGMA_SUB;
488 if (kind == DT_PRAGMA_SUB &&
490 kind = DT_PRAGMA_DCP;
495 if (dpd->dpd_kind <= kind &&
508 switch (kind) {
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_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...]
/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/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;
/illumos-gate/usr/src/lib/abi/apptrace/common/
H A Dapptraceutil.c302 int kind, d; local
313 (kind = ctf_type_kind(ctfp, base)) == CTF_ERR)
324 printfuncs[kind - 1](base, off, pap);
/illumos-gate/usr/src/cmd/rpcgen/
H A Drpc_scan.h101 tok_kind kind; member in struct:token
/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) {
H A Dfth_struct.c339 int kind; local
347 if ((kind = ctf_type_kind(ctf, tid)) == CTF_ERR) {
348 return (parse_warn("Can't get kind for %s.%s",
357 switch (kind) {
392 return (parse_warn("Unexpected kind %d for %s.%s", kind,
/illumos-gate/usr/src/cmd/lp/filter/postscript/postcomm/
H A Dpostcomm.c185 error(int kind, char *mesg, ...)
191 * Called when we've run into some kind of program error. First *mesg is
192 * printed using the control string arguments a?. Then if kind is FATAL
210 if ( kind == FATAL && ignore == OFF ) {
183 error(int kind, char *mesg, ...) argument
/illumos-gate/usr/src/cmd/mandoc/
H A Dtbl_term.c217 tbl_hrule(struct termp *tp, const struct tbl_span *sp, int kind) argument
223 line = (kind == 0 && TBL_SPAN_DHORIZ == sp->pos) ? '=' : '-';
224 cross = (kind < 2) ? '+' : '-';
226 if (kind)
247 if (kind) {

Completed in 166 milliseconds

123