Searched defs:sessions (Results 1 - 5 of 5) sorted by relevance

/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DBordeauxSessionStorage.java45 private static final String SESSION_TABLE = "sessions";
133 void getAllSessions(ConcurrentHashMap<String, BordeauxSessionManager.Session> sessions) { argument
140 sessions.put(key, session);
144 // remove all sessions that have the key that matches the given sql regular
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DAudioInputDescriptor.cpp104 void AudioInputDescriptor::setPreemptedSessions(const SortedVector<audio_session_t>& sessions) argument
106 mPreemptedSessions = sessions;
140 // sound trigger and non sound trigger sessions are not mixed
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageInstallerService.java122 // TODO: remove outstanding sessions when installer package goes away
124 // TODO: purge expired sessions periodically in addition to at reboot
127 private static final String TAG_SESSIONS = "sessions";
155 /** Automatically destroy sessions older than this */
157 /** Upper bound on number of active sessions for a UID */
159 /** Upper bound on number of historical sessions for a UID */
191 /** All sessions allocated */
198 /** Historical sessions kept around for debugging purposes */
245 // Ignore stages and icons claimed by active sessions
264 // Ignore stages claimed by active sessions
955 getSessionCount(SparseArray<PackageInstallerSession> sessions, int installerUid) argument
[all...]
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp729 uint32_t sessions = t->hasAudioSession(lSessionId); local
730 if (sessions & ThreadBase::EFFECT_SESSION) {
1430 ALOGV("%d died, releasing its sessions", pid);
1879 uint32_t sessions = thread->hasAudioSession(sessionId); local
1880 if (sessions & ThreadBase::TRACK_SESSION) {
/frameworks/av/services/audiopolicy/managerdefault/
H A DAudioPolicyManager.cpp1694 AudioSessionCollection sessions = reusedInputDesc->getAudioSessions(false /*activeOnly*/);
1695 for (size_t j = 0; j < sessions.size(); j++) {
1696 audio_session_t currentSession = sessions.keyAt(j);
1879 SortedVector<audio_session_t> sessions = activeDesc->getPreemptedSessions(); local
1880 sessions.add(activeSession);
1881 inputDesc->setPreemptedSessions(sessions);
1891 // increment activity count before calling getNewInputDevice() below as only active sessions

Completed in 462 milliseconds