Lines Matching refs:reply

60         Parcel data, reply;
62 remote()->transact(CREATE_METADATA_RETRIEVER, data, &reply);
63 return interface_cast<IMediaMetadataRetriever>(reply.readStrongBinder());
68 Parcel data, reply;
73 remote()->transact(CREATE, data, &reply);
74 return interface_cast<IMediaPlayer>(reply.readStrongBinder());
79 Parcel data, reply;
82 remote()->transact(CREATE_MEDIA_RECORDER, data, &reply);
83 return interface_cast<IMediaRecorder>(reply.readStrongBinder());
87 Parcel data, reply;
89 remote()->transact(GET_OMX, data, &reply);
90 return interface_cast<IOMX>(reply.readStrongBinder());
94 Parcel data, reply;
97 remote()->transact(MAKE_HDCP, data, &reply);
98 return interface_cast<IHDCP>(reply.readStrongBinder());
102 Parcel data, reply;
105 remote()->transact(ADD_BATTERY_DATA, data, &reply);
108 virtual status_t pullBatteryData(Parcel* reply) {
111 return remote()->transact(PULL_BATTERY_DATA, data, reply);
117 Parcel data, reply;
122 remote()->transact(LISTEN_FOR_REMOTE_DISPLAY, data, &reply);
123 return interface_cast<IRemoteDisplay>(reply.readStrongBinder());
127 Parcel data, reply;
129 remote()->transact(GET_CODEC_LIST, data, &reply);
130 return interface_cast<IMediaCodecList>(reply.readStrongBinder());
139 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
143 CHECK_INTERFACE(IMediaPlayerService, data, reply);
148 reply->writeStrongBinder(IInterface::asBinder(player));
152 CHECK_INTERFACE(IMediaPlayerService, data, reply);
155 reply->writeStrongBinder(IInterface::asBinder(recorder));
159 CHECK_INTERFACE(IMediaPlayerService, data, reply);
161 reply->writeStrongBinder(IInterface::asBinder(retriever));
165 CHECK_INTERFACE(IMediaPlayerService, data, reply);
167 reply->writeStrongBinder(IInterface::asBinder(omx));
171 CHECK_INTERFACE(IMediaPlayerService, data, reply);
174 reply->writeStrongBinder(IInterface::asBinder(hdcp));
178 CHECK_INTERFACE(IMediaPlayerService, data, reply);
184 CHECK_INTERFACE(IMediaPlayerService, data, reply);
185 pullBatteryData(reply);
189 CHECK_INTERFACE(IMediaPlayerService, data, reply);
194 reply->writeStrongBinder(NULL);
199 reply->writeStrongBinder(IInterface::asBinder(display));
203 CHECK_INTERFACE(IMediaPlayerService, data, reply);
205 reply->writeStrongBinder(IInterface::asBinder(mcl));
209 return BBinder::onTransact(code, data, reply, flags);