/external/swiftshader/third_party/llvm-7.0/llvm/test/ExecutionEngine/RuntimeDyld/X86/ |
ELF_STT_FILE.s | 8 # crash if we are relocating against a symbol that happens to have the
|
/external/syzkaller/dashboard/app/ |
entities.go | 94 CrashID int64 // crash that we've last reported in this reporting 100 type Crash struct { 104 Reported time.Time // set if this crash was ever reported 111 // Custom crash priority for reporting (greater values are higher priority). 112 // For example, a crash in mainline kernel has higher priority than a crash in a side branch. 133 // - reproduce crash 134 // - test that crash still happens on HEAD 135 // - crash bisect 159 CrashTitle string // if empty, we did not hit crash during testin [all...] |
fix_test.go | 39 FixCommits: []string{"foo: fix the crash"}, 50 c.expectEQ(builderPollResp.PendingCommits[0], "foo: fix the crash") 70 build2.Commits = []string{"foo: fix the crash"} 77 // Ensure that a new crash creates a new bug (the old one must be marked as fixed). 107 FixCommits: []string{"bar: prepare for fixing", "\"foo: fix the crash\""}, 115 c.expectEQ(builderPollResp.PendingCommits[1], "foo: fix the crash") 127 c.expectEQ(builderPollResp.PendingCommits[1], "foo: fix the crash") 135 build3.Commits = []string{"foo: fix the crash", "bar: prepare for fixing"} 142 // Ensure that a new crash creates a new bug (the old one must be marked as fixed). 228 FixCommits: []string{"foo: fix the crash"}, [all...] |
api.go | 490 req.Crash.BuildID = req.Build.ID 491 bug, err := reportCrash(c, ns, &req.Crash) 506 req := new(dashapi.Crash) 520 func reportCrash(c context.Context, ns string, req *dashapi.Crash) (*Bug, error) { 563 log.Infof(c, "not saving crash for %q", bug.Title) 603 func saveCrash(c context.Context, ns string, req *dashapi.Crash, bugKey *datastore.Key, build *Build) error { 604 // Reporting priority of this crash. 614 crash := &Crash{ 623 if crash.Log, err = putText(c, ns, textCrashLog, req.Log, false); err != nil [all...] |
main.go | 261 // handleText serves plain text blobs (crash logs, reports, reproducers, etc). 278 crash, err := checkTextAccess(c, r, tag, id) 296 if crash != nil { 297 fmt.Fprintf(w, "#%s\n", crash.ReproOpts) 634 for _, crash := range crashes { 635 build := builds[crash.BuildID] 637 build, err = loadBuild(c, bug.Namespace, crash.BuildID) 641 builds[crash.BuildID] = build 644 Manager: crash.Manager, 645 Time: crash.Time [all...] |
reporting_test.go | 22 crash1 := &dashapi.Crash{ 80 t.Fatal("get the same CrashID for new crash") 107 // Report another crash with syz repro for this bug, 108 // ensure that we still report the original crash in the next reporting. 169 // Now a similar crash happens again. 170 crash2 := &dashapi.Crash{ 266 // Dup crash happens again, new bug must not be created. 294 // A new crash report must create a new bug.
|
/external/syzkaller/syz-manager/ |
html.go | 35 http.HandleFunc("/crash", mgr.httpCrash) 167 crash := readCrash(mgr.cfg.Workdir, crashID, nil, true) 168 if crash == nil { 169 http.Error(w, fmt.Sprintf("failed to read crash info"), http.StatusInternalServerError) 172 if err := crashTemplate.Execute(w, crash); err != nil { 403 crash := readCrash(workdir, dir, repros, false) 404 if crash != nil { 405 crashTypes = append(crashTypes, crash) 463 for _, crash := range crashes { 464 index := strconv.Itoa(crash.Index [all...] |
stats.go | 31 "crash types": stats.crashTypes.get(),
|
/cts/hostsidetests/incident/apps/errorsapp/jni/ |
Android.mk | 24 LOCAL_SRC_FILES := crash-jni.c
|
/external/libunwind/doc/ |
unw_destroy_addr_space.tex | 25 undefined behavior (e.g., the application may crash).
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-dwarfdump/X86/ |
verify_debug_info2.s | 5 ## Check we do not crash when trying to parse truncated .debug_info.
|
/external/syzkaller/pkg/report/ |
linux_test.go | 43 t.Fatalf("no crash") 50 t.Fatalf("no crash") 57 t.Fatalf("no crash") 64 t.Fatalf("found crash, should be ignored")
|
report_test.go | 130 t.Fatalf("ContainsCrash did not find crash") 133 t.Fatalf("ContainsCrash found unexpected crash") 136 t.Fatalf("found crash, but title is empty") 169 t.Fatalf("found crash message but report is empty")
|
/external/autotest/client/site_tests/logging_CrashServices/ |
logging_CrashServices.py | 9 from autotest_lib.client.cros.crash.crash_test import CrashTest 12 """Verifies crash collection for system services.""" 21 # Removing tcsd crash with reference to crbug.com/380359 42 """Find if the crash dumps with appropriate extensions are created. 93 # wait for appropriate dump files in a crash directory.
|
/external/autotest/client/site_tests/logging_UdevCrash/ |
logging_UdevCrash.py | 8 from autotest_lib.client.cros.crash import crash_test 12 """Verify udev triggered crash works as expected.""" 17 """Check proper Atmel trackpad crash reports are created.""" 23 raise error.TestFail('Crash report %s has wrong name' % 34 raise error.TestFail('Crash report %s has wrong extension' % 48 raise error.TestFail('Crash report contains invalid ' 55 """Test that atmel trackpad failure can trigger udev crash report.""" 70 # failure. The uevent match rule in 99-crash-reporter.rules is 87 exception=error.TestFail('No valid Atmel crash reports'))
|
/external/autotest/server/site_tests/logging_GenerateCrashFiles/ |
logging_GenerateCrashFiles.py | 10 from autotest_lib.client.cros.crash.crash_test import CrashTest 15 """Tests if crash files are generated when crash is invoked.""" 23 """Find if the crash dumps with appropriate extensions are created. 24 @param expected_extensions: matching crash file extensions. 25 @param existing files: state of crash dir before induced crash. 26 @param prefix: matching crash file prefix. 27 @raises TestFail error if crash files are not generated. 35 logging.info("Crash files diff: %s" % file_diff [all...] |
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/ |
p3.cpp | 91 int& crash = fail; variable
|
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/ |
ChannelSafeHandle.cs | 38 // Doing so would make object finalizer crash if we end up abandoning the handle. 46 // Doing so would make object finalizer crash if we end up abandoning the handle.
|
/external/clang/test/PCH/ |
cxx-templates.h | 323 void crash() { function in namespace:rdar15468709a 339 void crash() { function in namespace:rdar15468709b 355 void crash() { function in namespace:rdar15468709c
|
/external/syzkaller/prog/ |
minimization_test.go | 126 for _, crash := range []bool{false, true} { 128 Minimize(p, len(p.Calls)-1, crash, func(p1 *Prog, callIndex int) bool { 131 Minimize(p, len(p.Calls)-1, crash, func(p1 *Prog, callIndex int) bool {
|
/cts/tools/dasm/src/java_cup/ |
lr_item_core.java | 258 /* can't throw here since super class doesn't, so we crash instead */ 262 e.crash();
|
non_terminal.java | 34 // initializers, so we crash instead 37 (new internal_error("Duplicate non-terminal ("+nm+") created")).crash();
|
symbol_set.java | 170 /* can't throw the error (because super class doesn't), so we crash */ 171 e.crash();
|
/external/honggfuzz/tools/ |
createStackBlacklist.sh | 30 -i|--input : input crash(es) directory / file
|
/external/tensorflow/tensorflow/security/advisory/ |
tfsa-2018-003.md | 29 cause TOCO to crash or cause a buffer overflow, potentially allowing malicious
|