Searched refs:updated (Results 1 - 6 of 6) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DOffsettable.java20 * Tracks the original and updated positions of a RawDexObject when it is
54 private boolean updated; field in class:Offsettable
96 if (!updated) {
106 if (!updated) {
108 updated = true;
115 return (originalPositionKnown && updated);
/art/runtime/
H A Dimage-inl.h59 ArtMethod* updated = visitor(orig); local
60 if (updated != orig) {
61 imt->Set(i, updated, pointer_size);
H A Dthread_list.cc347 bool updated = thread->ModifySuspendCount(self, +1, nullptr, SuspendReason::kInternal); local
348 DCHECK(updated);
389 bool updated = thread->ModifySuspendCount(self, -1, nullptr, SuspendReason::kInternal); local
390 DCHECK(updated);
597 bool updated = thread->ModifySuspendCount(self, -1, nullptr, SuspendReason::kInternal); local
598 DCHECK(updated);
631 bool updated = thread->ModifySuspendCount(self, -1, nullptr, SuspendReason::kInternal); local
632 DCHECK(updated);
742 bool updated = thread->ModifySuspendCount(self, +1, &pending_threads, reason); local
743 DCHECK(updated);
821 bool updated = thread->ModifySuspendCount(self, -1, nullptr, SuspendReason::kInternal); local
928 bool updated = suspended_thread->ModifySuspendCount(soa.Self(), local
958 bool updated = suspended_thread->ModifySuspendCount(self, +1, nullptr, reason); local
991 bool updated = suspended_thread->ModifySuspendCount(soa.Self(), local
1068 bool updated = thread->ModifySuspendCount(self, +1, nullptr, reason); local
1100 bool updated = thread->ModifySuspendCount(soa.Self(), -1, nullptr, reason); local
1178 bool updated = self->ModifySuspendCount(self, +1, nullptr, SuspendReason::kForDebugger); local
1263 bool updated = thread->ModifySuspendCount(self, -1, nullptr, SuspendReason::kForDebugger); local
1354 bool updated = thread->ModifySuspendCount(self, +1, nullptr, SuspendReason::kInternal); local
1415 bool updated = self->ModifySuspendCount(self, +1, nullptr, SuspendReason::kForDebugger); local
1419 bool updated = self->ModifySuspendCount(self, +1, nullptr, SuspendReason::kInternal); local
1537 bool updated = thread->ModifySuspendCount(self, -1, nullptr, SuspendReason::kInternal); local
[all...]
H A Dimt_conflict_table.h121 std::pair<ArtMethod*, ArtMethod*> updated = visitor(input); variable
122 if (input.first != updated.first) {
123 SetInterfaceMethod(table_index, pointer_size, updated.first);
125 if (input.second != updated.second) {
126 SetImplementationMethod(table_index, pointer_size, updated.second);
H A Dthread.cc303 // Append a bool array at the end to keep track of what vregs are updated by the debugger.
1543 bool updated = ModifySuspendCount(self, -1, nullptr, SuspendReason::kInternal); variable
1544 DCHECK(updated); variable
/art/test/712-varhandle-invocations/src/
H A DVarHandleAccessorExceptionTests.java146 boolean updated = false;
148 updated = (boolean) vh.compareAndSet(this, 44);
152 assertFalse(updated); // Should have failed too few arguments

Completed in 161 milliseconds