Home
last modified time | relevance | path

Searched refs:TypeCode (Results 1 – 6 of 6) sorted by relevance

/frameworks/native/libs/binder/include/binder/
DTextOutput.h85 class LIBBINDER_EXPORTED TypeCode {
87 inline explicit TypeCode(uint32_t code);
88 inline ~TypeCode();
96 LIBBINDER_EXPORTED std::ostream& operator<<(std::ostream& to, const TypeCode& val);
178 inline TypeCode::TypeCode(uint32_t code) : mCode(code) { } in TypeCode() function
179 inline TypeCode::~TypeCode() { } in ~TypeCode()
180 inline uint32_t TypeCode::typeCode() const { return mCode; } in typeCode()
/frameworks/native/libs/binder/tests/unit_fuzzers/
DTextOutputFuzz.cpp52 android::TypeCode input(fdp.ConsumeIntegral<uint32_t>()); in LLVMFuzzerTestOneInput()
/frameworks/native/libs/binder/
DTextOutput.cpp45 std::ostream& operator<<(std::ostream& to, const TypeCode& val) { in operator <<()
DIPCThreadState.cpp135 << "\tcode=" << TypeCode(btd->code) << ", flags=" << (void*)(uint64_t)btd->flags << "\n" in printBinderTransactionData()
821 << " / code " << TypeCode(code) << ": \t" << data << "\n"; in transact()
1393 << tr.target.ptr << " / code " << TypeCode(tr.code) << ": \t" << buffer in executeCommand()
DParcel.cpp2846 << TypeCode(flat->hdr.type & 0x7f7f7f00) << " = " << flat->binder; in print()
/frameworks/native/libs/binder/tests/
DbinderTextOutputTest.cpp118 android::TypeCode val(1234); in TEST()