/art/runtime/mirror/ |
D | object_array-inl.h | 81 inline void ObjectArray<T>::SetWithoutChecks(int32_t i, ObjPtr<T> object) { in SetWithoutChecks() function 261 SetWithoutChecks<kTransactionActive>(dst_pos + i, nullptr); in AssignableCheckingMemcpy() 266 SetWithoutChecks<kTransactionActive>(dst_pos + i, o); in AssignableCheckingMemcpy() 269 SetWithoutChecks<kTransactionActive>(dst_pos + i, o); in AssignableCheckingMemcpy() 286 SetWithoutChecks<kTransactionActive>(dst_pos + i, nullptr); in AssignableCheckingMemcpy() 291 SetWithoutChecks<kTransactionActive>(dst_pos + i, o); in AssignableCheckingMemcpy() 294 SetWithoutChecks<kTransactionActive>(dst_pos + i, o); in AssignableCheckingMemcpy()
|
D | array-inl.h | 85 SetWithoutChecks<kTransactionActive, kCheckTransaction>(i, value); in Set() 93 inline void PrimitiveArray<T>::SetWithoutChecks(int32_t i, T value) { in SetWithoutChecks() function 266 SetWithoutChecks<kTransactionActive>(idx, element); in SetElementPtrSize() 270 ->SetWithoutChecks<kTransactionActive>(idx, static_cast<uint32_t>(element)); in SetElementPtrSize()
|
D | iftable-inl.h | 41 SetWithoutChecks<false>(idx, interface); in SetInterface()
|
D | object_array.h | 75 ALWAYS_INLINE void SetWithoutChecks(int32_t i, ObjPtr<T> object) NO_THREAD_SAFETY_ANALYSIS;
|
D | array.h | 188 void SetWithoutChecks(int32_t i, T value) ALWAYS_INLINE NO_THREAD_SAFETY_ANALYSIS;
|
D | emulated_stack_frame.cc | 263 references->SetWithoutChecks<false>(references->GetLength() - 1, value.GetL()); in SetReturnValue()
|
/art/runtime/ |
D | transaction.cc | 672 array->AsBooleanArray()->SetWithoutChecks<false, kCheckTransaction>( in UndoArrayWrite() 676 array->AsByteArray()->SetWithoutChecks<false, kCheckTransaction>( in UndoArrayWrite() 680 array->AsCharArray()->SetWithoutChecks<false, kCheckTransaction>( in UndoArrayWrite() 684 array->AsShortArray()->SetWithoutChecks<false, kCheckTransaction>( in UndoArrayWrite() 688 array->AsIntArray()->SetWithoutChecks<false, kCheckTransaction>( in UndoArrayWrite() 692 array->AsFloatArray()->SetWithoutChecks<false, kCheckTransaction>( in UndoArrayWrite() 696 array->AsLongArray()->SetWithoutChecks<false, kCheckTransaction>( in UndoArrayWrite() 700 array->AsDoubleArray()->SetWithoutChecks<false, kCheckTransaction>( in UndoArrayWrite()
|
D | transaction_test.cc | 463 booleanArray->SetWithoutChecks<true>(0, true); in TEST_F() 464 byteArray->SetWithoutChecks<true>(0, 1); in TEST_F() 465 charArray->SetWithoutChecks<true>(0, 1u); in TEST_F() 466 shortArray->SetWithoutChecks<true>(0, 1); in TEST_F() 467 intArray->SetWithoutChecks<true>(0, 1); in TEST_F() 468 longArray->SetWithoutChecks<true>(0, 1); in TEST_F() 469 floatArray->SetWithoutChecks<true>(0, 1.0); in TEST_F() 470 doubleArray->SetWithoutChecks<true>(0, 1.0); in TEST_F() 471 objectArray->SetWithoutChecks<true>(0, h_obj.Get()); in TEST_F()
|
/art/openjdkjvmti/ |
D | ti_class_loader.cc | 129 new_cookie->SetWithoutChecks<false>(0, cookie->GetWithoutChecks(0)); in AllocateNewDexFileCookie() 131 new_cookie->SetWithoutChecks<false>( in AllocateNewDexFileCookie()
|
/art/runtime/native/ |
D | java_lang_reflect_Executable.cc | 139 resized_annotations->SetWithoutChecks<kTransactionActive>(i, empty_annotations.Get()); in Executable_getParameterAnnotationsNative() 143 resized_annotations->SetWithoutChecks<kTransactionActive>(i + offset, annotation); in Executable_getParameterAnnotationsNative() 151 resized_annotations->SetWithoutChecks<kTransactionActive>(i, annotation); in Executable_getParameterAnnotationsNative() 370 ptypes->SetWithoutChecks<false>(i, param.Get()); in Executable_getParameterTypesInternal()
|
D | java_lang_Class.cc | 275 ifaces->SetWithoutChecks<false>(i, interface); in Class_getInterfacesInternal() 323 object_array->SetWithoutChecks<false>(array_idx++, reflect_field); in GetDeclaredFields() 336 object_array->SetWithoutChecks<false>(array_idx++, reflect_field); in GetDeclaredFields() 596 h_constructors->SetWithoutChecks<false>(constructor_count++, constructor); in Class_getDeclaredConstructorsInternal() 667 ret->SetWithoutChecks<false>(num_methods++, method); in Class_getDeclaredMethodsUnchecked()
|
/art/runtime/dex/ |
D | dex_file_annotations.cc | 397 h_element_array->SetWithoutChecks<false>(i, new_member); in ProcessEncodedAnnotation() 627 SetWithoutChecks<kTransactionActive>(i, obj); in ProcessAnnotationValue() 631 new_array->AsByteArray()->SetWithoutChecks<kTransactionActive>( in ProcessAnnotationValue() 635 new_array->AsShortArray()->SetWithoutChecks<kTransactionActive>( in ProcessAnnotationValue() 639 new_array->AsCharArray()->SetWithoutChecks<kTransactionActive>( in ProcessAnnotationValue() 643 new_array->AsIntArray()->SetWithoutChecks<kTransactionActive>( in ProcessAnnotationValue() 647 new_array->AsLongArray()->SetWithoutChecks<kTransactionActive>( in ProcessAnnotationValue() 651 new_array->AsFloatArray()->SetWithoutChecks<kTransactionActive>( in ProcessAnnotationValue() 655 new_array->AsDoubleArray()->SetWithoutChecks<kTransactionActive>( in ProcessAnnotationValue() 659 new_array->AsBooleanArray()->SetWithoutChecks<kTransactionActive>( in ProcessAnnotationValue() [all …]
|
/art/runtime/interpreter/mterp/ |
D | nterp.cc | 547 new_array->AsIntArray()->SetWithoutChecks</* kTransactionActive= */ false>(i, regs[src_reg]); in DoFilledNewArray() 549 new_array->AsObjectArray<mirror::Object>()->SetWithoutChecks</* kTransactionActive= */ false>( in DoFilledNewArray()
|
D | mterp.cc | 493 array->SetWithoutChecks<false>(index, val); in MterpAputObject()
|
/art/runtime/interpreter/ |
D | interpreter_switch_impl-inl.h | 349 array->template SetWithoutChecks<transaction_active>(index, value); in HandleAPut() 984 array->SetWithoutChecks<transaction_active>(index, val); in APUT_OBJECT()
|
D | interpreter_common.cc | 1501 new_array->AsIntArray()->SetWithoutChecks<transaction_active>( in DoFilledNewArray() 1504 new_array->AsObjectArray<mirror::Object>()->SetWithoutChecks<transaction_active>( in DoFilledNewArray()
|
D | unstarted_runtime.cc | 1275 byte_array->SetWithoutChecks<true>(i + offset, *address); in UnstartedMemoryPeekArray()
|
/art/runtime/jni/ |
D | jni_internal.cc | 2088 result->SetWithoutChecks<false>(i, initial_object); in NewObjectArray()
|