Home
last modified time | relevance | path

Searched refs:expected_type (Results 1 – 14 of 14) sorted by relevance

/aosp12/system/update_engine/cros/
H A Dconnection_manager_unittest.cc77 ConnectionType expected_type);
79 void TestWithServiceDisconnected(ConnectionType expected_type);
143 ConnectionType expected_type) { in TestWithServiceType() argument
153 EXPECT_EQ(expected_type, type); in TestWithServiceType()
173 ConnectionType expected_type) { in TestWithServiceDisconnected() argument
179 EXPECT_EQ(expected_type, type); in TestWithServiceDisconnected()
/aosp12/bionic/libc/bionic/
H A Dfdsan.cpp253 const char* expected_type = android_fdsan_get_tag_type(expected_tag); in android_fdsan_close_with_tag() local
261 fd, expected_type, expected_owner, actual_type, actual_owner); in android_fdsan_close_with_tag()
266 fd, expected_type, expected_owner); in android_fdsan_close_with_tag()
/aosp12/art/runtime/
H A Dcommon_throws.cc260 void ThrowIncompatibleClassChangeError(InvokeType expected_type, InvokeType found_type, in ThrowIncompatibleClassChangeError() argument
264 << expected_type << " but instead was found to be of type " << found_type; in ThrowIncompatibleClassChangeError()
822 void ThrowWrongMethodTypeException(ObjPtr<mirror::MethodType> expected_type, in ThrowWrongMethodTypeException() argument
824 ThrowWrongMethodTypeException(expected_type->PrettyDescriptor(), actual_type->PrettyDescriptor()); in ThrowWrongMethodTypeException()
H A Dcommon_throws.h131 void ThrowIncompatibleClassChangeError(InvokeType expected_type,
/aosp12/hardware/google/camera/common/hal/utils/
H A Dhal_camera_metadata.h137 bool IsTypeValid(uint32_t tag, int32_t expected_type);
H A Dhal_camera_metadata.cc207 bool HalCameraMetadata::IsTypeValid(uint32_t tag, int32_t expected_type) { in IsTypeValid() argument
213 if (type != expected_type) { in IsTypeValid()
215 __FUNCTION__, type, tag, expected_type); in IsTypeValid()
/aosp12/system/update_engine/payload_generator/
H A Dab_generator_unittest.cc125 InstallOperation::Type expected_type = in TestSplitReplaceOrReplaceXzOperation() local
132 EXPECT_EQ(expected_type, first_op.type()); in TestSplitReplaceOrReplaceXzOperation()
162 EXPECT_EQ(expected_type, second_op.type()); in TestSplitReplaceOrReplaceXzOperation()
H A Ddelta_diff_utils_unittest.cc224 const InstallOperation::Type expected_type = in TEST_F() local
226 EXPECT_EQ(expected_type, op.type()); in TEST_F()
/aosp12/packages/modules/adb/pairing_connection/
H A Dpairing_connection.cpp261 bool PairingConnectionCtx::CheckHeaderType(adb::proto::PairingPacket::Type expected_type, in CheckHeaderType() argument
263 uint8_t expected = *reinterpret_cast<uint8_t*>(&expected_type); in CheckHeaderType()
/aosp12/frameworks/base/cmds/idmap2/tests/
H A DIdmapTests.cpp51 #define ASSERT_TARGET_INLINE_ENTRY(entry, target_resid, expected_type, expected_value) \ argument
53 ASSERT_EQ((entry).value.data_type, (expected_type)); \
/aosp12/art/compiler/optimizing/
H A Dload_store_elimination.cc707 DataType::Type expected_type) { in FindOrAddTypeConversionIfNecessary() argument
709 if (expected_type == DataType::Type::kBool || in FindOrAddTypeConversionIfNecessary()
710 DataType::IsTypeConversionImplicit(value->GetType(), expected_type) || in FindOrAddTypeConversionIfNecessary()
720 use.GetUser()->GetType() == expected_type && in FindOrAddTypeConversionIfNecessary()
740 expected_type, value, instruction->GetDexPc()); in FindOrAddTypeConversionIfNecessary()
/aosp12/art/runtime/dex/
H A Ddex_file_annotations.cc815 uint32_t expected_type) in GetAnnotationValue() argument
838 if (annotation_value.type_ != expected_type) { in GetAnnotationValue()
/aosp12/packages/modules/NeuralNetworks/driver/sample/
H A DSampleDriverFloatXNNPACK.cpp421 static V1_3::ErrorStatus CheckTensorType(OperandType tensor_type, OperandType expected_type) { in CheckTensorType() argument
422 if (tensor_type != expected_type) { in CheckTensorType()
/aosp12/art/runtime/verifier/
H A Dmethod_verifier.cc4384 const RegType& expected_type = reg_types_.GetComponentType(res_type, class_loader_.Get()); in VerifyNewArray() local
4392 if (!work_line_->VerifyRegisterType(this, get_reg, expected_type)) { in VerifyNewArray()