OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:keepComponentAllocated
(Results
1 - 5
of
5
) sorted by null
/frameworks/av/include/media/stagefright/
CodecBase.h
70
virtual void initiateShutdown(bool
keepComponentAllocated
= false) = 0;
MediaFilter.h
40
virtual void initiateShutdown(bool
keepComponentAllocated
= false);
ACodec.h
54
virtual void initiateShutdown(bool
keepComponentAllocated
= false);
/frameworks/av/media/libstagefright/filters/
MediaFilter.cpp
88
void MediaFilter::initiateShutdown(bool
keepComponentAllocated
) {
90
msg->setInt32("
keepComponentAllocated
",
keepComponentAllocated
);
683
int32_t
keepComponentAllocated
;
684
CHECK(msg->findInt32("
keepComponentAllocated
", &
keepComponentAllocated
));
685
if (!
keepComponentAllocated
|| mState == UNINITIALIZED) {
/frameworks/av/media/libstagefright/
ACodec.cpp
319
void onShutdown(bool
keepComponentAllocated
);
621
void ACodec::initiateShutdown(bool
keepComponentAllocated
) {
623
msg->setInt32("
keepComponentAllocated
",
keepComponentAllocated
);
625
if (!
keepComponentAllocated
) {
[
all
...]
Completed in 133 milliseconds