HomeSort by relevance Sort by last modified time
    Searched refs:crash (Results 76 - 100 of 135) sorted by null

1 2 34 5 6

  /external/syzkaller/pkg/repro/
repro.go 29 // Information about the final (non-symbolized) crash that we reproduced.
71 return nil, nil, fmt.Errorf("crash log does not contain any programs")
178 // Cut programs that were executed after crash.
460 // Try triggering crash with a C reproducer.
592 ctx.reproLog(2, "program did not crash")
596 ctx.reproLog(2, "suppressed program crash: %v", rep.Title)
610 prefix := fmt.Sprintf("reproducing crash '%v': ", ctx.crashTitle)
625 ctx.reproLog(3, "bisect: didn't crash")
647 ctx.reproLog(3, "bisect: triggering crash without chunk #1")
663 ctx.reproLog(3, "bisect: triggering crash without chunk #2"
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
ParcelFileDescriptorPeer.java 177 public void crash() throws RemoteException { method in class:ParcelFileDescriptorPeer
  /cts/tools/dasm/src/java_cup/
lalr_item_set.java 308 /* can't throw error from here (because superclass doesn't) so crash */
309 e.crash();
production.java 755 /* crash on internal error since we can't throw it from here (because
757 e.crash();
  /external/grpc-grpc/src/ruby/spec/generic/
rpc_server_spec.rb 673 it 'should not crash when call used after an unary call is finished' do
685 it 'should not crash when call used after client streaming finished' do
697 it 'should not crash when call used after server streaming finished' do
711 it 'should not crash when call used after a bidi call is finished' do
  /external/grpc-grpc/src/csharp/Grpc.Core/Internal/
ServerSafeHandle.cs 35 // Doing so would make object finalizer crash if we end up abandoning the handle.
  /external/syzkaller/dashboard/app/
util_test.go 192 func (c *Ctx) loadBug(extID string) (*Bug, *Crash, *Build) {
197 crash, _, err := findCrashForBug(c.ctx, bug)
199 c.t.Fatalf("failed to load crash: %v", err)
201 build, err := loadBuild(c.ctx, bug.Namespace, crash.BuildID)
205 return bug, crash, build
  /external/autotest/site_utils/
generate_test_report 50 """Represents a crash that we want to ignore for now."""
155 Saves crash details if crashes are discovered. If a whitelist is
161 @return a list of crash entries to be reported.
166 'Received crash notification for ([-\w]+).+ (sig \d+)')
176 print 'Ignoring crash in %s for waiver that expires %s' % (
    [all...]
  /external/syzkaller/pkg/mgrconfig/
mgrconfig.go 34 // Arbitrary optional tag that is saved along with crash reports (e.g. branch/commit).
47 // syz-manager will send crash emails to this list of emails using mailx (optional).
78 // must match the first line of crash message.
  /external/syzkaller/pkg/csource/
build.go 35 // and we don't want 2 different bugs for when a crash is triggered during fuzzing and during repro.
  /external/syzkaller/pkg/instance/
instance.go 148 // TestError is returned if there is a problem with kernel/image (crash, reboot loop, etc).
205 // This linux-ism avoids detecting any crash during boot as "unexpected kernel reboot".
241 // TestError is returned if there is a problem with the kernel (e.g. crash).
316 // Combine repro options and default options in a way that increases chances to reproduce the crash.
  /external/syzkaller/tools/syz-crush/
crush.go 4 // syz-crush replays crash log on multiple VMs. Usage:
  /external/skia/modules/pathkit/tests/
pathops.spec.js 160 // Don't worry about it, at least it didn't crash.
214 // Don't worry about it, at least it didn't crash.
  /external/skqp/modules/pathkit/tests/
pathops.spec.js 160 // Don't worry about it, at least it didn't crash.
214 // Don't worry about it, at least it didn't crash.
  /external/syzkaller/syz-ci/
jobs.go 91 log.Logf(0, "done job %v: commit %v, crash %q, error: %s",
236 // If any of the instances crash during testing, we report this with the highest priority.
  /development/samples/ApiDemos/src/com/example/android/apis/view/
GameView.java 326 private void crash() {
708 crash();
  /external/autotest/server/cros/
autoupdater.py 755 # Kernel crash reports should be wiped between test runs, but
759 # Kernel crash reports will NOT be present if the crash happened
764 kernel_crashes = glob.glob('/var/spool/crash/kernel.*.kcrash')
767 logging.debug('Found %d kernel crash reports:',
769 # The crash names contain timestamps that may be useful:
771 for crash in kernel_crashes:
772 logging.debug(' %s', os.path.basename(crash))
811 # reboot if Chrome is stuck in a crash loop.
    [all...]
  /external/libunwind/doc/
unw_resume.tex 33 crash).
  /external/syzkaller/syz-fuzzer/
workqueue.go 16 // in order to not permanently lose interesting programs in case of VM crash.
  /development/apps/Development/src/com/android/development/
BadBehaviorActivity.java 166 pm.crash("Crashed by BadBehaviorActivity");
168 Log.e(TAG, "Can't call IPowerManager.crash()", e);
192 Log.i(TAG, "Native crash pressed -- about to kill -11 self");
  /external/autotest/client/site_tests/logging_CrashSender/
logging_CrashSender.py 8 from autotest_lib.client.cros.crash import crash_test
58 # on a dev build because crash-test-in-progress will exist.
63 # when booting in dev mode because crash-test-in-progress will exist.
70 """Test sending a single minidump crash report."""
146 not 'Crash reporting is disabled' in result['output'] or
157 raise error.TestFail('Crash uploader did not send on #%d' % i)
173 raise error.TestFail('Crash rate limiting did not take effect')
184 raise error.TestFail('Crash not sent even after 25hrs pass')
210 # because crash-test-in-progress will exist.
289 # crash-test-in-progress will exist
    [all...]
  /external/autotest/client/site_tests/logging_UserCrash/
logging_UserCrash.py 9 from autotest_lib.client.cros.crash import user_crash_test
19 """Verifies crash reporting for user processes."""
24 """Test that the core_pattern is set up by crash reporter."""
25 # Turn off crash filtering so we see the original setting.
36 if not self._log_reader.can_find('Enabling user crash handling'):
38 'user space crash handling was not started during last boot')
63 """Test a user space crash when running as chronos is handled."""
73 """Test a user space crash when running as root is handled."""
87 to_find = 'Received crash notification for ' + crasher_basename
89 to_find = 'Ignoring crash from ' + crasher_basenam
    [all...]
  /external/autotest/server/site_tests/platform_KernelErrorPaths/
platform_KernelErrorPaths.py 9 from autotest_lib.client.cros.crash.crash_test import CrashTest as CrashTestDefs
13 """Performs various kernel crash tests and makes sure that the expected
14 results are found in the crash report."""
37 @param trigger: the text string to write for triggering a crash
61 """ Enable consent so that crashes get stored in /var/spool/crash. """
110 # give the crash_reporter some time to log the crash
113 # check if dir /var/spool/crash exists on client or not
228 # Figure out which kernel crash interface is available.
229 interface = "/sys/kernel/debug/provoke-crash/DIRECT"
267 # Delete crash results, if an
    [all...]
  /external/clang/tools/scan-build-py/libscanbuild/
report.py 250 crashes = (pretty(crash) for crash in read_crashes(output_dir))
372 """ Parse out the crash information from the report file. """
444 def predicate(crash):
447 encode_value(crash, 'source', lambda x: escape(chop(prefix, x)))
448 encode_value(crash, 'problem', escape)
449 encode_value(crash, 'file', lambda x: escape(chop(output_dir, x)))
450 encode_value(crash, 'info', lambda x: escape(chop(output_dir, x)))
451 encode_value(crash, 'stderr', lambda x: escape(chop(output_dir, x)))
452 return crash
    [all...]
  /external/syzkaller/pkg/bisect/
bisect.go 89 env.log("the crash is still unfixed")
124 return nil, fmt.Errorf("the crash wasn't reproduced on the original commit")

Completed in 674 milliseconds

1 2 34 5 6