Lines Matching refs:BugreportInfo

194     private final SparseArray<BugreportInfo> mProcesses = new SparseArray<>();
360 shareBugreport(id, (BugreportInfo) intent.getParcelableExtra(EXTRA_INFO));
400 private BugreportInfo getInfo(int id) {
401 final BugreportInfo info = mProcesses.get(id);
409 * Creates the {@link BugreportInfo} for a process and issue a system notification to
431 final BugreportInfo info = new BugreportInfo(mContext, id, pid, name, max);
445 private void updateProgress(BugreportInfo info) {
529 private static PendingIntent newCancelIntent(Context context, BugreportInfo info) {
560 final BugreportInfo info = getInfo(id);
581 final BugreportInfo info = mProcesses.valueAt(i);
653 * Fetches a {@link BugreportInfo} for a given process and launches a dialog where the user can
660 final BugreportInfo info = getInfo(id);
721 final BugreportInfo info = getInfo(id);
740 final BugreportInfo info = mProcesses.valueAt(i);
762 final BugreportInfo info = getInfo(resultMsg.arg1);
787 private void deleteScreenshots(BugreportInfo info) {
812 final BugreportInfo info = mProcesses.valueAt(i);
852 BugreportInfo info = getInfo(id);
856 info = new BugreportInfo(mContext, id);
886 private void triggerLocalNotification(final Context context, final BugreportInfo info) {
913 private static Intent buildSendIntent(Context context, BugreportInfo info) {
970 private void shareBugreport(int id, BugreportInfo sharedInfo) {
972 BugreportInfo info = getInfo(id);
1011 private void sendBugreportNotification(BugreportInfo info, boolean takingScreenshot) {
1075 private void sendZippedBugreportNotification( final BugreportInfo info,
1091 private static void zipBugreport(BugreportInfo info) {
1119 private void addDetailsToZipFile(BugreportInfo info) {
1324 final BugreportInfo info = getInfo(id);
1426 private void initialize(final Context context, BugreportInfo info) {
1579 private static final class BugreportInfo implements Parcelable {
1671 BugreportInfo(Context context, int id, int pid, String name, int max) {
1683 BugreportInfo(Context context, int id) {
1753 protected BugreportInfo(Parcel in) {
1815 public static final Parcelable.Creator<BugreportInfo> CREATOR =
1816 new Parcelable.Creator<BugreportInfo>() {
1817 public BugreportInfo createFromParcel(Parcel source) {
1818 return new BugreportInfo(source);
1821 public BugreportInfo[] newArray(int size) {
1822 return new BugreportInfo[size];