/external/skia/experimental/tools/ |
web_to_mskp | 29 CRASH=~/tmp/headless_crash_dumps 30 mkdir -p "$CRASH" 33 "$EXE" --headless --disable-gpu --repl -crash-dumps-dir="$CRASH" \
|
web_to_skp | 29 CRASH=~/tmp/headless_crash_dumps 30 mkdir -p "$CRASH" "$DST" 33 "$EXE" --headless --disable-gpu --repl -crash-dumps-dir="$CRASH" \
|
/external/skqp/experimental/tools/ |
web_to_mskp | 29 CRASH=~/tmp/headless_crash_dumps 30 mkdir -p "$CRASH" 33 "$EXE" --headless --disable-gpu --repl -crash-dumps-dir="$CRASH" \
|
web_to_skp | 29 CRASH=~/tmp/headless_crash_dumps 30 mkdir -p "$CRASH" "$DST" 33 "$EXE" --headless --disable-gpu --repl -crash-dumps-dir="$CRASH" \
|
/external/syzkaller/dashboard/app/ |
jobs_test.go | 31 // Report crash without repro, check that test requests are not accepted. 32 crash := testCrash(build, 1) 33 crash.Maintainers = []string{"maintainer@kernel.org"} 34 c.client2.ReportCrash(crash) 54 c.expectEQ(strings.Contains((<-c.emailSink).Body, "This crash does not have a reproducer"), true) 56 // Report crash with repro. 57 crash.ReproOpts = []byte("repro opts") 58 crash.ReproSyz = []byte("repro syz") 59 crash.ReproC = []byte("repro C") 60 c.client2.ReportCrash(crash) [all...] |
access_test.go | 76 crash, _, err := findCrashForBug(c.ctx, bug) 99 ref: fmt.Sprint(crash.Log), 100 url: fmt.Sprintf("/text?tag=CrashLog&id=%v", crash.Log), 104 ref: fmt.Sprint(crash.Log), 106 strconv.FormatUint(uint64(crash.Log), 16)), 110 ref: fmt.Sprint(crash.Report), 111 url: fmt.Sprintf("/text?tag=CrashReport&id=%v", crash.Report), 115 ref: fmt.Sprint(crash.Report), 117 strconv.FormatUint(uint64(crash.Report), 16)), 121 ref: fmt.Sprint(crash.ReproC) [all...] |
repro_test.go | 16 // - upload crash -> need repro 19 func testNeedRepro1(t *testing.T, crashCtor func(c *Ctx) *dashapi.Crash) { 31 // Still need repro for this crash. 37 crash2 := new(dashapi.Crash) 61 // Upload C repro with first crash -> don't need repro. 62 func testNeedRepro2(t *testing.T, crashCtor func(c *Ctx) *dashapi.Crash) { 83 func testNeedRepro3(t *testing.T, crashCtor func(c *Ctx) *dashapi.Crash) { 122 func testNeedRepro4(t *testing.T, crashCtor func(c *Ctx) *dashapi.Crash) { 157 func normalCrash(c *Ctx) *dashapi.Crash { 163 func dupCrash(c *Ctx) *dashapi.Crash { [all...] |
jobs.go | 79 crash, crashKey, err := findCrashForBug(c, bug) 83 if reason := checkTestJob(c, bug, bugReporting, crash, repo, branch); reason != "" { 87 manager := crash.Manager 166 func checkTestJob(c context.Context, bug *Bug, bugReporting *BugReporting, crash *Crash, 169 case crash.ReproC == 0 && crash.ReproSyz == 0: 170 return "This crash does not have a reproducer. I cannot test it." 175 case crash.ReproC == 0 && crash.ReproSyz == 0 [all...] |
access.go | 69 func checkTextAccess(c context.Context, r *http.Request, tag string, id int64) (*Crash, error) { 81 // Log and Report can be attached to a Crash or Job. 82 crash, err := checkCrashTextAccess(c, r, "Log", id) 84 return crash, err 88 crash, err := checkCrashTextAccess(c, r, "Report", id) 90 return crash, err 100 func checkCrashTextAccess(c context.Context, r *http.Request, field string, id int64) (*Crash, error) { 101 var crashes []*Crash 102 keys, err := datastore.NewQuery("Crash"). 112 crash := crashes[0 [all...] |
reporting.go | 72 reporting, bugReporting, crash, crashKey, _, _, _, err := needReport(c, typ, state, bug) 76 rep, err := createBugReport(c, bug, crash, crashKey, bugReporting, reporting.Config) 85 reporting *Reporting, bugReporting *BugReporting, crash *Crash, 122 crash, crashKey, err = findCrashForBug(c, bug) 128 if reporting.Config.NeedMaintainers() && len(crash.Maintainers) == 0 { 193 func createBugReport(c context.Context, bug *Bug, crash *Crash, crashKey *datastore.Key, 199 crashLog, _, err := getText(c, textCrashLog, crash.Log) 206 report, _, err := getText(c, textCrashReport, crash.Report [all...] |
/cts/tests/tests/os/src/android/os/cts/ |
ParcelFileDescriptorProcessTest.java | 76 private static void crash(IParcelFileDescriptorPeer peer) { method in class:ParcelFileDescriptorProcessTest 78 peer.crash(); 172 crash(red); 189 crash(blue); 222 crash(blue); 266 crash(blue); 276 crash(blue);
|
/external/llvm/test/ExecutionEngine/RuntimeDyld/X86/ |
ELF-relaxed.s | 5 # Test that RTDyldELF does not crash with 'unimplemented relocation'
|
ELF_STT_FILE.s | 7 # crash if we are relocating against a symbol that happens to have the
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/ExecutionEngine/RuntimeDyld/X86/ |
ELF-relaxed.s | 6 # Test that RTDyldELF does not crash with 'unimplemented relocation'
|
/external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/ |
ext_exc.ml | 6 (* this used to crash, we must not use 'external' in .mli files, but 'val' if we
|
/external/syzkaller/prog/ |
minimization.go | 14 func Minimize(p0 *Prog, callIndex0 int, crash bool, pred0 func(*Prog, int) bool) (*Prog, int) { 31 p0, callIndex0 = removeCalls(p0, callIndex0, crash, pred) 39 crash: crash, 62 func removeCalls(p0 *Prog, callIndex0 int, crash bool, pred func(*Prog, int) bool) (*Prog, int) { 88 crash bool 138 if !ctx.crash && !ctx.triedPaths[elemPath] && 173 if ctx.crash { 192 if ctx.crash { 229 if ctx.crash { [all...] |
/external/syzkaller/tools/syz-bisect/ |
bisect.go | 22 flagCrash = flag.String("crash", "", "dir with crash info") 23 flagFix = flag.Bool("fix", false, "search for crash fix")
|
/external/llvm/test/Bindings/OCaml/ |
ext_exc.ml | 13 (* This used to crash, we must not use 'external' in .mli files, but 'val' if we
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Bindings/OCaml/ |
ext_exc.ml | 13 (* This used to crash, we must not use 'external' in .mli files, but 'val' if we
|
/external/tensorflow/tensorflow/security/advisory/ |
tfsa-2018-001.md | 15 file could lead to an unhandled process crash, but may permit read access to
|
tfsa-2018-002.md | 15 crash.
|
tfsa-2018-006.md | 14 A maliciously crafted configuration file could cause TensorFlow to crash or
|
/external/syzkaller/dashboard/dashapi/ |
dashapi.go | 115 // job execution result (Build, Crash or Error details), 157 Crash Crash 164 // Crash describes a single kernel crash (potentially with repro). 165 type Crash struct { 182 func (dash *Dashboard) ReportCrash(crash *Crash) (*ReportCrashResp, error) { 184 err := dash.Query("report_crash", crash, resp) 188 // CrashID is a short summary of a crash for repro queries [all...] |
/cts/tools/dasm/src/java_cup/ |
terminal.java | 34 // initializers, so we do a crash instead 37 (new internal_error("Duplicate terminal (" + nm + ") created")).crash();
|
/external/clang/test/Sema/ |
enum.c | 114 void crash(enum E* e) // expected-warning {{declaration of 'enum E' will not be visible outside of this function}} \ function
|