Home
last modified time | relevance | path

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

/frameworks/native/libs/binder/include/binder/
DTextOutput.h86 class TypeCode
89 inline explicit TypeCode(uint32_t code);
90 inline ~TypeCode();
98 TextOutput& operator<<(TextOutput& to, const TypeCode& val);
181 inline TypeCode::TypeCode(uint32_t code) : mCode(code) { } in TypeCode() function
182 inline TypeCode::~TypeCode() { } in ~TypeCode()
183 inline uint32_t TypeCode::typeCode() const { return mCode; } in typeCode()
/frameworks/native/libs/binder/
DTextOutput.cpp45 TextOutput& operator<<(TextOutput& to, const TypeCode& val) in operator <<()
DIPCThreadState.cpp138 << "code=" << TypeCode(btd->code) << ", flags=" << (void*)(long)btd->flags << endl in printBinderTransactionData()
662 << handle << " / code " << TypeCode(code) << ": " in transact()
1206 << TypeCode(tr.code) << ": " << indent << buffer in executeCommand()
DParcel.cpp2540 << TypeCode(flat->hdr.type & 0x7f7f7f00) in print()
/frameworks/native/libs/binder/tests/
DbinderTextOutputTest.cpp118 android::TypeCode val(1234); in TEST()