Searched defs:aggs (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DPrintaRecord.java144 * @param aggs aggregations passed to the {@code printa()} action
166 PrintaRecord(long snaptimeNanos, Collection <Aggregation> aggs, argument
172 if (aggs != null) {
173 aggregations = new ArrayList <Aggregation> (aggs.size());
174 aggregations.addAll(aggs);
/illumos-gate/usr/src/uts/common/dtrace/
H A Ddtrace.c10828 dtrace_aggregation_t **aggs; local
10839 aggs = kmem_zalloc(naggs * sizeof (*aggs), KM_SLEEP);
10842 bcopy(oaggs, aggs, onaggs * sizeof (*aggs));
10843 kmem_free(oaggs, onaggs * sizeof (*aggs));
10846 state->dts_aggregations = aggs;

Completed in 102 milliseconds