Searched refs:aggid (Results 1 - 8 of 8) sorted by relevance
/illumos-gate/usr/src/lib/libdtrace/common/ |
H A D | dt_map.c | 415 dt_aggid_lookup(dtrace_hdl_t *dtp, dtrace_aggid_t aggid, argument 420 if (aggid >= dtp->dt_maxagg || dtp->dt_aggdesc[aggid] == NULL) { 421 if ((rval = dt_aggid_add(dtp, aggid)) != 0) 425 assert(aggid < dtp->dt_maxagg); 426 assert(dtp->dt_aggdesc[aggid] != NULL); 427 *adp = dtp->dt_aggdesc[aggid];
|
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/ |
H A D | Aggregate.java | 301 addRecord(String aggregationName, long aggid, AggregationRecord rec) argument 308 aggregation = new Aggregation(aggregationName, aggid);
|
H A D | PrintaRecord.java | 367 addRecord(String aggregationName, long aggid, AggregationRecord record) argument 378 aggregation = new Aggregation(aggregationName, aggid);
|
H A D | ProbeData.java | 306 addAggregationRecord(String aggregationName, long aggid, argument 314 printa.addRecord(aggregationName, aggid, rec);
|
/illumos-gate/usr/src/lib/libdtrace_jni/common/ |
H A D | dtj_consume.c | 1659 int64_t aggid; local 1675 aggid = *((int64_t *)(aggdata->dtada_data + 1677 if (aggid < 0) { 1709 if (aggid != jc->dtjj_consumer->dtjc_aggid) { 1721 jc->dtjj_consumer->dtjc_aggid = aggid; 1820 aggid);
|
H A D | dtj_jnitab.c | 648 int64_t aggid) 678 e->dtja_aggid = aggid; 647 dtj_aggval_create(JNIEnv *jenv, jobject aggval, const char *aggname, int64_t aggid) argument
|
/illumos-gate/usr/src/cmd/mdb/common/modules/dtrace/ |
H A D | dtrace.c | 261 dtrace_aggid_t aggid = agd->dtagd_id; local 270 (aggid - 1) * sizeof (dtrace_aggregation_t *); 273 mdb_warn("failed to read aggregation for aggid %d", aggid); 278 mdb_warn("aggid %d doesn't match an aggregation\n", aggid);
|
/illumos-gate/usr/src/uts/common/dtrace/ |
H A D | dtrace.c | 2496 * include the aggid in the hashing (but we will store it as part of 10686 dtrace_aggid_t aggid; local 10823 aggid = (dtrace_aggid_t)(uintptr_t)vmem_alloc(state->dts_aggid_arena, 1, 10826 if (aggid - 1 >= state->dts_naggregations) { 10832 ASSERT(aggid == state->dts_naggregations + 1); 10850 ASSERT(state->dts_aggregations[aggid - 1] == NULL); 10851 state->dts_aggregations[(agg->dtag_id = aggid) - 1] = agg; 10870 dtrace_aggid_t aggid = agg->dtag_id; local 10873 vmem_free(state->dts_aggid_arena, (void *)(uintptr_t)aggid, 1); 10875 ASSERT(state->dts_aggregations[aggid [all...] |
Completed in 113 milliseconds