Home
last modified time | relevance | path

Searched refs:Crash (Results 1 – 25 of 93) sorted by relevance

1234

/external/syzkaller/dashboard/app/
Drepro_test.go19 func testNeedRepro1(t *testing.T, crashCtor func(c *Ctx) *dashapi.Crash) { argument
37 crash2 := new(dashapi.Crash)
62 func testNeedRepro2(t *testing.T, crashCtor func(c *Ctx) *dashapi.Crash) { argument
83 func testNeedRepro3(t *testing.T, crashCtor func(c *Ctx) *dashapi.Crash) { argument
122 func testNeedRepro4(t *testing.T, crashCtor func(c *Ctx) *dashapi.Crash) { argument
157 func normalCrash(c *Ctx) *dashapi.Crash {
163 func dupCrash(c *Ctx) *dashapi.Crash {
174 func closedCrash(c *Ctx) *dashapi.Crash {
178 func closedWithReproCrash(c *Ctx) *dashapi.Crash {
182 func closedCrashImpl(c *Ctx, withRepro bool) *dashapi.Crash {
Dapp_test.go198 func testCrash(build *dashapi.Build, id int) *dashapi.Crash {
199 return &dashapi.Crash{
207 func testCrashWithRepro(build *dashapi.Build, id int) *dashapi.Crash {
215 func testCrashID(crash *dashapi.Crash) *dashapi.CrashID { argument
Daccess.go69 func checkTextAccess(c context.Context, r *http.Request, tag string, id int64) (*Crash, error) {
100 func checkCrashTextAccess(c context.Context, r *http.Request, field string, id int64) (*Crash, erro…
101 var crashes []*Crash
Dapi.go490 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) { argument
603 func saveCrash(c context.Context, ns string, req *dashapi.Crash, bugKey *datastore.Key, build *Buil… argument
614 crash := &Crash{
646 var crashes []*Crash
660 keyMap := make(map[*Crash]*datastore.Key)
669 latestOnManager := make(map[string]*Crash)
806 func createBugForCrash(c context.Context, ns string, req *dashapi.Crash) (*Bug, *datastore.Key, err… argument
/external/clang/test/SemaCXX/
Dfunction-redecl.cpp83 class Crash { class
88 void Crash::cart(int count) const {} // expected-error {{out-of-line definition of 'cart' does not … in cart()
90 void Crash::chart(int count) const {} // expected-error {{out-of-line definition of 'chart' does no… in chart()
/external/google-breakpad/src/client/mac/sender/sv.lproj/
DInfoPlist.strings1 "CFBundleName" = "Crash Reporter";
2 "CFBundleDisplayName" = "Crash Reporter";
/external/google-breakpad/src/client/mac/sender/da.lproj/
DInfoPlist.strings1 "CFBundleName" = "Crash Reporter";
2 "CFBundleDisplayName" = "Crash Reporter";
/external/google-breakpad/src/client/mac/sender/ja.lproj/
DInfoPlist.strings1 "CFBundleName" = "Crash Reporter";
2 "CFBundleDisplayName" = "Crash Reporter";
/external/google-breakpad/src/client/mac/sender/English.lproj/
DInfoPlist.strings1 "CFBundleName" = "Crash Reporter";
2 "CFBundleDisplayName" = "Crash Reporter";
/external/google-breakpad/src/client/mac/sender/it.lproj/
DInfoPlist.strings1 "CFBundleName" = "Crash Reporter";
2 "CFBundleDisplayName" = "Crash Reporter";
/external/google-breakpad/src/client/mac/sender/nl.lproj/
DInfoPlist.strings1 "CFBundleName" = "Crash Reporter";
2 "CFBundleDisplayName" = "Crash Reporter";
/external/google-breakpad/src/client/mac/sender/fr.lproj/
DInfoPlist.strings1 "CFBundleName" = "Crash Reporter";
2 "CFBundleDisplayName" = "Crash Reporter";
/external/google-breakpad/src/client/mac/sender/no.lproj/
DInfoPlist.strings1 "CFBundleName" = "Crash Reporter";
2 "CFBundleDisplayName" = "Crash Reporter";
/external/google-breakpad/android/sample_app/jni/
Dtest_breakpad.cpp44 void Crash() { in Crash() function
55 Crash(); in main()
/external/syzkaller/syz-manager/
Dmanager.go82 hubReproQueue chan *Crash
113 type Crash struct { struct
182 hubReproQueue: make(chan *Crash, 10),
291 crash *Crash
319 pendingRepro := make(map[*Crash]bool)
322 var reproQueue []*Crash
527 func (mgr *Manager) runInstance(index int) (*Crash, error) {
573 crash := &Crash{
581 func (mgr *Manager) emailCrash(crash *Crash) {
596 func (mgr *Manager) saveCrash(crash *Crash) bool {
[all …]
/external/syzkaller/dashboard/dashapi/
Ddashapi.go157 Crash Crash member
165 type Crash struct { struct
182 func (dash *Dashboard) ReportCrash(crash *Crash) (*ReportCrashResp, error) {
/external/google-breakpad/src/processor/testdata/
Dmicrodump.stackwalk-arm.out6 Crash reason:
7 Crash address: 0x0
Dminidump2.stackwalk.out7 Crash reason: EXCEPTION_ACCESS_VIOLATION_WRITE
8 Crash address: 0x45
Dmicrodump.stackwalk-arm64.out6 Crash reason:
7 Crash address: 0x0
/external/clang/test/SemaObjC/
Dprotocol-archane.m38 @interface Crash @end interface
39 @implementation Crash implementation
/external/clang/test/Index/
Dcrash-recovery-modules.m7 …HECK-CRASH: crash-recovery-modules.m:16:9:{16:2-16:14}: fatal error: could not build module 'Crash'
16 @import Crash;
/external/protobuf/src/google/protobuf/stubs/
Dstatusor.h168 static void Crash(const util::Status& status);
251 internal::StatusOrHelper::Crash(status_);
Dstatusor.cc38 void StatusOrHelper::Crash(const Status& status) { in Crash() function in google::protobuf::util::internal::StatusOrHelper
/external/tensorflow/tensorflow/stream_executor/lib/
Dstatusor_internals.h30 TF_ATTRIBUTE_NORETURN static void Crash(const Status& status);
189 if (!ok()) Helper::Crash(status_); in EnsureOk()
/external/clang/test/Index/Inputs/Headers/
Dmodule.map8 module Crash {

1234