/art/odrefresh/ |
D | odr_compilation_log.cc | 47 is >> entry.trigger >> std::ws; in operator >>() 65 os << entry.trigger << kSpace; in operator <<() 76 lhs.trigger == rhs.trigger && lhs.when == rhs.when && lhs.exit_code == rhs.exit_code; in operator ==() 162 OdrMetrics::Trigger trigger, in Log() argument 166 Log(apex_version, last_update_millis, trigger, now, compilation_result); in Log() 171 OdrMetrics::Trigger trigger, in Log() argument 176 static_cast<int32_t>(trigger), in Log() 182 bool OdrCompilationLog::ShouldAttemptCompile(OdrMetrics::Trigger trigger, time_t now) const { in ShouldAttemptCompile() argument 194 if (trigger == OdrMetrics::Trigger::kApexVersionMismatch || in ShouldAttemptCompile() 195 trigger == OdrMetrics::Trigger::kDexFilesChanged) { in ShouldAttemptCompile()
|
D | odr_compilation_log.h | 36 int32_t trigger; member 68 bool ShouldAttemptCompile(OdrMetrics::Trigger trigger, time_t now = 0) const; 78 OdrMetrics::Trigger trigger, 83 OdrMetrics::Trigger trigger,
|
D | odrefresh.h | 111 static PreconditionCheckResult NoneOk(OdrMetrics::Trigger trigger) { in NoneOk() argument 112 return PreconditionCheckResult(trigger, in NoneOk() 117 static PreconditionCheckResult BootImageMainlineExtensionNotOk(OdrMetrics::Trigger trigger) { in BootImageMainlineExtensionNotOk() argument 118 return PreconditionCheckResult(trigger, in BootImageMainlineExtensionNotOk() 123 static PreconditionCheckResult SystemServerNotOk(OdrMetrics::Trigger trigger) { in SystemServerNotOk() argument 124 return PreconditionCheckResult(trigger, in SystemServerNotOk() 143 PreconditionCheckResult(std::optional<OdrMetrics::Trigger> trigger, in PreconditionCheckResult() argument 147 : trigger_(trigger), in PreconditionCheckResult()
|
D | odr_metrics.h | 119 void SetTrigger(const Trigger trigger) { trigger_ = trigger; } in SetTrigger() argument 194 std::ostream& operator<<(std::ostream& os, OdrMetrics::Trigger trigger);
|
D | odr_metrics_record_test.cc | 83 expected.trigger = 0x01020304; in TEST_F() 104 ASSERT_EQ(expected.trigger, actual.trigger); in TEST_F()
|
D | odr_metrics_record.h | 64 int32_t trigger; member
|
D | odr_statslog_android.cc | 65 record.trigger, in UploadStatsIfAvailable()
|
D | odr_metrics_record.cc | 131 trigger = OR_RETURN(ReadInt32(metrics, "trigger")); in ReadFromFile() 158 AddMetric(metrics, "trigger", trigger); in WriteToFile()
|
D | odr_metrics.cc | 142 .trigger = static_cast<int32_t>(trigger_), in ToRecord()
|
D | odr_compilation_log_test.cc | 217 static_cast<OdrMetrics::Trigger>(e.trigger), in TEST_F() 255 static_cast<OdrMetrics::Trigger>(e.trigger), in TEST_F()
|
/art/runtime/arch/x86/ |
D | fault_handler_x86.cc | 349 uint32_t trigger = Thread::ThreadSuspendTriggerOffset<kRuntimePointerSize>().Int32Value(); in Action() local 353 uint8_t checkinst1[] = {0x65, 0x48, 0x8b, 0x04, 0x25, static_cast<uint8_t>(trigger & 0xff), in Action() 354 static_cast<uint8_t>((trigger >> 8) & 0xff), 0, 0}; in Action() 356 uint8_t checkinst1[] = {0x64, 0x8b, 0x05, static_cast<uint8_t>(trigger & 0xff), in Action() 357 static_cast<uint8_t>((trigger >> 8) & 0xff), 0, 0}; in Action()
|
/art/test/2040-huge-native-alloc/ |
D | info.txt | 1 Check that we properly trigger world stop collections after a lot of native
|
/art/test/423-invoke-interface/ |
D | info.txt | 1 invoke-interface test with hopefully enough interface methods to trigger
|
/art/test/1000-non-moving-space-stress/ |
D | info.txt | 1 Regression test for a bug that used to trigger GC crashes during a
|
/art/test/144-static-field-sigquit/ |
D | info.txt | 8 to trigger occasionally with the buildbots.
|
/art/test/175-alloc-big-bignums/ |
D | info.txt | 2 associated memory will be in the C++ heap. This makes sure that we trigger
|
/art/test/824-verification-rethrow/jasmin/ |
D | Bar.j | 18 ; Missing super constructor call will trigger a verification error.
|
/art/tools/luci/config/generated/ |
D | luci-scheduler.cfg | 257 trigger { 291 trigger { 325 trigger { 359 trigger {
|
/art/test/585-inline-unresolved/smali/ |
D | TestCase.smali | 27 # We need multiple returns to trigger the crash.
|
/art/runtime/ |
D | native_gc_triggering.md | 48 We normally check for the need to trigger a GC due to native memory pressure only as a result of 57 normally trigger a GC plus an allowance for native heap size. This allowance currently consists 79 trigger a native GC when we are closer to the normal Java GC threshold.
|
/art/test/533-regression-debugphi/smali/ |
D | TestCase.smali | 18 # This is a reduced test case that used to trigger an infinite loop
|
/art/artd/ |
D | artd.cc | 196 OatFileAssistant::DexOptTrigger trigger{}; in DexOptTriggerFromAidl() local 198 trigger.targetFilterIsBetter = true; in DexOptTriggerFromAidl() 201 trigger.targetFilterIsSame = true; in DexOptTriggerFromAidl() 204 trigger.targetFilterIsWorse = true; in DexOptTriggerFromAidl() 207 trigger.primaryBootImageBecomesUsable = true; in DexOptTriggerFromAidl() 210 trigger.needExtraction = true; in DexOptTriggerFromAidl() 212 return trigger; in DexOptTriggerFromAidl()
|