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

/art/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 Djvmti_weak_table-inl.h135 bool JvmtiWeakTable<T>::Set(art::mirror::Object* obj, T new_tag) { function in class:openjdkjvmti::JvmtiWeakTable
H A Devents.h94 jvmtiError Set(jint index, jvmtiExtensionEvent cb);
123 void Set(ArtJvmtiEvent event, bool value = true) { function in struct:openjdkjvmti::EventMask
H A Devents.cc75 jvmtiError ArtJvmtiEventCallbacks::Set(jint index, jvmtiExtensionEvent cb) { function in class:openjdkjvmti::ArtJvmtiEventCallbacks
145 GetEventMask(thread).Set(event);
147 unioned_thread_event_mask.Set(event, true);
155 GetEventMask(thread).Set(event, false);
165 unioned_thread_event_mask.Set(event, union_value);
179 global_event_mask.Set(to_remove, false);
180 global_event_mask.Set(to_add, true);
185 unioned_thread_event_mask.Set(to_remove, false);
186 unioned_thread_event_mask.Set(to_add, true);
191 thread_mask.second.Set(to_remov
[all...]
/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.h162 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/libartbase/base/
H A Dbit_struct.h152 what.Set(value);
162 void Set(T value) { function in struct:art::BitStructField
H A Dvariant_map.h41 // void Set(Key<T> key, TValue value);
282 // Set a value for a given key, overwriting the previous value if any.
285 void Set(const TKey<TValue>& key, const typename Identity<TValue>::type& value) { function in struct:art::VariantMap
294 // Set a value for a given key, only if there was no previous value before.
301 Set(key, value);
395 Set(key_refined, value);
/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.h242 inline void PrimitiveArray<T>::Set(int32_t i, T value) { function in class:art::mirror::PrimitiveArray
244 Set<true>(i, value);
246 Set<false>(i, value);
252 inline void PrimitiveArray<T>::Set(int32_t i, T value) { function in class:art::mirror::PrimitiveArray
/art/test/115-native-bridge/
H A Dnativebridge.cc269 Set(TestStatus::kNone);
272 void Set(TestStatus state) { function in class:SignalHandlerTestStatus
336 gSignalTestStatus.Set(TestStatus::kRaiseFirst);
355 gSignalTestStatus.Set(TestStatus::kHandleFirst);
362 gSignalTestStatus.Set(TestStatus::kRaiseSecond);
367 gSignalTestStatus.Set(TestStatus::kHandleSecond);

Completed in 4008 milliseconds