Home
last modified time | relevance | path

Searched refs:dest_type (Results 1 – 9 of 9) sorted by relevance

/aosp12/art/runtime/entrypoints/quick/
H A Dquick_throw_entrypoints.cc113 extern "C" NO_RETURN void artThrowClassCastException(mirror::Class* dest_type, in artThrowClassCastException() argument
118 if (dest_type == nullptr) { in artThrowClassCastException()
129 dest_type = linker->LookupResolvedType(type_index, visitor.caller).Ptr(); in artThrowClassCastException()
130 CHECK(dest_type != nullptr) << "Target class should have been previously resolved: " in artThrowClassCastException()
132 CHECK(!dest_type->IsAssignableFrom(src_type)) in artThrowClassCastException()
133 << " " << std::hex << dest_type->PrettyDescriptor() << ";" << dest_type->Depth() in artThrowClassCastException()
134 << "/" << dest_type->GetField32(mirror::Class::StatusOffset()) in artThrowClassCastException()
138 DCHECK(!dest_type->IsAssignableFrom(src_type)); in artThrowClassCastException()
139 ThrowClassCastException(dest_type, src_type); in artThrowClassCastException()
144 mirror::Class* dest_type, in artThrowClassCastExceptionForObject() argument
[all …]
/aosp12/system/nfc/src/nfc/nfc/
H A Dnfc_main.cc995 tNFC_STATUS NFC_ConnCreate(uint8_t dest_type, uint8_t id, uint8_t protocol, in NFC_ConnCreate() argument
1006 if (dest_type == NCI_DEST_TYPE_NFCEE) { in NFC_ConnCreate()
1013 } else if (dest_type == NCI_DEST_TYPE_REMOTE) { in NFC_ConnCreate()
1019 } else if (dest_type == NCI_DEST_TYPE_NFCC) { in NFC_ConnCreate()
1026 status = nci_snd_core_conn_create(dest_type, num_tlv, tlv_size, param_tlvs); in NFC_ConnCreate()
1393 evt_data.conn_create.dest_type = NCI_DEST_TYPE_NFCEE; in NFC_SetStaticHciCback()
H A Dnfc_ncif.cc1585 uint8_t dest_type) { in nfc_ncif_proc_conn_create_rsp() argument
1605 evt_data.conn_create.dest_type = dest_type; in nfc_ncif_proc_conn_create_rsp()
/aosp12/system/nfc/src/nfc/include/
H A Dnci_hmsgs.h47 uint8_t nci_snd_core_conn_create(uint8_t dest_type, uint8_t num_tlv,
H A Dnfc_int.h283 uint8_t dest_type);
H A Dnfc_api.h330 uint8_t dest_type; /* the destination type */ member
1021 extern tNFC_STATUS NFC_ConnCreate(uint8_t dest_type, uint8_t id,
/aosp12/art/runtime/
H A Dcommon_throws.cc153 void ThrowClassCastException(ObjPtr<mirror::Class> dest_type, ObjPtr<mirror::Class> src_type) { in ThrowClassCastException() argument
154 DumpB77342775DebugData(dest_type, src_type); in ThrowClassCastException()
158 mirror::Class::PrettyDescriptor(dest_type).c_str()).c_str()); in ThrowClassCastException()
H A Dcommon_throws.h78 void ThrowClassCastException(ObjPtr<mirror::Class> dest_type, ObjPtr<mirror::Class> src_type)
/aosp12/system/nfc/src/nfc/nci/
H A Dnci_hmsgs.cc187 uint8_t nci_snd_core_conn_create(uint8_t dest_type, uint8_t num_tlv, in nci_snd_core_conn_create() argument
205 UINT8_TO_STREAM(pp, dest_type); in nci_snd_core_conn_create()