Home
last modified time | relevance | path

Searched refs:ParcelType (Results 1 – 3 of 3) sorted by relevance

/system/tools/aidl/
Dgenerate_java_binder.cpp99 this->transact_data = new Variable(types->ParcelType(), "data"); in StubClass()
100 this->transact_reply = new Variable(types->ParcelType(), "reply"); in StubClass()
399 Variable* _data = new Variable(types->ParcelType(), "_data"); in generate_method()
401 _data, new MethodCall(types->ParcelType(), "obtain"))); in generate_method()
404 _reply = new Variable(types->ParcelType(), "_reply"); in generate_method()
406 _reply, new MethodCall(types->ParcelType(), "obtain"))); in generate_method()
Dtype_java.cpp480 ParcelType::ParcelType(const JavaTypeNamespace* types) in ParcelType() function in android::aidl::java::ParcelType
484 void ParcelType::WriteToParcel(StatementBlock* addTo, Variable* v, in WriteToParcel()
489 void ParcelType::CreateFromParcel(StatementBlock* addTo, Variable* v, in CreateFromParcel()
842 m_parcel_type = new class ParcelType(this); in Init()
Dtype_java.h303 class ParcelType : public Type {
305 explicit ParcelType(const JavaTypeNamespace* types);
462 const Type* ParcelType() const { return m_parcel_type; } in ParcelType() function