Searched defs:Set (Results 1 - 10 of 10) sorted by relevance

/art/runtime/openjdkjvmti/
H A Dobject_tagging.cc45 bool ObjectTagTable::Set(art::mirror::Object* obj, jlong new_tag) { function in class:openjdkjvmti::ObjectTagTable
50 return JvmtiWeakTable<jlong>::Set(obj, new_tag);
H A Devents.h93 void Set(ArtJvmtiEvent event, bool value = true) { function in struct:openjdkjvmti::EventMask
H A Djvmti_weak_table-inl.h134 bool JvmtiWeakTable<T>::Set(art::mirror::Object* obj, T new_tag) { function in class:openjdkjvmti::JvmtiWeakTable
/art/runtime/gc/accounting/
H A Dheap_bitmap-inl.h67 inline bool HeapBitmap::Set(const mirror::Object* obj, const LargeObjectSetVisitor& visitor) { function in class:art::gc::accounting::HeapBitmap
70 return bitmap->Set(obj);
75 return lo_bitmap->Set(obj);
H A Dbitmap.h163 ALWAYS_INLINE bool Set(uintptr_t addr) { function in class:art::gc::accounting::MemoryRangeBitmap
/art/runtime/
H A Dimtable.h56 void Set(size_t index, ArtMethod* method, PointerSize pointer_size) { function in class:art::ImTable
74 Set(i, data[i], pointer_size);
/art/runtime/mirror/
H A Dobject_array-inl.h88 inline void ObjectArray<T>::Set(int32_t i, ObjPtr<T> object) { function in class:art::mirror::ObjectArray
90 Set<true>(i, object);
92 Set<false>(i, object);
98 inline void ObjectArray<T>::Set(int32_t i, ObjPtr<T> object) { function in class:art::mirror::ObjectArray
H A Darray-inl.h243 inline void PrimitiveArray<T>::Set(int32_t i, T value) { function in class:art::mirror::PrimitiveArray
245 Set<true>(i, value);
247 Set<false>(i, value);
253 inline void PrimitiveArray<T>::Set(int32_t i, T value) { function in class:art::mirror::PrimitiveArray
/art/runtime/base/
H A Dvariant_map.h40 // void Set(Key<T> key, TValue value);
273 // Set a value for a given key, overwriting the previous value if any.
276 void Set(const TKey<TValue>& key, const typename Identity<TValue>::type& value) { function in struct:art::VariantMap
284 // Set a value for a given key, only if there was no previous value before.
291 Set(key, value);
385 Set(key_refined, value);
/art/test/115-native-bridge/
H A Dnativebridge.cc252 Set(TestStatus::kNone);
255 void Set(TestStatus state) { function in class:SignalHandlerTestStatus
319 gSignalTestStatus.Set(TestStatus::kRaiseFirst);
338 gSignalTestStatus.Set(TestStatus::kHandleFirst);
345 gSignalTestStatus.Set(TestStatus::kRaiseSecond);
350 gSignalTestStatus.Set(TestStatus::kHandleSecond);

Completed in 175 milliseconds