Home | History | Annotate | Download | only in gdb

Lines Matching refs:maint

2192       btinfo->maint.variant.bts.packet_history.begin = 0;
2193 btinfo->maint.variant.bts.packet_history.end = 0;
2198 delete btinfo->maint.variant.pt.packets;
2200 btinfo->maint.variant.pt.packets = NULL;
2201 btinfo->maint.variant.pt.packet_history.begin = 0;
2202 btinfo->maint.variant.pt.packet_history.end = 0;
2356 /* Must clear the maint data before - it depends on BTINFO->DATA. */
3032 /* Decode packets into MAINT using DECODER. */
3035 btrace_maint_decode_pt (struct btrace_maint_info *maint,
3040 if (maint->variant.pt.packets == NULL)
3041 maint->variant.pt.packets = new std::vector<btrace_pt_packet>;
3063 maint->variant.pt.packets->push_back (packet);
3071 maint->variant.pt.packets->push_back (packet);
3129 btrace_maint_decode_pt (&btinfo->maint, decoder);
3166 *from = btinfo->maint.variant.bts.packet_history.begin;
3167 *to = btinfo->maint.variant.bts.packet_history.end;
3172 if (btinfo->maint.variant.pt.packets == nullptr)
3173 btinfo->maint.variant.pt.packets = new std::vector<btrace_pt_packet>;
3175 if (btinfo->maint.variant.pt.packets->empty ())
3179 *end = btinfo->maint.variant.pt.packets->size ();
3180 *from = btinfo->maint.variant.pt.packet_history.begin;
3181 *to = btinfo->maint.variant.pt.packet_history.end;
3214 btinfo->maint.variant.bts.packet_history.begin = begin;
3215 btinfo->maint.variant.bts.packet_history.end = end;
3223 = *btinfo->maint.variant.pt.packets;
3241 btinfo->maint.variant.pt.packet_history.begin = begin;
3242 btinfo->maint.variant.pt.packet_history.end = end;
3416 /* Must clear the maint data before - it depends on BTINFO->DATA. */
3483 ((btinfo->maint.variant.pt.packets == nullptr)
3484 ? 0 : btinfo->maint.variant.pt.packets->size ()));
3491 /* The "maint show btrace pt skip-pad" show value function. */