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 TypeCode
88 inline explicit TypeCode(uint32_t code);
89 inline ~TypeCode();
97 TextOutput& operator<<(TextOutput& to, const TypeCode& val);
180 inline TypeCode::TypeCode(uint32_t code) : mCode(code) { } in TypeCode() function
181 inline TypeCode::~TypeCode() { } in ~TypeCode()
182 inline uint32_t TypeCode::typeCode() const { return mCode; } in typeCode()
/frameworks/native/libs/binder/tests/unit_fuzzers/
DTextOutputFuzz.cpp51 android::TypeCode input(fdp.ConsumeIntegral<uint32_t>()); in LLVMFuzzerTestOneInput()
/frameworks/native/libs/binder/
DTextOutput.cpp45 TextOutput& operator<<(TextOutput& to, const TypeCode& val) in operator <<()
DIPCThreadState.cpp139 << "code=" << TypeCode(btd->code) << ", flags=" << (void*)(uint64_t)btd->flags << endl in printBinderTransactionData()
698 << handle << " / code " << TypeCode(code) << ": " in transact()
1258 << TypeCode(tr.code) << ": " << indent << buffer in executeCommand()
DParcel.cpp2174 << TypeCode(flat->hdr.type & 0x7f7f7f00) in print()
/frameworks/native/libs/binder/tests/
DbinderTextOutputTest.cpp117 android::TypeCode val(1234); in TEST()