HomeSort by relevance Sort by last modified time
    Searched defs:agg (Results 1 - 12 of 12) sorted by null

  /onnv/onnv-gate/usr/src/lib/libdtrace/common/
dt_map.c 316 dtrace_aggdesc_t *agg, *nagg; local
318 if ((agg = malloc(sizeof (dtrace_aggdesc_t))) == NULL)
321 bzero(agg, sizeof (dtrace_aggdesc_t));
322 agg->dtagd_id = id;
323 agg->dtagd_nrecs = 1;
325 if (dt_ioctl(dtp, DTRACEIOC_AGGDESC, agg) == -1) {
327 free(agg);
331 if (DTRACE_SIZEOF_AGGDESC(agg) != sizeof (*agg)) {
336 if ((nagg = malloc(DTRACE_SIZEOF_AGGDESC(agg))) != NULL
    [all...]
dt_aggregate.c 332 dtrace_aggdesc_t *agg = ent->dtahe_data.dtada_desc; local
334 dtrace_recdesc_t *rec = agg->dtagd_rec;
341 if (agg->dtagd_varid != DTRACE_AGGVARIDNONE)
342 return (agg->dtagd_varid);
344 agg->dtagd_varid = *((dtrace_aggvarid_t *)(uintptr_t)(data +
347 return (agg->dtagd_varid);
361 dtrace_aggdesc_t *agg; local
420 if ((rval = dt_aggid_lookup(dtp, id, &agg)) != 0)
424 size = agg->dtagd_size;
427 for (j = 0; j < agg->dtagd_nrecs - 1; j++)
1487 dtrace_aggdesc_t *agg; local
    [all...]
dt_printf.c 997 xyerror(D_TYPE_ERR, "failed to lookup agg type %s\n", aggtype);
1262 dtrace_aggdesc_t *agg; local
1801 const dtrace_aggdesc_t *agg = adp->dtada_desc; local
1829 const dtrace_aggdesc_t *agg = aggdata->dtada_desc; local
    [all...]
dt_consume.c 1180 dtrace_aggdesc_t *agg = aggdata->dtada_desc; local
1183 if (agg->dtagd_nrecs == 0)
1186 if (agg->dtagd_varid != id)
1248 dtrace_aggdesc_t *agg = aggdata->dtada_desc; local
1251 if (agg->dtagd_nrecs == 0)
1254 if (agg->dtagd_varid != id)
1263 dtrace_aggdesc_t *agg = aggdata->dtada_desc; local
1266 if (agg->dtagd_nrecs == 0)
1269 if (agg->dtagd_varid != id)
1284 dtrace_aggdesc_t *agg = aggdata->dtada_desc local
1444 dtrace_aggdesc_t *agg = aggdata->dtada_desc; local
1516 dtrace_aggdesc_t *agg = aggdata->dtada_desc; local
    [all...]
  /onnv/onnv-gate/usr/src/common/exacct/
exacct_core.c 156 uint16_t agg; member in union:__anon1958
160 t.agg = *in;
166 *in = t.agg;
179 uint32_t agg; member in union:__anon1959
183 t.agg = *in;
191 *in = t.agg;
204 uint64_t agg; member in union:__anon1960
208 t.agg = *in;
216 *in = t.agg;
  /onnv/onnv-gate/usr/src/lib/fm/topo/modules/common/ses/
ses_facility.c 857 ses_add_enclosure_sensors(topo_mod_t *mod, tnode_t *tn, ses_node_t *agg,
897 aprops = ses_node_props(agg);
899 for (child = ses_node_child(agg); child != NULL;
948 ses_node_t *np, *agg; local
975 for (agg = ses_node_child(np); agg != NULL;
976 agg = ses_node_sibling(agg)) {
977 if (ses_node_type(agg) != SES_NODE_AGGREGATE)
980 verify((aprops = ses_node_props(agg)) != NULL)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/dtrace/
dtrace.c 848 const dtrace_aggdata_t *agg = bufdata->dtbda_aggdata; local
869 } else if (agg != NULL) {
870 pd = agg->dtada_pdesc;
917 if (agg != NULL) {
927 data = (uint8_t *)agg->dtada_data + rec->dtrd_offset;
945 if (agg != NULL) {
946 dtrace_aggdesc_t *desc = agg->dtada_desc;
    [all...]
  /onnv/onnv-gate/usr/src/lib/libsqlite/src/
vdbeInt.h 141 #define MEM_AggCtx 0x0100 /* Mem.z points to an agg function context */
166 ** An Agg structure describes an Aggregator. Each Agg consists of
172 typedef struct Agg Agg;
174 struct Agg {
262 Agg agg; /* Aggregate information */ member in struct:Vdbe
299 void sqliteVdbeAggReset(Agg*);
  /onnv/onnv-gate/usr/src/cmd/lockstat/
lockstat.c 792 dtrace_optval_t val, status, agg; local
801 if (dtrace_getopt(g_dtp, "aggrate", &agg) == -1)
811 val = status < agg ? status : agg;
887 count_aggregate(const dtrace_aggdata_t *agg, void *arg)
895 process_aggregate(const dtrace_aggdata_t *agg, void *arg)
897 const dtrace_aggdesc_t *aggdesc = agg->dtada_desc;
898 caddr_t data = agg->dtada_data;
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/iwk/
iwk_calibration.h 735 struct statistics_tx_non_phy_agg agg; member in struct:statistics_tx
    [all...]
  /onnv/onnv-gate/usr/src/cmd/mdb/common/modules/dtrace/
dtrace.c 259 dtrace_aggregation_t agg; local
279 if (mdb_vread(&agg, sizeof (agg), addr) == -1) {
284 eaddr = (uintptr_t)agg.dtag_ecb;
297 ap = (uintptr_t)agg.dtag_first;
316 agd->dtagd_size = lrec->dtrd_offset + lrec->dtrd_size - agg.dtag_base;
322 ap = (uintptr_t)agg.dtag_first;
338 rec.dtrd_offset -= agg.dtag_base;
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/dtrace/
dtrace.c 5758 dtrace_aggregation_t *agg; local
9214 dtrace_aggregation_t *agg = (dtrace_aggregation_t *)act; local
9282 dtrace_aggregation_t *agg; local
9440 dtrace_aggregation_t *agg = (dtrace_aggregation_t *)act; local
9963 dtrace_aggregation_t *agg; local
14716 dtrace_aggregation_t *agg; local
    [all...]

Completed in 600 milliseconds