HomeSort by relevance Sort by last modified time
    Searched refs:replyID (Results 1 - 17 of 17) sorted by null

  /frameworks/av/media/libstagefright/
MediaCodec.cpp 176 void MediaCodec::PostReplyWithError(int32_t replyID, int32_t err) {
179 response->postReply(replyID);
643 bool MediaCodec::handleDequeueInputBuffer(uint32_t replyID, bool newRequest) {
646 PostReplyWithError(replyID, INVALID_OPERATION);
649 PostReplyWithError(replyID, getStickyError());
662 response->postReply(replyID);
667 bool MediaCodec::handleDequeueOutputBuffer(uint32_t replyID, bool newRequest) {
718 response->postReply(replyID);
    [all...]
MediaCodecSource.cpp 185 uint32_t replyID;
186 CHECK(msg->senderAwaitsResponse(&replyID));
187 response->postReply(replyID);
771 uint32_t replyID;
772 CHECK(msg->senderAwaitsResponse(&replyID));
780 response->postReply(replyID);
787 uint32_t replyID;
788 CHECK(msg->senderAwaitsResponse(&replyID));
794 (new AMessage)->postReply(replyID);
798 mStopReplyIDQueue.push_back(replyID);
    [all...]
  /frameworks/av/media/libstagefright/foundation/
ALooperRoster.cpp 174 uint32_t replyID = mNextReplyID++;
176 msg->setInt32("replyID", replyID);
181 while ((index = mReplies.indexOfKey(replyID)) < 0) {
191 void ALooperRoster::postReply(uint32_t replyID, const sp<AMessage> &reply) {
194 CHECK(mReplies.indexOfKey(replyID) < 0);
195 mReplies.add(replyID, reply);
AMessage.cpp 333 void AMessage::postReply(uint32_t replyID) {
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/
SimplePlayer.cpp 119 uint32_t replyID;
120 CHECK(msg->senderAwaitsResponse(&replyID));
124 response->postReply(replyID);
142 uint32_t replyID;
143 CHECK(msg->senderAwaitsResponse(&replyID));
147 response->postReply(replyID);
164 uint32_t replyID;
165 CHECK(msg->senderAwaitsResponse(&replyID));
169 response->postReply(replyID);
197 uint32_t replyID;
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDecoderBase.cpp 139 uint32_t replyID;
140 CHECK(msg->senderAwaitsResponse(&replyID));
147 (new AMessage)->postReply(replyID);
GenericSource.cpp 921 uint32_t replyID;
922 CHECK(msg->senderAwaitsResponse(&replyID));
923 response->postReply(replyID);
1023 uint32_t replyID;
1024 CHECK(msg->senderAwaitsResponse(&replyID));
1025 response->postReply(replyID);
    [all...]
NuPlayer.cpp 404 uint32_t replyID;
405 CHECK(msg->senderAwaitsResponse(&replyID));
434 response->postReply(replyID);
457 uint32_t replyID;
458 CHECK(msg->senderAwaitsResponse(&replyID));
459 response->postReply(replyID);
465 uint32_t replyID;
466 CHECK(msg->senderAwaitsResponse(&replyID));
509 response->postReply(replyID);
    [all...]
RTSPSource.cpp 314 uint32_t replyID;
315 CHECK(msg->senderAwaitsResponse(&replyID));
317 mDisconnectReplyID = replyID;
NuPlayerRenderer.cpp 359 uint32_t replyID;
360 CHECK(msg->senderAwaitsResponse(&replyID));
361 response->postReply(replyID);
368 uint32_t replyID;
369 CHECK(msg->senderAwaitsResponse(&replyID));
374 response->postReply(replyID);
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/source/
MediaPuller.cpp 108 uint32_t replyID;
109 CHECK(msg->senderAwaitsResponse(&replyID));
110 response->postReply(replyID);
WifiDisplaySource.cpp 137 uint32_t replyID;
138 CHECK(msg->senderAwaitsResponse(&replyID));
179 response->postReply(replyID);
324 uint32_t replyID;
325 CHECK(msg->senderAwaitsResponse(&replyID));
338 response->postReply(replyID);
344 uint32_t replyID;
345 CHECK(msg->senderAwaitsResponse(&replyID));
358 response->postReply(replyID);
    [all...]
  /frameworks/av/include/media/stagefright/foundation/
ALooperRoster.h 41 void postReply(uint32_t replyID, const sp<AMessage> &reply);
AMessage.h 86 // 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);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
PacketDispatcher.java 542 int replyID = replyPacket.getId();
545 if (replyID >= begCommandId) {
546 if ((replyID - begCommandId) < commandsNumberForTrace) {
549 + replyID);
  /frameworks/av/include/media/stagefright/
MediaCodec.h 270 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/
NdkMediaCodec.cpp 119 uint32_t replyID;
120 msg->senderAwaitsResponse(&replyID);
126 response->postReply(replyID);

Completed in 711 milliseconds