HomeSort by relevance Sort by last modified time
    Searched full:bugreport (Results 151 - 175 of 449) sorted by null

1 2 3 4 5 67 8 91011>>

  /tools/tradefederation/core/tests/src/com/android/tradefed/result/
FileMetadataCollectorTest.java 33 private static final LogDataType DATA_TYPE_BR = LogDataType.BUGREPORT;
35 private static final LogType LOG_TYPE_BR = LogType.BUGREPORT;
  /development/cmds/monkey/src/com/android/commands/monkey/
Monkey.java 129 * bugreport after ANR
135 * bugreport after a system watchdog report
147 * bugreport after java application crash
151 /**Request the bugreport based on the mBugreportFrequency. */
155 * Request the bugreport based on the mBugreportFrequency.
159 /** Bugreport frequency. */
456 // aviod the bugreport hang forever.
495 // Write the bugreport to the sdcard.
499 commandLineReport(bugreportName + ".txt", "bugreport");
840 } else if (opt.equals("--bugreport")) {
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/testtype/
UiAutomatorTest.java 59 BUGREPORT,
95 "capture bugreport and screenshot as specified.")
296 // get bugreport
297 if (overrideAction == TestFailureAction.BUGREPORT ||
301 listener.testLog(prefix + "_bugreport", LogDataType.BUGREPORT, data);
  /tools/tradefederation/core/src/com/android/tradefed/invoker/
TestInvocation.java 330 // under certain cases it might still be possible to grab a bugreport
368 CLog.i("Bugreport to be taken for failure instead of invocation ended.");
380 // If we have identified a faulty device only take the bugreport on it.
693 // logBugreport will report a regular bugreport if bugreportz is not supported.
697 InputStreamSource bugreport = device.getBugreport(); local
699 if (bugreport != null) {
701 device.getSerialNumber()), LogDataType.BUGREPORT, bugreport);
703 CLog.w("Error when collecting bugreport for device '%s'",
707 StreamUtil.cancel(bugreport);
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/device/
INativeDevice.java 29 import com.android.tradefed.util.Bugreport;
    [all...]
NativeDevice.java 46 import com.android.tradefed.util.Bugreport;
91 * Allow pauses of up to 2 minutes while receiving bugreport.
101 private static final String BUGREPORT_CMD = "bugreport";
1947 File bugreport = ZipUtil2.extractFileFromZip(zip, bugreportName); local
1995 InputStreamSource bugreport = getBugreportz(); local
    [all...]
  /frameworks/native/cmds/dumpstate/
dumpstate.cpp 110 // Relative directory (inside the zip) for all files copied as-is into the bugreport.
125 /* gets the tombstone data, according to the bugreport type: if zipped, gets all tombstones;
219 MYLOGE("Not dumping anrd trace because it's not a zipped bugreport\n");
307 MYLOGD("Not dumping systrace because it's not a zipped bugreport\n");
365 // Write compressed and encoded raft logs to stdout if it's not a zipped bugreport.
423 MYLOGD("Not dumping modem logs. dumpstate is not generating a zipping bugreport\n");
636 /* bugreport timeout factor adjustment */
678 printf("Bugreport format version: %s\n", version_.c_str());
694 MYLOGD("Not adding zip entry %s from fd because it's not a zipped bugreport\n",
757 /* adds a file to the existing zipped bugreport */
    [all...]
  /tools/tradefederation/core/prod-tests/src/com/android/media/tests/
CameraStressTest.java 205 // Grab a bugreport if warranted
207 Log.e(LOG_TAG, String.format("Grabbing bugreport after test '%s' finished with " +
209 InputStreamSource bugreport = mTestDevice.getBugreport(); local
210 listener.testLog(String.format("bugreport-%s.txt", test.mTestName),
211 LogDataType.BUGREPORT, bugreport);
212 bugreport.cancel();
  /device/google/dragon/
init.dragon.rc 215 # bugreport is triggered by holding down volume down, volume up and power
216 service bugreport /system/bin/dumpstate -d -p -B -z \
217 -o /data/user_de/0/com.android.shell/files/bugreports/bugreport
  /development/tools/bugreport/
bugreport 37 jarfile=BugReport.jar
  /development/tools/bugreport/src/com/android/bugreport/stacks/
ThreadSnapshot.java 17 package com.android.bugreport.stacks;
ThreadSnapshotParser.java 17 package com.android.bugreport.stacks;
19 import com.android.bugreport.util.Line;
20 import com.android.bugreport.util.Lines;
21 import com.android.bugreport.util.Utils;
  /development/tools/bugreport/src/com/android/bugreport/util/
Lines.java 17 package com.android.bugreport.util;
Utils.java 17 package com.android.bugreport.util;
  /development/tools/
monkey 294 bugreportFilename = filebase + "-bugreport.txt"
335 # Monkeys failed, take a bugreport
337 adb.Shell(["bugreport"], stdout=bugreportFile, stderr=None)
352 cmd = ["bugreport", "--monkey", monkeyFilename, "--html", htmlFilename,
  /external/clang/lib/StaticAnalyzer/Checkers/
ArrayBoundChecker.cpp 79 auto report = llvm::make_unique<BugReport>(*BT, BT->getDescription(), N);
CastToStructChecker.cpp 66 auto R = llvm::make_unique<BugReport>(*BT, BT->getDescription(), N);
DivZeroChecker.cpp 42 auto R = llvm::make_unique<BugReport>(*BT, Msg, N);
NSAutoreleasePoolChecker.cpp 71 auto Report = llvm::make_unique<BugReport>(
PointerSubChecker.cpp 69 auto R = llvm::make_unique<BugReport>(*BT, BT->getDescription(), N);
ReturnPointerRangeChecker.cpp 83 auto report = llvm::make_unique<BugReport>(*BT, BT->getDescription(), N);
StreamChecker.cpp 280 C.emitReport(llvm::make_unique<BugReport>(
356 C.emitReport(llvm::make_unique<BugReport>(
387 C.emitReport(llvm::make_unique<BugReport>(
415 C.emitReport(llvm::make_unique<BugReport>(
UndefCapturedBlockVarChecker.cpp 89 auto R = llvm::make_unique<BugReport>(*BT, os.str(), N);
UndefResultChecker.cpp 87 auto report = llvm::make_unique<BugReport>(*BT, OS.str(), N);
UndefinedArraySubscriptChecker.cpp 56 auto R = llvm::make_unique<BugReport>(*BT, BT->getName(), N);

Completed in 529 milliseconds

1 2 3 4 5 67 8 91011>>