Home | History | Annotate | Download | only in gui

Lines Matching refs:reply

56         Parcel data, reply;
63 remote()->transact(CREATE_SURFACE, data, &reply);
64 *handle = reply.readStrongBinder();
65 *gbp = interface_cast<IGraphicBufferProducer>(reply.readStrongBinder());
66 return reply.readInt32();
70 Parcel data, reply;
73 remote()->transact(DESTROY_SURFACE, data, &reply);
74 return reply.readInt32();
83 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
87 CHECK_INTERFACE(ISurfaceComposerClient, data, reply);
97 reply->writeStrongBinder(handle);
98 reply->writeStrongBinder(gbp->asBinder());
99 reply->writeInt32(result);
103 CHECK_INTERFACE(ISurfaceComposerClient, data, reply);
104 reply->writeInt32( destroySurface( data.readStrongBinder() ) );
108 return BBinder::onTransact(code, data, reply, flags);