Home
last modified time | relevance | path

Searched refs:DTRACEOPT_UNSET (Results 1 – 11 of 11) sorted by relevance

/NextBSD/cddl/contrib/opensolaris/cmd/dtrace/
HDdtrace.c877 g_quiet = data->dtsda_newval != DTRACEOPT_UNSET;
880 g_flowindent = data->dtsda_newval != DTRACEOPT_UNSET;
1157 if (bufs[i].val == DTRACEOPT_UNSET)
1162 if (nsize == DTRACEOPT_UNSET || nsize == 0)
1184 if (rates[i].val == DTRACEOPT_UNSET)
1189 if (nval == DTRACEOPT_UNSET || nval == 0)
1692 g_flowindent = opt != DTRACEOPT_UNSET;
1695 g_grabanon = opt != DTRACEOPT_UNSET;
1698 g_quiet = opt != DTRACEOPT_UNSET;
1880 g_flowindent = opt != DTRACEOPT_UNSET;
[all …]
/NextBSD/cddl/contrib/opensolaris/lib/libdtrace/common/
HDdt_options.c633 val = DTRACEOPT_UNSET; in dt_opt_runtime()
644 val = DTRACEOPT_UNSET; in dt_opt_runtime()
826 dtrace_optval_t policy = DTRACEOPT_UNSET; in dt_opt_bufpolicy()
839 if (policy == DTRACEOPT_UNSET) in dt_opt_bufpolicy()
860 dtrace_optval_t policy = DTRACEOPT_UNSET; in dt_opt_bufresize()
873 if (policy == DTRACEOPT_UNSET) in dt_opt_bufresize()
912 dtp->dt_options[i] = DTRACEOPT_UNSET; in dt_options_load()
HDdt_aggregate.c1104 if (size == 0 || size == DTRACEOPT_UNSET)
1117 assert(rval == 0 && cpu != DTRACEOPT_UNSET);
1258 dt_revsort = (dtp->dt_options[DTRACEOPT_AGGSORTREV] != DTRACEOPT_UNSET);
1259 dt_keysort = (dtp->dt_options[DTRACEOPT_AGGSORTKEY] != DTRACEOPT_UNSET);
1261 if (keyposopt != DTRACEOPT_UNSET && keyposopt <= INT_MAX) {
1384 if (dtp->dt_options[DTRACEOPT_AGGZOOM] != DTRACEOPT_UNSET) {
1541 if (dtp->dt_options[DTRACEOPT_AGGHIST] != DTRACEOPT_UNSET) {
1548 if (dtp->dt_options[DTRACEOPT_AGGPACK] != DTRACEOPT_UNSET) {
1691 if (sortpos == DTRACEOPT_UNSET || sortpos >= naggvars)
HDdt_consume.c517 if (dtp->dt_options[DTRACEOPT_AGGZOOM] == DTRACEOPT_UNSET) { in dt_quantize_total()
1149 if (dtp->dt_options[DTRACEOPT_RAWBYTES] != DTRACEOPT_UNSET) in dt_print_bytes()
1265 if (dtp->dt_options[DTRACEOPT_STACKINDENT] != DTRACEOPT_UNSET) in dt_print_stack()
1357 if (dtp->dt_options[DTRACEOPT_STACKINDENT] != DTRACEOPT_UNSET) in dt_print_ustack()
1543 int quiet = (dtp->dt_options[DTRACEOPT_QUIET] != DTRACEOPT_UNSET); in dt_print_memory()
1779 int quiet = (dtp->dt_options[DTRACEOPT_QUIET] != DTRACEOPT_UNSET); in dt_print_type()
2407 int flow = (dtp->dt_options[DTRACEOPT_FLOWINDENT] != DTRACEOPT_UNSET); in dt_consume_cpu()
2408 int quiet = (dtp->dt_options[DTRACEOPT_QUIET] != DTRACEOPT_UNSET); in dt_consume_cpu()
2558 DTRACEOPT_UNSET); in dt_consume_cpu()
2560 DTRACEOPT_UNSET); in dt_consume_cpu()
[all …]
HDdt_handle.c69 if (dtp->dt_options[DTRACEOPT_GRABANON] != DTRACEOPT_UNSET) in dtrace_handle_err()
HDdt_map.c403 if (dtp->dt_options[DTRACEOPT_GRABANON] == DTRACEOPT_UNSET &&
HDdt_cc.c797 if (dtp->dt_options[DTRACEOPT_STACKFRAMES] != DTRACEOPT_UNSET) { in dt_action_stack_args()
837 if (dtp->dt_options[DTRACEOPT_JSTACKFRAMES] != DTRACEOPT_UNSET) in dt_action_ustack_args()
840 if (dtp->dt_options[DTRACEOPT_JSTACKSTRSIZE] != DTRACEOPT_UNSET) in dt_action_ustack_args()
847 if (dtp->dt_options[DTRACEOPT_USTACKFRAMES] != DTRACEOPT_UNSET) in dt_action_ustack_args()
HDdt_dof.c934 if (dtp->dt_options[i] != DTRACEOPT_UNSET) in dtrace_getopt_dof()
966 if (dtp->dt_options[i] == DTRACEOPT_UNSET) in dtrace_getopt_dof()
HDdt_open.c1212 dtp->dt_options[i] = DTRACEOPT_UNSET; in dt_vopen()
/NextBSD/sys/cddl/contrib/opensolaris/uts/common/dtrace/
HDdtrace.c14008 if (desc->dofo_value == DTRACEOPT_UNSET) {
14345 state->dts_options[i] = DTRACEOPT_UNSET;
14515 if (opt[which] == DTRACEOPT_UNSET || opt[which] == 0)
14518 if (opt[DTRACEOPT_CPU] != DTRACEOPT_UNSET)
14660 ASSERT(nspec != DTRACEOPT_UNSET);
14688 if (opt[DTRACEOPT_GRABANON] != DTRACEOPT_UNSET) {
14723 if (opt[DTRACEOPT_AGGSIZE] != DTRACEOPT_UNSET &&
14737 if (opt[DTRACEOPT_BUFSIZE] == DTRACEOPT_UNSET ||
14744 if (opt[DTRACEOPT_SPECSIZE] != DTRACEOPT_UNSET &&
14779 if ((sz = opt[DTRACEOPT_DYNVARSIZE]) == DTRACEOPT_UNSET)
[all …]
/NextBSD/sys/cddl/contrib/opensolaris/uts/common/sys/
HDdtrace.h1058 #define DTRACEOPT_UNSET (dtrace_optval_t)-2 /* unset option */ macro