Searched defs:reply (Results 51 - 75 of 164) sorted by path

1234567

/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DHTTPLiveSource.cpp342 sp<AMessage> reply; local
343 CHECK(msg->findMessage("reply", &reply));
349 notify->setMessage("reply", reply);
H A DNuPlayer.cpp431 Parcel* reply, const sp<AMessage> format) const {
464 reply->writeInt32(2); // write something non-zero
465 reply->writeInt32(trackType);
466 reply->writeString16(String16(mime.c_str()));
467 reply->writeString16(String16(lang.c_str()));
475 reply->writeInt32(isAuto);
476 reply->writeInt32(isDefault);
477 reply->writeInt32(isForced);
518 Parcel* reply; local
519 CHECK(msg->findPointer("reply", (voi
430 writeTrackInfo( Parcel* reply, const sp<AMessage> format) const argument
560 Parcel* reply; local
951 sp<AMessage> reply; local
1800 queueDecoderShutdown( bool audio, bool video, const sp<AMessage> &reply) argument
2112 sp<AMessage> reply; local
2299 sp<AMessage> reply; local
2451 notifyInstantiateSecureDecoders(const sp<AMessage> &reply) argument
[all...]
H A DNuPlayerDecoder.cpp313 sp<AMessage> reply = new AMessage(kWhatCodecNotify, this); local
314 mCodec->setCallback(reply);
578 sp<AMessage> reply = new AMessage(kWhatRenderBuffer, this); local
579 reply->setSize("buffer-ix", index);
580 reply->setInt32("generation", mBufferGeneration);
586 reply->setInt32("eos", true);
592 reply->post();
606 mRenderer->queueBuffer(mIsAudio, buffer, reply);
672 sp<AMessage> reply = new AMessage(kWhatCodecNotify, this); local
673 reply
684 fetchInputData(sp<AMessage> &reply) argument
[all...]
H A DNuPlayerDecoderPassThrough.cpp219 status_t NuPlayer::DecoderPassThrough::fetchInputData(sp<AMessage> &reply) { argument
267 reply->setInt32("err", err);
281 reply->setBuffer("buffer", accessUnit);
342 sp<AMessage> reply = new AMessage(kWhatBufferConsumed, this); local
343 reply->setInt32("generation", mBufferGeneration);
344 reply->setInt32("size", bufferSize);
346 mRenderer->queueBuffer(true /* audio */, buffer, reply);
H A DNuPlayerDriver.cpp509 status_t NuPlayerDriver::invoke(const Parcel &request, Parcel *reply) { argument
510 if (reply == NULL) {
511 ALOGE("reply is a NULL pointer");
531 return mPlayer->getTrackInfo(reply);
552 return mPlayer->getSelectedTrack(type, reply);
572 status_t NuPlayerDriver::getParameter(int /* key */, Parcel * /* reply */) {
/frameworks/av/media/libstagefright/
H A DACodec.cpp5652 sp<AMessage> reply = new AMessage(kWhatInputBufferFilled, mCodec); local
5653 reply->setInt32("buffer-id", info->mBufferID);
5655 notify->setMessage("reply", reply);
6014 sp<AMessage> reply = local
6022 mCodec->addKeyFormatChangesToRenderBufferNotification(reply);
6027 mCodec->addKeyFormatChangesToRenderBufferNotification(reply);
6077 reply->setInt32("buffer-id", info->mBufferID);
6079 notify->setMessage("reply", reply);
7180 sp<AMessage> reply; local
[all...]
H A DMediaCodec.cpp1932 // the previous stop/release completes and then reply with OK.
2415 CHECK(msg->findMessage("reply", &info->mNotify));
2502 sp<AMessage> reply = info->mNotify; local
2557 reply->setBuffer("buffer", info->mData);
2558 reply->post();
/frameworks/av/media/libstagefright/filters/
H A DMediaFilter.cpp319 sp<AMessage> reply = new AMessage(kWhatInputBufferFilled, this); local
320 reply->setInt32("buffer-id", info->mBufferID);
322 notify->setMessage("reply", reply);
339 sp<AMessage> reply = new AMessage(kWhatOutputBufferDrained, this); local
340 reply->setInt32("buffer-id", info->mBufferID);
342 notify->setMessage("reply", reply);
749 sp<AMessage> reply = mNotify->dup(); local
750 reply
[all...]
/frameworks/av/media/libstagefright/foundation/
H A DALooper.cpp252 status_t ALooper::postReply(const sp<AReplyToken> &replyToken, const sp<AMessage> &reply) { argument
254 status_t err = replyToken->setReply(reply);
H A DAMessage.cpp40 status_t AReplyToken::setReply(const sp<AMessage> &reply) { argument
42 ALOGE("trying to post a duplicate reply");
46 mReply = reply;
377 ALOGE("failed to create reply token");
388 ALOGW("failed to post reply to a NULL token");
393 ALOGW("failed to post reply as target looper is gone.");
/frameworks/av/media/libstagefright/rtsp/
H A DARTSPConnection.cpp70 void ARTSPConnection::connect(const char *url, const sp<AMessage> &reply) { argument
73 msg->setMessage("reply", reply);
77 void ARTSPConnection::disconnect(const sp<AMessage> &reply) { argument
79 msg->setMessage("reply", reply);
84 const char *request, const sp<AMessage> &reply) {
87 msg->setMessage("reply", reply);
91 void ARTSPConnection::observeBinaryData(const sp<AMessage> &reply) { argument
83 sendRequest( const char *request, const sp<AMessage> &reply) argument
231 sp<AMessage> reply; local
339 sp<AMessage> reply; local
348 sp<AMessage> reply; local
409 sp<AMessage> reply; local
512 sp<AMessage> reply = mPendingRequests.valueAt(i); local
743 sp<AMessage> reply = mPendingRequests.valueAt(i); local
879 sp<AMessage> reply = mPendingRequests.valueAt(i); local
[all...]
H A DMyHandler.h180 sp<AMessage> reply = new AMessage('conn', this); local
181 mConn->connect(mOriginalSessionURL.c_str(), reply);
191 sp<AMessage> reply = new AMessage('sdpl', this); local
192 reply->setObject("description", desc);
193 mConn->connect(mOriginalSessionURL.c_str(), reply);
468 sp<AMessage> reply = new AMessage('desc', this); local
469 mConn->sendRequest(request.c_str(), reply);
482 sp<AMessage> reply = new AMessage('conn', this); local
483 mConn->connect(mOriginalSessionURL.c_str(), reply);
528 sp<AMessage> reply local
600 sp<AMessage> reply = new AMessage('disc', this); local
645 sp<AMessage> reply = new AMessage('disc', this); local
783 sp<AMessage> reply = new AMessage('play', this); local
786 sp<AMessage> reply = new AMessage('disc', this); local
819 sp<AMessage> reply = new AMessage('disc', this); local
845 sp<AMessage> reply = new AMessage('opts', this); local
908 sp<AMessage> reply = new AMessage('tear', this); local
940 sp<AMessage> reply = new AMessage('disc', this); local
1125 sp<AMessage> reply = new AMessage('pau2', this); local
1162 sp<AMessage> reply = new AMessage('res2', this); local
1229 sp<AMessage> reply = new AMessage('see0', this); local
1309 sp<AMessage> reply = new AMessage('see2', this); local
1641 sp<AMessage> reply = new AMessage('setu', this); local
1728 sp<AMessage> reply = new AMessage('setu', this); local
[all...]
H A DMyTransmitter.h104 sp<AMessage> reply = new AMessage('conn', this); local
105 mConn->connect(mServerURL.c_str(), reply);
235 sp<AMessage> reply = new AMessage('anno', this); local
236 mConn->sendRequest(request.c_str(), reply);
420 sp<AMessage> reply = new AMessage('setu', this); local
421 mConn->sendRequest(request.c_str(), reply);
541 sp<AMessage> reply = new AMessage('reco', this); local
542 mConn->sendRequest(request.c_str(), reply);
592 sp<AMessage> reply = new AMessage('opts', this); local
593 mConn->sendRequest(request.c_str(), reply);
708 sp<AMessage> reply = new AMessage('paus', this); local
759 sp<AMessage> reply = new AMessage('tear', this); local
[all...]
/frameworks/av/media/utils/
H A DISchedulingPolicyService.cpp42 Parcel data, reply; local
48 status_t status = remote()->transact(REQUEST_PRIORITY_TRANSACTION, data, &reply, flags);
56 if (reply.readExceptionCode() != 0) {
59 return reply.readInt32();
68 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
76 return BBinder::onTransact(code, data, reply, flags);
67 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/av/radio/
H A DIRadio.cpp55 Parcel data, reply; local
57 remote()->transact(DETACH, data, &reply);
62 Parcel data, reply; local
68 status_t status = remote()->transact(SET_CONFIGURATION, data, &reply);
70 status = (status_t)reply.readInt32();
77 Parcel data, reply; local
82 status_t status = remote()->transact(GET_CONFIGURATION, data, &reply);
84 status = (status_t)reply.readInt32();
86 reply.read(config, sizeof(struct radio_band_config));
94 Parcel data, reply; local
106 Parcel data, reply; local
124 Parcel data, reply; local
137 Parcel data, reply; local
150 Parcel data, reply; local
163 Parcel data, reply; local
174 Parcel data, reply; local
208 Parcel data, reply; local
228 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
[all...]
H A DIRadioClient.cpp43 Parcel data, reply; local
48 &reply);
58 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
62 CHECK_INTERFACE(IRadioClient, data, reply);
69 return BBinder::onTransact(code, data, reply, flags);
57 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DIRadioService.cpp59 Parcel data, reply; local
63 status_t status = remote()->transact(LIST_MODULES, data, &reply);
65 status = (status_t)reply.readInt32();
66 *numModules = (unsigned int)reply.readInt32();
74 reply.read(properties, numModulesReq * sizeof(struct radio_properties));
86 Parcel data, reply; local
99 status_t status = remote()->transact(ATTACH, data, &reply);
103 status = reply.readInt32();
104 if (reply.readInt32() != 0) {
105 radio = interface_cast<IRadio>(reply
115 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
[all...]
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp1740 char *reply = dev->get_parameters(dev, AUDIO_PARAMETER_HW_AV_SYNC); local
1741 AudioParameter param = AudioParameter(String8(reply));
1742 free(reply);
3111 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
3113 return BnAudioFlinger::onTransact(code, data, reply, flags);
3110 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DEffects.cpp1241 int reply; local
1262 &reply);
1266 *(int *)pReplyData = reply;
1268 } else if (reply != NO_ERROR) {
1269 *(int *)pReplyData = reply;
1321 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
1323 return BnEffect::onTransact(code, data, reply, flags);
1320 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DTracks.cpp328 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
330 return BnAudioTrack::onTransact(code, data, reply, flags);
1453 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
1455 return BnAudioRecord::onTransact(code, data, reply, flags);
327 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
1452 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/av/services/audiopolicy/managerdefault/
H A DAudioPolicyManager.cpp5400 String8 reply; local
5405 reply = mpClientInterface->getParameters(ioHandle,
5407 ALOGV("%s: supported formats %s", __FUNCTION__, reply.string());
5408 AudioParameter repliedParameters(reply);
5410 String8(AUDIO_PARAMETER_STREAM_SUP_FORMATS), reply) != NO_ERROR) {
5414 FormatVector formats = formatsFromString(reply.string());
5430 reply = mpClientInterface->getParameters(ioHandle,
5433 ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string());
5434 AudioParameter repliedParameters(reply);
5436 String8(AUDIO_PARAMETER_STREAM_SUP_SAMPLING_RATES), reply)
[all...]
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyService.cpp427 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
429 return BnAudioPolicyService::onTransact(code, data, reply, flags);
426 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.cpp1934 status_t CameraService::onTransact(uint32_t code, const Parcel& data, Parcel* reply, argument
1958 return BnCameraService::onTransact(code, data, reply, flags);
/frameworks/av/services/mediacodec/
H A DMediaCodecService.cpp37 status_t MediaCodecService::onTransact(uint32_t code, const Parcel& data, Parcel* reply, argument
40 return BnMediaCodecService::onTransact(code, data, reply, flags);
/frameworks/av/services/mediaextractor/
H A DMediaExtractorService.cpp52 status_t MediaExtractorService::onTransact(uint32_t code, const Parcel& data, Parcel* reply, argument
55 return BnMediaExtractorService::onTransact(code, data, reply, flags);

Completed in 439 milliseconds

1234567