Home
last modified time | relevance | path

Searched refs:CRITICAL (Results 1 – 25 of 491) sorted by relevance

12345678910>>...20

/aosp_15_r20/external/trusty/lk/arch/arm/arm/
Dfaults.c59 …dprintf(CRITICAL, "%c%s r13 0x%08x r14 0x%08x\n", ((spsr & CPSR_MODE_MASK) == CPSR_MODE_USR) ? '*'… in dump_mode_regs()
60 …dprintf(CRITICAL, "%c%s r13 0x%08x r14 0x%08x\n", ((spsr & CPSR_MODE_MASK) == CPSR_MODE_FIQ) ? '*'… in dump_mode_regs()
61 …dprintf(CRITICAL, "%c%s r13 0x%08x r14 0x%08x\n", ((spsr & CPSR_MODE_MASK) == CPSR_MODE_IRQ) ? '*'… in dump_mode_regs()
62 dprintf(CRITICAL, "%c%s r13 0x%08x r14 0x%08x\n", 'a', "svc", regs.svc_r13, regs.svc_r14); in dump_mode_regs()
63 …dprintf(CRITICAL, "%c%s r13 0x%08x r14 0x%08x\n", ((spsr & CPSR_MODE_MASK) == CPSR_MODE_SVC) ? '*'… in dump_mode_regs()
64 …dprintf(CRITICAL, "%c%s r13 0x%08x r14 0x%08x\n", ((spsr & CPSR_MODE_MASK) == CPSR_MODE_UND) ? '*'… in dump_mode_regs()
65 …dprintf(CRITICAL, "%c%s r13 0x%08x r14 0x%08x\n", ((spsr & CPSR_MODE_MASK) == CPSR_MODE_SYS) ? '*'… in dump_mode_regs()
90 dprintf(CRITICAL, "stack pointer at 0x%08x:\n", (unsigned int)stack); in dump_mode_regs()
103 dprintf(CRITICAL, "current_thread %p, name %s\n", in dump_thread_info()
108 dprintf(CRITICAL, "load bias %" PRIxVADDR "\n", app->load_bias); in dump_thread_info()
[all …]
/aosp_15_r20/external/trusty/lk/arch/x86/
Dfaults.c87 dprintf(CRITICAL, " CS: %04x EIP: %08x EFL: %08x CR2: %08x\n", in dump_fault_frame()
89 dprintf(CRITICAL, "EAX: %08x ECX: %08x EDX: %08x EBX: %08x\n", in dump_fault_frame()
91 dprintf(CRITICAL, "ESP: %08x EBP: %08x ESI: %08x EDI: %08x\n", in dump_fault_frame()
93 dprintf(CRITICAL, " DS: %04x ES: %04x FS: %04x GS: %04x\n", in dump_fault_frame()
96 …dprintf(CRITICAL, " CS: %4" PRIx64 " RIP: %16" PRIx64 " EFL: %16" PRIx64 " CR2: %16" … in dump_fault_frame()
98 …dprintf(CRITICAL, " RAX: %16" PRIx64 " RBX: %16" PRIx64 " RCX: %16" PRIx64 " RDX: %16" PRIx64 "\n", in dump_fault_frame()
100 …dprintf(CRITICAL, " RSI: %16" PRIx64 " RDI: %16" PRIx64 " RBP: %16" PRIx64 " RSP: %16" PRIx64 "\n", in dump_fault_frame()
102 …dprintf(CRITICAL, " R8: %16" PRIx64 " R9: %16" PRIx64 " R10: %16" PRIx64 " R11: %16" PRIx64 "\n", in dump_fault_frame()
104 …dprintf(CRITICAL, " R12: %16" PRIx64 " R13: %16" PRIx64 " R14: %16" PRIx64 " R15: %16" PRIx64 "\n", in dump_fault_frame()
106 dprintf(CRITICAL, "errc: %16" PRIx64 "\n", in dump_fault_frame()
[all …]
/aosp_15_r20/trusty/kernel/lib/trusty/
H A Dtrusty_app.c194 dprintf(CRITICAL, "Allowed mmio range is empty\n"); in trusty_app_allow_mmio_range()
581 dprintf(CRITICAL, in trusty_thread_create()
596 dprintf(CRITICAL, in trusty_thread_create()
705 dprintf(CRITICAL, "manifest section header not found\n"); in get_app_manifest_config_data()
886 dprintf(CRITICAL, "error parsing manifest for app %u\n", in load_app_config_options()
896 dprintf(CRITICAL, in load_app_config_options()
912 dprintf(CRITICAL, "mmio_id %u not page aligned of app %u, %s\n", in load_app_config_options()
921 dprintf(CRITICAL, in load_app_config_options()
931 dprintf(CRITICAL, "mmio_id %u bad size of app %u, %s\n", in load_app_config_options()
945 dprintf(CRITICAL, in load_app_config_options()
[all …]
/aosp_15_r20/packages/modules/IntentResolver/tests/unit/src/com/android/intentresolver/validation/types/
DParceledArrayTest.kt21 import com.android.intentresolver.validation.Importance.CRITICAL
39 val result = keyValidator.validate(values::get, CRITICAL) in valid()
52 val result = keyValidator.validate(values::get, CRITICAL) in wrongElementType()
62 importance = CRITICAL, in wrongElementType()
75 val result = keyValidator.validate(source = { null }, CRITICAL) in missing()
80 assertThat(result.errors).containsExactly(NoValue("key", CRITICAL, Intent::class)) in missing()
102 val result = keyValidator.validate(values::get, CRITICAL) in wrongType()
111 importance = CRITICAL, in wrongType()
DIntentOrUriTest.kt24 import com.android.intentresolver.validation.Importance.CRITICAL
41 val result = keyValidator.validate(values::get, CRITICAL) in intent()
54 val result = keyValidator.validate(values::get, CRITICAL) in uri()
66 val result = keyValidator.validate({ null }, CRITICAL) in missing()
71 assertThat(result.errors).containsExactly(NoValue("key", CRITICAL, Intent::class)) in missing()
94 val result = keyValidator.validate(values::get, CRITICAL) in wrongType_required()
103 importance = CRITICAL, in wrongType_required()
DSimpleValueTest.kt19 import com.android.intentresolver.validation.Importance.CRITICAL
36 val result = keyValidator.validate(values::get, CRITICAL) in present()
49 val result = keyValidator.validate(values::get, CRITICAL) in wrongType()
57 importance = CRITICAL, in wrongType()
69 val result = keyValidator.validate(source = { null }, CRITICAL) in missing()
74 assertThat(result.errors).containsExactly(NoValue("key", CRITICAL, Double::class)) in missing()
/aosp_15_r20/trusty/kernel/platform/generic-arm64/
H A Dplatform.c163 dprintf(CRITICAL, "failed to find pci device tree node\n"); in pci_init_fdt()
171 dprintf(CRITICAL, "failed to find get reg, err %d\n", ret); in pci_init_fdt()
193 dprintf(CRITICAL, in platform_after_vm_init()
199 dprintf(CRITICAL, "invalid device tree at 0x%" PRIxPADDR ": %d\n", in platform_after_vm_init()
213 dprintf(CRITICAL, in platform_after_vm_init()
228 dprintf(CRITICAL, "failed get gicd regs, offset %d\n", fdt_gic_offset); in platform_after_vm_init()
232 dprintf(CRITICAL, "failed get gicr regs, offset %d\n", fdt_gic_offset); in platform_after_vm_init()
236 dprintf(CRITICAL, "unexpected gicd_size %zd != %d\n", gicd_size, in platform_after_vm_init()
241 dprintf(CRITICAL, "unexpected gicr_size %zd < %d\n", gicr_size, in platform_after_vm_init()
/aosp_15_r20/libnativehelper/tests/
H A DJniSafeRegisterNativeMethods_test.cpp294 FN0(a0,CRITICAL,void) \
295 FN0(a ,CRITICAL,jboolean) \
296 FN0(a1,CRITICAL,jbyte) \
297 FN0(g, CRITICAL,jchar) \
298 FN0(c, CRITICAL,jshort) \
299 FN0(b, CRITICAL,jint) \
300 FN0(f, CRITICAL,jlong) \
301 FN0(d, CRITICAL,jfloat) \
302 FN0(e, CRITICAL,jdouble) \
316 FN(aa, CRITICAL,jboolean,jboolean) \
[all …]
/aosp_15_r20/frameworks/base/services/tests/voiceinteractiontests/src/com/android/server/soundtrigger/
H A DDeviceStateHandlerTest.java112 waitAndAssertState(CRITICAL); in onPowerModeChangedCritical_receiveStateChange()
130 waitAndAssertState(CRITICAL); in onPowerModeChangedMultiple_receiveStateChange()
142 waitAndAssertState(CRITICAL); in onPowerModeSameState_noStateChange()
187 waitAndAssertState(CRITICAL); in onBatteryCallbackDuringPhoneWait_receiveStateChangeDelayed()
210 waitAndAssertState(CRITICAL); in whenBatteryCriticalChangeDuringCallAfterPhoneCall_receiveCriticalStateChange()
223 waitAndAssertState(CRITICAL); in whenBatteryDisableDuringCallAfterPhoneCallBatteryEnable_receiveStateChange()
239 waitAndAssertState(CRITICAL); in whenPhoneCallDuringBatteryCritical_receiveStateChange()
243 waitAndAssertState(CRITICAL); in whenPhoneCallDuringBatteryCritical_receiveStateChange()
/aosp_15_r20/out/soong/.intermediates/hardware/interfaces/thermal/2.0/android.hardware.thermal-V2.0-java_gen_java/gen/srcs/android/hardware/thermal/V2_0/
DThrottlingSeverity.java25 …public static final int CRITICAL = 4 /* ::android::hardware::thermal::V2_0::ThrottlingSeverity.SEV… field in ThrottlingSeverity
48 if (o == CRITICAL) { in toString()
76 if ((o & CRITICAL) == CRITICAL) { in dumpBitfield()
78 flipped |= CRITICAL; in dumpBitfield()
/aosp_15_r20/out/soong/.intermediates/hardware/interfaces/health/2.1/android.hardware.health-V2.1-java_gen_java/gen/srcs/android/hardware/health/V2_1/
DBatteryCapacityLevel.java21 …public static final int CRITICAL = 1 /* ::android::hardware::health::V2_1::BatteryCapacityLevel.UN… field in BatteryCapacityLevel
47 if (o == CRITICAL) { in toString()
73 if ((o & CRITICAL) == CRITICAL) { in dumpBitfield()
75 flipped |= CRITICAL; in dumpBitfield()
/aosp_15_r20/packages/modules/IntentResolver/java/src/com/android/intentresolver/validation/
DFindings.kt19 import com.android.intentresolver.validation.Importance.CRITICAL
29 CRITICAL,
36 CRITICAL -> Log.ERROR
69 if (importance == CRITICAL) {
112 get() = CRITICAL
/aosp_15_r20/external/cronet/base/android/junit/src/org/chromium/base/memory/
H A DMemoryPressureMonitorTest.java106 {ComponentCallbacks2.TRIM_MEMORY_COMPLETE + 1, MemoryPressureLevel.CRITICAL}, in testTrimLevelTranslation()
107 {ComponentCallbacks2.TRIM_MEMORY_COMPLETE, MemoryPressureLevel.CRITICAL}, in testTrimLevelTranslation()
110 {ComponentCallbacks2.TRIM_MEMORY_RUNNING_CRITICAL, MemoryPressureLevel.CRITICAL}, in testTrimLevelTranslation()
216 mMonitor.notifyPressure(MemoryPressureLevel.CRITICAL); in testPollingInitiallyDisabled()
283 mMonitor.notifyPressure(MemoryPressureLevel.CRITICAL); in testPollingIfCRITICAL()
325 mMonitor.notifyPressure(MemoryPressureLevel.CRITICAL); in testNoPollingIfChangedToCRITICAL()
342 mMonitor.notifyPressure(MemoryPressureLevel.CRITICAL); in testDisablePolling()
/aosp_15_r20/external/libchrome/base/android/junit/src/org/chromium/base/memory/
H A DMemoryPressureMonitorTest.java107 {ComponentCallbacks2.TRIM_MEMORY_COMPLETE + 1, MemoryPressureLevel.CRITICAL}, in testTrimLevelTranslation()
108 {ComponentCallbacks2.TRIM_MEMORY_COMPLETE, MemoryPressureLevel.CRITICAL}, in testTrimLevelTranslation()
111 {ComponentCallbacks2.TRIM_MEMORY_RUNNING_CRITICAL, MemoryPressureLevel.CRITICAL}, in testTrimLevelTranslation()
216 mMonitor.notifyPressure(MemoryPressureLevel.CRITICAL); in testPollingInitiallyDisabled()
283 mMonitor.notifyPressure(MemoryPressureLevel.CRITICAL); in testPollingIfCRITICAL()
325 mMonitor.notifyPressure(MemoryPressureLevel.CRITICAL); in testNoPollingIfChangedToCRITICAL()
342 mMonitor.notifyPressure(MemoryPressureLevel.CRITICAL); in testDisablePolling()
/aosp_15_r20/external/python/absl-py/absl/logging/tests/
Dconverter_test.py51 logging.CRITICAL, converter.absl_to_standard(absl_logging.FATAL))
73 absl_logging.FATAL, converter.standard_to_absl(logging.CRITICAL))
88 self.assertEqual(3, converter.standard_to_cpp(logging.CRITICAL))
94 self.assertEqual('F', converter.get_initial_for_level(logging.CRITICAL))
120 self.assertEqual(logging.CRITICAL, converter.string_to_standard('fatal'))
127 self.assertEqual(logging.CRITICAL, converter.string_to_standard('FATAL'))
/aosp_15_r20/external/autotest/client/common_lib/
H A Dconfig_vars_unittest.py75 logging.disable(logging.CRITICAL)
89 logging.disable(logging.CRITICAL)
341 logging.disable(logging.CRITICAL)
347 logging.disable(logging.CRITICAL)
/aosp_15_r20/prebuilts/vndk/v33/x86_64/include/generated-headers/hardware/interfaces/health/aidl/android.hardware.health-V1-ndk-source/gen/include/aidl/android/hardware/health/
DBatteryCapacityLevel.h21 CRITICAL = 1, enumerator
42 case BatteryCapacityLevel::CRITICAL: in toString()
68 aidl::android::hardware::health::BatteryCapacityLevel::CRITICAL,
/aosp_15_r20/out/soong/.intermediates/hardware/interfaces/health/aidl/android.hardware.health-V4-ndk-source/gen/include/aidl/android/hardware/health/
DBatteryCapacityLevel.h29 CRITICAL = 1, enumerator
50 case BatteryCapacityLevel::CRITICAL: in toString()
76 aidl::android::hardware::health::BatteryCapacityLevel::CRITICAL,
/aosp_15_r20/prebuilts/vndk/v33/x86/include/generated-headers/hardware/interfaces/health/aidl/android.hardware.health-V1-ndk-source/gen/include/aidl/android/hardware/health/
DBatteryCapacityLevel.h21 CRITICAL = 1, enumerator
42 case BatteryCapacityLevel::CRITICAL: in toString()
68 aidl::android::hardware::health::BatteryCapacityLevel::CRITICAL,
/aosp_15_r20/out/soong/.intermediates/hardware/interfaces/health/aidl/android.hardware.health-V3-ndk-source/gen/include/aidl/android/hardware/health/
DBatteryCapacityLevel.h29 CRITICAL = 1, enumerator
50 case BatteryCapacityLevel::CRITICAL: in toString()
76 aidl::android::hardware::health::BatteryCapacityLevel::CRITICAL,
/aosp_15_r20/out/soong/.intermediates/hardware/interfaces/health/aidl/android.hardware.health-V2-ndk-source/gen/include/aidl/android/hardware/health/
DBatteryCapacityLevel.h29 CRITICAL = 1, enumerator
50 case BatteryCapacityLevel::CRITICAL: in toString()
76 aidl::android::hardware::health::BatteryCapacityLevel::CRITICAL,
/aosp_15_r20/prebuilts/vndk/v33/arm64/include/generated-headers/hardware/interfaces/health/aidl/android.hardware.health-V1-ndk-source/gen/include/aidl/android/hardware/health/
DBatteryCapacityLevel.h21 CRITICAL = 1, enumerator
42 case BatteryCapacityLevel::CRITICAL: in toString()
68 aidl::android::hardware::health::BatteryCapacityLevel::CRITICAL,
/aosp_15_r20/prebuilts/vndk/v33/arm/include/generated-headers/hardware/interfaces/health/aidl/android.hardware.health-V1-ndk-source/gen/include/aidl/android/hardware/health/
DBatteryCapacityLevel.h21 CRITICAL = 1, enumerator
42 case BatteryCapacityLevel::CRITICAL: in toString()
68 aidl::android::hardware::health::BatteryCapacityLevel::CRITICAL,
/aosp_15_r20/out/soong/.intermediates/hardware/interfaces/thermal/aidl/android.hardware.thermal-V3-ndk-source/gen/include/aidl/android/hardware/thermal/
DThrottlingSeverity.h31 CRITICAL = 4, enumerator
54 case ThrottlingSeverity::CRITICAL: in toString()
78 aidl::android::hardware::thermal::ThrottlingSeverity::CRITICAL,
/aosp_15_r20/frameworks/native/services/utils/
H A DPriorityDumper.cpp27 enum class PriorityType { INVALID, CRITICAL, HIGH, NORMAL }; enumerator
31 return PriorityType::CRITICAL; in getPriorityType()
71 case PriorityType::CRITICAL: in priorityDump()

12345678910>>...20