自 2025 年 3 月 27 日起,我们建议您使用 android-latest-release
而非 aosp-main
构建 AOSP 并为其做出贡献。如需了解详情,请参阅 AOSP 的变更。
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
NativePocCrashAsserter
public
class
NativePocCrashAsserter
extends Object
implements
NativePocAsserter
java.lang.Object
|
↳ |
com.android.sts.common.NativePocCrashAsserter
|
摘要
公共方法
assertNoCrash
public static NativePocAsserter assertNoCrash ()
返回一个 NativePocAsserter,用于确保 Poc 不会发生安全崩溃。
assertNoCrashIn
public static NativePocAsserter assertNoCrashIn (String... patterns)
返回一个 NativePocAsserter,用于检查所列进程是否存在任何安全崩溃。
withAutoCloseable
public AutoCloseable withAutoCloseable (NativePoc nativePoc,
ITestDevice device)
在 PoC 运行之前调用,返回一个 AutoCloseable,该 AutoCloseable 会在 PoC 完成后关闭
参数 |
nativePoc |
NativePoc |
device |
ITestDevice |
抛出 |
DeviceNotAvailableException |
|
本页面上的内容和代码示例受内容许可部分所述许可的限制。Java 和 OpenJDK 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-07-27。
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["没有我需要的信息","missingTheInformationINeed","thumb-down"],["太复杂/步骤太多","tooComplicatedTooManySteps","thumb-down"],["内容需要更新","outOfDate","thumb-down"],["翻译问题","translationIssue","thumb-down"],["示例/代码问题","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2025-07-27。"],[],[],null,["# NativePocCrashAsserter\n======================\n\n\n`\npublic\n\n\nclass\nNativePocCrashAsserter\n`\n\n\n`\n\nextends Object\n\n\n`\n\n`\n\n\nimplements\n\n`[NativePocAsserter](../../../../../../reference/sts/com/android/sts/common/NativePocAsserter.html)`\n\n\n`\n\n|---|-----------------------------------------------|\n| java.lang.Object ||\n| ↳ | com.android.sts.common.NativePocCrashAsserter |\n\n\u003cbr /\u003e\n\n*** ** * ** ***\n\nSummary\n-------\n\n| ### Public methods ||\n|--------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ` static `[NativePocAsserter](../../../../../../reference/sts/com/android/sts/common/NativePocAsserter.html) | ` `[assertNoCrash](../../../../../../reference/sts/com/android/sts/common/NativePocCrashAsserter.html#assertNoCrash())`() ` Returns a NativePocAsserter that makes sure the Poc does not have a security crash. |\n| ` static `[NativePocAsserter](../../../../../../reference/sts/com/android/sts/common/NativePocAsserter.html) | ` `[assertNoCrash](../../../../../../reference/sts/com/android/sts/common/NativePocCrashAsserter.html#assertNoCrash(com.android.sts.common.util.TombstoneUtils.Config))`(`[TombstoneUtils.Config](../../../../../../reference/sts/com/android/sts/common/util/TombstoneUtils.Config.html)` config) ` Returns a NativePocAsserter that makes sure there is no security crash detected accoridng to the given TombstoneUtils.Config |\n| ` static `[NativePocAsserter](../../../../../../reference/sts/com/android/sts/common/NativePocAsserter.html) | ` `[assertNoCrashIn](../../../../../../reference/sts/com/android/sts/common/NativePocCrashAsserter.html#assertNoCrashIn(java.lang.String...))`(String... patterns) ` Returns a NativePocAsserter that checks the listed processes for any security crashes. |\n| ` AutoCloseable` | ` `[withAutoCloseable](../../../../../../reference/sts/com/android/sts/common/NativePocCrashAsserter.html#withAutoCloseable(com.android.sts.common.NativePoc,%20com.android.tradefed.device.ITestDevice))`(`[NativePoc](../../../../../../reference/sts/com/android/sts/common/NativePoc.html)` nativePoc, ITestDevice device) ` Called before a PoC runs, returns an AutoCloseable that closes after the PoC finishes |\n\nPublic methods\n--------------\n\n### assertNoCrash\n\n```\npublic static NativePocAsserter assertNoCrash ()\n```\n\nReturns a NativePocAsserter that makes sure the Poc does not have a security crash.\n\n\u003cbr /\u003e\n\n| Returns ||\n|----------------------------------------------------------------------------------------------------|--------|\n| [NativePocAsserter](../../../../../../reference/sts/com/android/sts/common/NativePocAsserter.html) | \u003cbr /\u003e |\n\n### assertNoCrash\n\n```\npublic static NativePocAsserter assertNoCrash (TombstoneUtils.Config config)\n```\n\nReturns a NativePocAsserter that makes sure there is no security crash detected accoridng to\nthe given TombstoneUtils.Config\n\n\u003cbr /\u003e\n\n| Parameters ||\n|----------|--------------------------------|\n| `config` | `TombstoneUtils.Config` \u003cbr /\u003e |\n\n| Returns ||\n|----------------------------------------------------------------------------------------------------|--------|\n| [NativePocAsserter](../../../../../../reference/sts/com/android/sts/common/NativePocAsserter.html) | \u003cbr /\u003e |\n\n### assertNoCrashIn\n\n```\npublic static NativePocAsserter assertNoCrashIn (String... patterns)\n```\n\nReturns a NativePocAsserter that checks the listed processes for any security crashes.\n\n\u003cbr /\u003e\n\n| Parameters ||\n|------------|-----------------|\n| `patterns` | `String` \u003cbr /\u003e |\n\n| Returns ||\n|----------------------------------------------------------------------------------------------------|--------|\n| [NativePocAsserter](../../../../../../reference/sts/com/android/sts/common/NativePocAsserter.html) | \u003cbr /\u003e |\n\n### withAutoCloseable\n\n```\npublic AutoCloseable withAutoCloseable (NativePoc nativePoc, \n ITestDevice device)\n```\n\nCalled before a PoC runs, returns an AutoCloseable that closes after the PoC finishes\n\n\u003cbr /\u003e\n\n| Parameters ||\n|-------------|----------------------|\n| `nativePoc` | `NativePoc` \u003cbr /\u003e |\n| `device` | `ITestDevice` \u003cbr /\u003e |\n\n| Returns ||\n|-----------------|--------|\n| `AutoCloseable` | \u003cbr /\u003e |\n\n| Throws ||\n|-------------------------------|---|\n| `DeviceNotAvailableException` | |"]]