Home
last modified time | relevance | path

Searched refs:crash (Results 1 – 25 of 618) sorted by relevance

12345678910>>...25

/external/chromium_org/components/
Dcrash.gypi11 'crash/app/crash_reporter_client.cc',
12 'crash/app/crash_reporter_client.h',
13 'crash/app/crash_keys_win.cc',
14 'crash/app/crash_keys_win.h',
37 # GN version: //components/crash/app
41 'crash/app/breakpad_linux.cc',
42 'crash/app/breakpad_linux.h',
43 'crash/app/breakpad_linux_impl.h',
44 'crash/app/breakpad_mac.h',
45 'crash/app/breakpad_mac.mm',
[all …]
/external/chromium_org/third_party/sqlite/src/test/
Dcrash.test20 # $Id: crash.test,v 1.27 2008/01/08 15:18:52 drh Exp $
43 # Simple crash test:
45 # crash-1.1: Create a database with a table with two rows.
46 # crash-1.2: Run a 'DELETE FROM abc WHERE a = 1' that crashes during
48 # crash-1.3: Ensure the database is in the same state as after crash-1.1.
49 # crash-1.4: Run a 'DELETE FROM abc WHERE a = 1' that crashes during
51 # crash-1.5: Ensure the database is in the same state as after crash-1.1.
52 # crash-1.6: Run a 'DELETE FROM abc WHERE a = 1' that crashes during
54 # crash-1.7: Ensure the database is in the same state as after crash-1.1.
61 do_test crash-1.1 {
[all …]
Dcrash3.test41 # This block tests crash-recovery when the IOCAP_ATOMIC flags is set.
49 # Then execute the SQL statement, scheduling a crash for part-way through
51 # the journal file is not required - meaning no crash occurs).
53 # After the crash (or absence of a crash), open the database and
61 # with the crash scheduled for midway through the first journal sync (if
62 # any), and five times with the crash midway through the database sync.
/external/chromium_org/v8/test/mjsunit/regress/
Dregress-crbug-134055.js30 function crash(obj) { function
48 crash(a); // Premonomorphic.
49 crash(a);
50 crash(b);
51 crash(c);
52 crash(d); // Polymorphic, degree 4.
62 %OptimizeFunctionOnNextCall(crash);
63 crash(a);
Dregress-crbug-350434.js15 function crash(o, timeout) { function
26 crash(o, 100000);
27 crash(o, 100000);
28 crash(p, 100000);
29 %OptimizeFunctionOnNextCall(crash);
30 crash(o, 100000);
33 crash({}, 0);
Dpost-increment-close-context.js31 function crash() { function
34 assertFalse(crash());
36 %OptimizeFunctionOnNextCall(crash);
37 assertFalse(crash());
39 assertTrue(crash());
41 assertFalse(crash());
Dregress-crbug-196583.js42 function crash(obj) { function
47 crash(a);
48 crash(b);
49 crash(c);
51 %OptimizeFunctionOnNextCall(crash);
52 assertEquals(1, crash(a));
Dregress-crbug-285355.js36 function crash(array) { function
40 assertEquals(2, crash(new Array(1)));
41 assertEquals(2, crash(new Array(1)));
42 %OptimizeFunctionOnNextCall(crash)
43 assertEquals(2, crash(new Array(1)));
Dregress-crbug-258519.js35 function crash(x) { function
41 assertEquals("ok", crash(null));
42 assertEquals("ok", crash(null));
43 %OptimizeFunctionOnNextCall(crash);
45 assertEquals("ok", crash(1));
Dregress-crbug-349079.js12 function crash() { function
20 crash();
21 crash();
22 %OptimizeFunctionOnNextCall(crash);
23 crash();
Dregress-crbug-351320.js13 function crash() { function
19 crash();
20 %OptimizeFunctionOnNextCall(crash);
21 crash();
Dregress-crbug-349853.js11 function crash() { function
21 crash();
/external/chromium_org/chrome/browser/resources/
Dcrashes.js41 var crash = crashes[i];
42 if (crash['local_id'] == '')
43 crash['local_id'] = productName;
48 crash['id'],
49 crash['local_id']);
53 crash['time']);
75 'report_id:' + crash.id
/external/chromium_org/components/metrics/serialization/
Dserialization_utils_unittest.cc90 scoped_ptr<MetricSample> crash = MetricSample::CrashSample("mycrash"); in TEST_F() local
92 SerializationUtils::WriteMetricToFile(*crash.get(), filename); in TEST_F()
109 scoped_ptr<MetricSample> crash = MetricSample::CrashSample(name); in TEST_F() local
110 EXPECT_FALSE(SerializationUtils::WriteMetricToFile(*crash.get(), filename)); in TEST_F()
127 scoped_ptr<MetricSample> crash = MetricSample::CrashSample("test"); in TEST_F() local
128 SerializationUtils::WriteMetricToFile(*crash.get(), filename); in TEST_F()
134 EXPECT_TRUE(crash->IsEqual(*samples[0])); in TEST_F()
140 scoped_ptr<MetricSample> crash = MetricSample::CrashSample("mycrash"); in TEST_F() local
148 SerializationUtils::WriteMetricToFile(*crash.get(), filename); in TEST_F()
159 EXPECT_TRUE(crash->IsEqual(*vect[1])); in TEST_F()
/external/clang/test/Driver/
Dcrash-report-modules.m8 // RUN: FileCheck --check-prefix=CHECKSRC %s -input-file %t/crash-report-*.m
9 // RUN: FileCheck --check-prefix=CHECKSH %s -input-file %t/crash-report-*.sh
10 // REQUIRES: crash-recovery
15 // FIXME: This XFAIL is cargo-culted from crash-report.c. Do we need it?
31 // CHECKSH: crash-report-modules-{{[^ ]*}}.m
32 // CHECKSH: -ivfsoverlay crash-report-modules-{{[^ ]*}}.cache/vfs/vfs.yaml
/external/chromium_org/ppapi/native_client/tests/breakpad_crash_test/
Dnacl.scons13 # We are also checking that crash dumping does not work
28 # produce crash dumps via Breakpad.
32 browser_flags=['--crash-test'], # Tell the browser process to crash.
42 # Additionally, the test affects crash stats on Mac because it uploads
43 # crash dumps on the bots for the Chrome official build.
51 # This crash in trusted code should produce a crash dump.
71 # This tests a crash that occurs inside a syscall handler.
72 # Ultimately this should be recognised as a crash caused by untrusted code.
91 # Crashes in untrusted code should not produce crash dumps.
/external/clang/test/CodeGenObjC/
Dclass-getter-dotsyntax.m4 + (Test *)crash; class
15 Test *crash = Test.crash;
18 + (Test *)crash{ return 0; } class
/external/clang/test/Index/
Dcrash-recovery-modules.m4 // Parse the file, such that building the module will cause Clang to crash.
7 // CHECK-CRASH: crash-recovery-modules.m:16:9:{16:2-16:14}: fatal error: could not build module 'Cr…
13 // REQUIRES: crash-recovery
19 #pragma clang __debug crash
28 // Check that libclang crash-recovery works; both with a module building crash...
34 // CHECK-LIBCLANG-CRASH: libclang: crash detected during parsing
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
Dtest.py48 self.crash = False
87 def add_reftest(self, name, reference_name, same_image, crash=False): argument
88 self.add(name, actual_checksum='xxx', actual_image='XXX', is_reftest=True, crash=crash)
114 tests.add('failures/expected/crash.html', crash=True)
163 tests.add('failures/unexpected/crash.html', crash=True)
164 tests.add('failures/unexpected/crash-with-stderr.html', crash=True,
220 …rash-reftest.html', 'failures/unexpected/crash-reftest-expected.html', same_image=True, crash=True)
588 crash = test.crash
602 crash = True
608 crash = True
[all …]
/external/chromium_org/chrome/browser/ui/webui/
Dcrashes_ui.cc169 base::DictionaryValue* crash = new base::DictionaryValue(); in UpdateUI() local
170 crash->SetString("id", i->id); in UpdateUI()
171 crash->SetString("time", base::TimeFormatFriendlyDateAndTime(i->time)); in UpdateUI()
172 crash->SetString("local_id", i->local_id); in UpdateUI()
173 crash_list.Append(crash); in UpdateUI()
/external/valgrind/main/none/tests/
Dempty-exe.vgtest1 # Bug 162020: running an empty executable used to crash Valgrind. Note that
2 # the (old) crash message gets filtered out, so it's the presence of the
4 # indicate it ran to completion. If the crash occurs, the .stderr.out file
/external/clang/test/PCH/
Dchain-friend-instantiation.cpp46 struct crash { struct
49 crash(const TClass<std::s> p) in crash() function
59 crash c(p); in f()
/external/chromium_org/components/crash/app/
Dbreakpad_mac.mm5 #import "components/crash/app/breakpad_mac.h"
27 #include "components/crash/app/crash_reporter_client.h"
39 // IMPORTANT: On OS X, the key/value pairs are sent to the crash server
76 // fatal crash at the same time, this should work.
96 // Rather than including the code to force the crash here, allow the
140 // Most interesting operations are not safe in a signal handler, just crash.
156 // Check whether crash reporting should be enabled. If enterprise
157 // configuration management controls crash reporting, it takes precedence.
158 // Otherwise, check whether the user has consented to stats and crash
173 // Controlled by the user. The crash reporter may be enabled by
[all …]
/external/clang/test/CodeGenCXX/
Ddebug-info-globalinit.cpp3 void crash() { in crash() function
9 crash(); in test()
/external/clang/test/Parser/
Dobjc-diag-width.mm3 // Just shouldn't crash. -verify suppresses the crash, so don't use it.

12345678910>>...25