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);
830 uint32_t replyID;
831 CHECK(msg->senderAwaitsResponse(&replyID));
839 response->postReply(replyID);
846 uint32_t replyID;
847 CHECK(msg->senderAwaitsResponse(&replyID));
853 (new AMessage)->postReply(replyID);
857 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/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/libmediaplayerservice/nuplayer/
GenericSource.cpp 713 uint32_t replyID;
714 CHECK(msg->senderAwaitsResponse(&replyID));
715 response->postReply(replyID);
815 uint32_t replyID;
816 CHECK(msg->senderAwaitsResponse(&replyID));
817 response->postReply(replyID);
968 uint32_t replyID;
969 CHECK(msg->senderAwaitsResponse(&replyID));
970 response->postReply(replyID);
1023 uint32_t replyID;
    [all...]
NuPlayerRenderer.cpp 305 uint32_t replyID;
306 CHECK(msg->senderAwaitsResponse(&replyID));
307 response->postReply(replyID);
314 uint32_t replyID;
315 CHECK(msg->senderAwaitsResponse(&replyID));
320 response->postReply(replyID);
    [all...]
NuPlayer.cpp 396 uint32_t replyID;
397 CHECK(msg->senderAwaitsResponse(&replyID));
426 response->postReply(replyID);
449 uint32_t replyID;
450 CHECK(msg->senderAwaitsResponse(&replyID));
451 response->postReply(replyID);
457 uint32_t replyID;
458 CHECK(msg->senderAwaitsResponse(&replyID));
499 response->postReply(replyID);
    [all...]
RTSPSource.cpp 327 uint32_t replyID;
328 CHECK(msg->senderAwaitsResponse(&replyID));
330 mDisconnectReplyID = replyID;
NuPlayerDecoder.cpp 607 uint32_t replyID;
608 CHECK(msg->senderAwaitsResponse(&replyID));
618 (new AMessage)->postReply(replyID);
    [all...]
  /frameworks/av/media/ndk/
NdkMediaCodec.cpp 119 uint32_t replyID;
120 msg->senderAwaitsResponse(&replyID);
126 response->postReply(replyID);

Completed in 458 milliseconds