OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mActiveClients
(Results
1 - 2
of
2
) sorted by null
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
AudioOutputDescriptor.h
175
* along with the stream active count and
mActiveClients
.
272
auto clientIter = std::find(begin(
mActiveClients
), end(
mActiveClients
), client);
273
LOG_ALWAYS_FATAL_IF(clientIter !=
mActiveClients
.end(),
280
return
mActiveClients
;
302
TrackClientVector
mActiveClients
;
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
AudioOutputDescriptor.cpp
90
auto clientIter = std::find(begin(
mActiveClients
), end(
mActiveClients
), client);
91
if (active == (clientIter != end(
mActiveClients
))) {
98
mActiveClients
.push_back(client);
100
mActiveClients
.erase(clientIter);
213
return std::find_if(begin(
mActiveClients
), end(
mActiveClients
),
215
return client->volumeSource() != volumeSourceToIgnore; }) != end(
mActiveClients
);
237
if (!
mActiveClients
.empty()) {
240
for (const auto& client :
mActiveClients
) {
[
all
...]
Completed in 1300 milliseconds