Home
last modified time | relevance | path

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

12345678

/aosp12/system/core/debuggerd/tombstoned/
H A Dtombstoned.cpp287 intercept_manager->GetIntercept(crash->crash_pid, crash->crash_type, &output_fd); in perform_request()
293 if (auto o = CrashQueue::for_crash(crash.get())->get_output(crash->crash_type); o) { in perform_request()
305 if (crash->output.proto) { in perform_request()
327 event_assign(crash->crash_event, base, crash->crash_socket_fd, EV_TIMEOUT | EV_READ, in perform_request()
333 crash.release(); in perform_request()
339 Crash* crash = new Crash(); in crash_accept_cb() local
379 if (crash->crash_type < 0 || crash->crash_type > kDebuggerdTombstoneProto) { in crash_request_cb()
398 crash->crash_pid = cr.pid; in crash_request_cb()
404 if (CrashQueue::for_crash(crash)->maybe_enqueue_crash(std::move(crash))) { in crash_request_cb()
469 if (crash->output.proto && crash->output.proto->fd != -1) { in crash_completed()
[all …]
/aosp12/hardware/interfaces/wifi/1.3/
H A Dtypes.hal46 * Total time for which the radio is awake due to NAN scan since boot or crash.
51 * Total time for which the radio is awake due to background scan since boot or crash.
56 * Total time for which the radio is awake due to roam scan since boot or crash.
61 * Total time for which the radio is awake due to PNO scan since boot or crash.
67 * or crash.
/aosp12/packages/modules/NeuralNetworks/runtime/test/android_fuzzing/
H A DREADME.md3 This document seeks to be a crash-course and cheat-sheet for running the NNAPI
151 `slow-unit-<unique_identifier>`, `crash-<unique_identifier>`,
160 ## Reproducing crash case
162 When a crash occurs, the crash test case can be re-run with the following
174 * `crash-07cb8793bbc65ab010382c0f8d40087897826129`
176 # Finding minimal crash case
178 When a crash occurs, sometimes the offending test case is large and
188 Note that the `<test_case_name>` must be some sort of crash for the
191 minimal test crash, but will take longer.
201 file (e.g., `crash-*` files described above).
[all …]
/aosp12/system/nfc/src/fuzzers/
H A DREADME.md76 This will run the fuzzer and stop when a crash is found. The crash log will
81 processfor every time a crash is found:
83 1. Collecting the binary input causing the crash
84 2. Re-running the fuzzer with this input to verify the crash reproduces
85 3. Parsing the crash log to find out the crashing source location
98 specific crash.
/aosp12/art/test/600-verifier-fails/
H A Dinfo.txt7 avoid compiler crash later on
16 verification failure (non-reference type) to avoid a compiler crash
22 avoid interpreter crash on zero size object later
/aosp12/system/sepolicy/prebuilts/api/29.0/public/
H A Dhal_configstore.te7 # fallback path to collect crash data.
42 -anr_data_file # for crash dump collection
43 -tombstone_data_file # for crash dump collection
/aosp12/frameworks/libs/net/common/testutils/devicetests/com/android/testutils/
H A DConcurrentInterpreter.kt86 var crash: InterpretException? = null
93 if (null != crash) return@Thread
103 crash = InterpretException(threadIndex, it,
112 crash?.let { throw it }
/aosp12/system/sepolicy/prebuilts/api/30.0/public/
H A Dhal_configstore.te7 # fallback path to collect crash data.
43 -anr_data_file # for crash dump collection
44 -tombstone_data_file # for crash dump collection
/aosp12/system/sepolicy/prebuilts/api/31.0/public/
H A Dhal_configstore.te7 # fallback path to collect crash data.
43 -anr_data_file # for crash dump collection
44 -tombstone_data_file # for crash dump collection
/aosp12/system/sepolicy/prebuilts/api/32.0/public/
H A Dhal_configstore.te7 # fallback path to collect crash data.
43 -anr_data_file # for crash dump collection
44 -tombstone_data_file # for crash dump collection
/aosp12/system/sepolicy/public/
H A Dhal_configstore.te7 # fallback path to collect crash data.
43 -anr_data_file # for crash dump collection
44 -tombstone_data_file # for crash dump collection
/aosp12/system/sepolicy/prebuilts/api/27.0/public/
H A Dhal_configstore.te12 # fallback path to collect crash data.
46 -anr_data_file # for crash dump collection
47 -tombstone_data_file # for crash dump collection
/aosp12/system/sepolicy/prebuilts/api/28.0/public/
H A Dhal_configstore.te12 # fallback path to collect crash data.
46 -anr_data_file # for crash dump collection
47 -tombstone_data_file # for crash dump collection
/aosp12/art/test/408-move-bug/src/
H A DMain.java20 crash(); in main()
24 static void crash() { in crash() method in Main
/aosp12/system/bt/gd/docs/architecture/
H A Dstyle_guide.md174 * google-breakpad: host binary crash handler
175 * libbacktrace: print stacktrace on crash on host
198 * LOG_ALWAYS_FATAL(fmt, args...): Enabled, will always crash
199 * ASSERT(condition): Enabled, will crash when condition is false
200 * ASSERT_LOG(conditon, fmt, args...): Enabled, will crash and print log when
203 In general, errors that are caused by remote device should never crash our stack
207 LOG_ALWAYS_FATAL() to crash the stack and restart.
/aosp12/packages/apps/Launcher3/tests/tapl/com/android/launcher3/tapl/
H A DTestHelpers.java152 final String crash = checkCrash(context, label, startTime); in getSystemHealthMessage() local
153 if (crash != null) errors.append(crash); in getSystemHealthMessage()
/aosp12/packages/apps/QuickSearchBox/tests/naughty/src/com/android/quicksearchbox/tests/naughty/
H A DCrashingSuggestionProvider.java85 R.drawable.crash, in query()
96 R.drawable.crash, in query()
/aosp12/art/test/509-pre-header/smali/
H A DPreHeader.smali20 # that exposed the crash. The crash was due to fixing a critical
/aosp12/frameworks/base/tests/MemoryUsage/src/com/android/tests/memoryusage/
H A DMemoryUsageTest.java271 for (ProcessErrorStateInfo crash : crashes) { in reportError()
272 if (!crash.processName.equals(processName)) in reportError()
275 Log.w(TAG, appName + " crashed: " + crash.shortMsg); in reportError()
276 results.putString(mNameToResultKey.get(appName), crash.shortMsg); in reportError()
/aosp12/system/core/debuggerd/
H A Dcrash_test.cpp19 extern "C" void crash() { in crash() function
/aosp12/system/core/fs_mgr/libsnapshot/
H A DPowerTest.md36 The device will begin the merge with a 5% chance of injecting a kernel crash every 10ms. The device…
39 … and 100 (inclusive) indicating the probability the device should inject a kernel crash every 10ms.
/aosp12/art/test/714-invoke-custom-lambda-metafactory/
H A Dinfo.txt1 Checks that ART doesn't crash when it encounters LambdaMetafactory.
/aosp12/art/test/822-hiddenapi-future/
H A Dinfo.txt1 Tests that future hiddenapi flags do not crash the runtime.
/aosp12/art/test/161-final-abstract-class/
H A Dinfo.txt1 Regression test for verifier crash when processing a final abstract (erroneous) class.
/aosp12/art/test/483-dce-block/
H A Dinfo.txt1 Regression test for optimizing that used to crash

12345678