Searched refs:replyID (Results 1 - 16 of 16) sorted by relevance

/frameworks/av/media/libstagefright/
H A DMediaCodec.cpp176 void MediaCodec::PostReplyWithError(int32_t replyID, int32_t err) { argument
179 response->postReply(replyID);
643 bool MediaCodec::handleDequeueInputBuffer(uint32_t replyID, bool newRequest) { argument
646 PostReplyWithError(replyID, INVALID_OPERATION);
649 PostReplyWithError(replyID, getStickyError());
662 response->postReply(replyID);
667 bool MediaCodec::handleDequeueOutputBuffer(uint32_t replyID, bool newRequest) { argument
718 response->postReply(replyID);
1191 uint32_t replyID; local
1192 CHECK(msg->senderAwaitsResponse(&replyID));
1227 uint32_t replyID; local
1259 uint32_t replyID; local
1316 uint32_t replyID; local
1332 uint32_t replyID; local
1358 uint32_t replyID; local
1406 uint32_t replyID; local
1467 uint32_t replyID; local
1486 uint32_t replyID; local
1541 uint32_t replyID; local
1560 uint32_t replyID; local
1578 uint32_t replyID; local
1612 uint32_t replyID; local
1638 uint32_t replyID; local
1675 uint32_t replyID; local
1691 uint32_t replyID; local
[all...]
H A DMediaCodecSource.cpp185 uint32_t replyID; local
186 CHECK(msg->senderAwaitsResponse(&replyID));
187 response->postReply(replyID);
771 uint32_t replyID; local
772 CHECK(msg->senderAwaitsResponse(&replyID));
780 response->postReply(replyID);
787 uint32_t replyID; local
788 CHECK(msg->senderAwaitsResponse(&replyID));
794 (new AMessage)->postReply(replyID);
798 mStopReplyIDQueue.push_back(replyID);
[all...]
/frameworks/av/media/libstagefright/foundation/
H A DALooperRoster.cpp174 uint32_t replyID = mNextReplyID++; local
176 msg->setInt32("replyID", replyID);
181 while ((index = mReplies.indexOfKey(replyID)) < 0) {
191 void ALooperRoster::postReply(uint32_t replyID, const sp<AMessage> &reply) { argument
194 CHECK(mReplies.indexOfKey(replyID) < 0);
195 mReplies.add(replyID, reply);
H A DAMessage.cpp333 void AMessage::postReply(uint32_t replyID) { argument
334 gLooperRoster.postReply(replyID, this);
337 bool AMessage::senderAwaitsResponse(uint32_t *replyID) const {
339 bool found = findInt32("replyID", &tmp);
345 *replyID = static_cast<uint32_t>(tmp);
/frameworks/av/cmds/stagefright/
H A DSimplePlayer.cpp119 uint32_t replyID; local
120 CHECK(msg->senderAwaitsResponse(&replyID));
124 response->postReply(replyID);
142 uint32_t replyID; local
143 CHECK(msg->senderAwaitsResponse(&replyID));
147 response->postReply(replyID);
164 uint32_t replyID; local
165 CHECK(msg->senderAwaitsResponse(&replyID));
169 response->postReply(replyID);
197 uint32_t replyID; local
220 uint32_t replyID; local
243 uint32_t replyID; local
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoderBase.cpp139 uint32_t replyID; local
140 CHECK(msg->senderAwaitsResponse(&replyID));
147 (new AMessage)->postReply(replyID);
H A DGenericSource.cpp882 uint32_t replyID; local
883 CHECK(msg->senderAwaitsResponse(&replyID));
884 response->postReply(replyID);
984 uint32_t replyID; local
985 CHECK(msg->senderAwaitsResponse(&replyID));
986 response->postReply(replyID);
1147 uint32_t replyID; local
1148 CHECK(msg->senderAwaitsResponse(&replyID));
1149 response->postReply(replyID);
1205 uint32_t replyID; local
1318 uint32_t replyID; local
[all...]
H A DNuPlayer.cpp404 uint32_t replyID; local
405 CHECK(msg->senderAwaitsResponse(&replyID));
434 response->postReply(replyID);
457 uint32_t replyID; local
458 CHECK(msg->senderAwaitsResponse(&replyID));
459 response->postReply(replyID);
465 uint32_t replyID; local
466 CHECK(msg->senderAwaitsResponse(&replyID));
509 response->postReply(replyID);
H A DRTSPSource.cpp314 uint32_t replyID; local
315 CHECK(msg->senderAwaitsResponse(&replyID));
317 mDisconnectReplyID = replyID;
H A DNuPlayerRenderer.cpp359 uint32_t replyID; local
360 CHECK(msg->senderAwaitsResponse(&replyID));
361 response->postReply(replyID);
368 uint32_t replyID; local
369 CHECK(msg->senderAwaitsResponse(&replyID));
374 response->postReply(replyID);
/frameworks/av/media/libstagefright/wifi-display/source/
H A DMediaPuller.cpp108 uint32_t replyID; local
109 CHECK(msg->senderAwaitsResponse(&replyID));
110 response->postReply(replyID);
H A DWifiDisplaySource.cpp137 uint32_t replyID; local
138 CHECK(msg->senderAwaitsResponse(&replyID));
179 response->postReply(replyID);
324 uint32_t replyID; local
325 CHECK(msg->senderAwaitsResponse(&replyID));
338 response->postReply(replyID);
344 uint32_t replyID; local
345 CHECK(msg->senderAwaitsResponse(&replyID));
358 response->postReply(replyID);
/frameworks/av/include/media/stagefright/foundation/
H A DALooperRoster.h41 void postReply(uint32_t replyID, const sp<AMessage> &reply);
H A DAMessage.h86 // awaiting a response, the "replyID" can be used to send the response
88 bool senderAwaitsResponse(uint32_t *replyID) const;
90 void postReply(uint32_t replyID);
/frameworks/av/include/media/stagefright/
H A DMediaCodec.h270 static void PostReplyWithError(int32_t replyID, int32_t err);
286 bool handleDequeueInputBuffer(uint32_t replyID, bool newRequest = false);
287 bool handleDequeueOutputBuffer(uint32_t replyID, bool newRequest = false);
/frameworks/av/media/ndk/
H A DNdkMediaCodec.cpp119 uint32_t replyID; local
120 msg->senderAwaitsResponse(&replyID);
126 response->postReply(replyID);

Completed in 238 milliseconds