OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:replyID
(Results
1 - 13
of
13
) sorted by null
/frameworks/av/media/libstagefright/
MediaCodec.cpp
430
bool MediaCodec::handleDequeueInputBuffer(uint32_t
replyID
, bool newRequest) {
437
response->postReply(
replyID
);
451
response->postReply(
replyID
);
456
bool MediaCodec::handleDequeueOutputBuffer(uint32_t
replyID
, bool newRequest) {
506
response->postReply(
replyID
);
914
uint32_t
replyID
;
915
CHECK(msg->senderAwaitsResponse(&
replyID
));
921
response->postReply(
replyID
);
925
mReplyID =
replyID
;
953
uint32_t
replyID
;
[
all
...]
/frameworks/av/media/libstagefright/foundation/
ALooperRoster.cpp
174
uint32_t
replyID
= mNextReplyID++;
176
msg->setInt32("
replyID
",
replyID
);
186
while ((index = mReplies.indexOfKey(
replyID
)) < 0) {
196
void ALooperRoster::postReply(uint32_t
replyID
, const sp<AMessage> &reply) {
199
CHECK(mReplies.indexOfKey(
replyID
) < 0);
200
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
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
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
;
NuPlayer.cpp
345
uint32_t
replyID
;
346
CHECK(msg->senderAwaitsResponse(&
replyID
));
358
response->postReply(
replyID
);
364
uint32_t
replyID
;
365
CHECK(msg->senderAwaitsResponse(&
replyID
));
379
response->postReply(
replyID
);
[
all
...]
/frameworks/av/media/libstagefright/httplive/
LiveSession.cpp
238
uint32_t
replyID
;
[
all
...]
Completed in 378 milliseconds