Lines Matching refs:reply

51         Parcel data, reply;
54 remote()->transact(CREATE_METADATA_RETRIEVER, data, &reply);
55 return interface_cast<IMediaMetadataRetriever>(reply.readStrongBinder());
61 Parcel data, reply;
79 remote()->transact(CREATE_URL, data, &reply);
81 return interface_cast<IMediaPlayer>(reply.readStrongBinder());
86 Parcel data, reply;
89 remote()->transact(CREATE_MEDIA_RECORDER, data, &reply);
90 return interface_cast<IMediaRecorder>(reply.readStrongBinder());
96 Parcel data, reply;
105 remote()->transact(CREATE_FD, data, &reply);
107 return interface_cast<IMediaPlayer>(reply.readStrongBinder());;
112 Parcel data, reply;
115 remote()->transact(DECODE_URL, data, &reply);
116 *pSampleRate = uint32_t(reply.readInt32());
117 *pNumChannels = reply.readInt32();
118 *pFormat = reply.readInt32();
119 return interface_cast<IMemory>(reply.readStrongBinder());
124 Parcel data, reply;
129 remote()->transact(DECODE_FD, data, &reply);
130 *pSampleRate = uint32_t(reply.readInt32());
131 *pNumChannels = reply.readInt32();
132 *pFormat = reply.readInt32();
133 return interface_cast<IMemory>(reply.readStrongBinder());
137 Parcel data, reply;
139 remote()->transact(GET_OMX, data, &reply);
140 return interface_cast<IOMX>(reply.readStrongBinder());
149 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
153 CHECK_INTERFACE(IMediaPlayerService, data, reply);
171 reply->writeStrongBinder(player->asBinder());
175 CHECK_INTERFACE(IMediaPlayerService, data, reply);
184 reply->writeStrongBinder(player->asBinder());
188 CHECK_INTERFACE(IMediaPlayerService, data, reply);
194 reply->writeInt32(sampleRate);
195 reply->writeInt32(numChannels);
196 reply->writeInt32(format);
197 reply->writeStrongBinder(player->asBinder());
201 CHECK_INTERFACE(IMediaPlayerService, data, reply);
209 reply->writeInt32(sampleRate);
210 reply->writeInt32(numChannels);
211 reply->writeInt32(format);
212 reply->writeStrongBinder(player->asBinder());
216 CHECK_INTERFACE(IMediaPlayerService, data, reply);
219 reply->writeStrongBinder(recorder->asBinder());
223 CHECK_INTERFACE(IMediaPlayerService, data, reply);
226 reply->writeStrongBinder(retriever->asBinder());
230 CHECK_INTERFACE(IMediaPlayerService, data, reply);
232 reply->writeStrongBinder(omx->asBinder());
236 return BBinder::onTransact(code, data, reply, flags);