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

  /frameworks/av/media/libstagefright/
MediaCodec.cpp 413 bool MediaCodec::handleDequeueInputBuffer(uint32_t replyID, bool newRequest) {
420 response->postReply(replyID);
434 response->postReply(replyID);
439 bool MediaCodec::handleDequeueOutputBuffer(uint32_t replyID, bool newRequest) {
489 response->postReply(replyID);
897 uint32_t replyID;
898 CHECK(msg->senderAwaitsResponse(&replyID));
904 response->postReply(replyID);
908 mReplyID = replyID;
936 uint32_t replyID;
    [all...]
  /frameworks/av/media/libstagefright/foundation/
ALooperRoster.cpp 160 uint32_t replyID = mNextReplyID++;
162 msg->setInt32("replyID", replyID);
172 while ((index = mReplies.indexOfKey(replyID)) < 0) {
182 void ALooperRoster::postReply(uint32_t replyID, const sp<AMessage> &reply) {
185 CHECK(mReplies.indexOfKey(replyID) < 0);
186 mReplies.add(replyID, reply);
AMessage.cpp 260 void AMessage::postReply(uint32_t replyID) {
261 gLooperRoster.postReply(replyID, this);
264 bool AMessage::senderAwaitsResponse(uint32_t *replyID) const {
266 bool found = findInt32("replyID", &tmp);
272 *replyID = static_cast<uint32_t>(tmp);
  /frameworks/av/cmds/stagefright/
SimplePlayer.cpp 118 uint32_t replyID;
119 CHECK(msg->senderAwaitsResponse(&replyID));
123 response->postReply(replyID);
141 uint32_t replyID;
142 CHECK(msg->senderAwaitsResponse(&replyID));
146 response->postReply(replyID);
163 uint32_t replyID;
164 CHECK(msg->senderAwaitsResponse(&replyID));
168 response->postReply(replyID);
196 uint32_t replyID;
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/source/
MediaPuller.cpp 105 uint32_t replyID;
106 CHECK(msg->senderAwaitsResponse(&replyID));
107 response->postReply(replyID);
WifiDisplaySource.cpp 131 uint32_t replyID;
132 CHECK(msg->senderAwaitsResponse(&replyID));
173 response->postReply(replyID);
318 uint32_t replyID;
319 CHECK(msg->senderAwaitsResponse(&replyID));
332 response->postReply(replyID);
338 uint32_t replyID;
339 CHECK(msg->senderAwaitsResponse(&replyID));
352 response->postReply(replyID);
    [all...]
  /frameworks/av/include/media/stagefright/foundation/
ALooperRoster.h 40 void postReply(uint32_t replyID, const sp<AMessage> &reply);
AMessage.h 83 // awaiting a response, the "replyID" can be used to send the response
85 bool senderAwaitsResponse(uint32_t *replyID) const;
87 void postReply(uint32_t replyID);
  /frameworks/av/include/media/stagefright/
MediaCodec.h 235 bool handleDequeueInputBuffer(uint32_t replyID, bool newRequest = false);
236 bool handleDequeueOutputBuffer(uint32_t replyID, bool newRequest = false);
  /frameworks/av/media/libstagefright/mp4/
FragmentedMP4Parser.cpp 513 uint32_t replyID;
514 CHECK(msg->senderAwaitsResponse(&replyID));
516 response->postReply(replyID);
543 uint32_t replyID;
544 CHECK(msg->senderAwaitsResponse(&replyID));
546 response->postReply(replyID);
569 uint32_t replyID;
570 CHECK(msg->senderAwaitsResponse(&replyID));
571 response->postReply(replyID);
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
RTSPSource.cpp 324 uint32_t replyID;
325 CHECK(msg->senderAwaitsResponse(&replyID));
327 mDisconnectReplyID = replyID;

Completed in 103 milliseconds