Home
last modified time | relevance | path

Searched refs:mSdkSandboxConnections (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/services/core/java/com/android/server/am/
DProcessServiceRecord.java142 private @Nullable ArraySet<ConnectionRecord> mSdkSandboxConnections; field in ProcessServiceRecord
534 if (attributedClient.mServices.mSdkSandboxConnections == null) { in addSdkSandboxConnectionIfNecessary()
535 attributedClient.mServices.mSdkSandboxConnections = new ArraySet<>(); in addSdkSandboxConnectionIfNecessary()
537 attributedClient.mServices.mSdkSandboxConnections.add(connection); in addSdkSandboxConnectionIfNecessary()
544 if (attributedClient.mServices.mSdkSandboxConnections != null) { in removeSdkSandboxConnectionIfNecessary()
545 attributedClient.mServices.mSdkSandboxConnections.remove(connection); in removeSdkSandboxConnectionIfNecessary()
551 if (mSdkSandboxConnections != null) { in removeAllSdkSandboxConnections()
552 mSdkSandboxConnections.clear(); in removeAllSdkSandboxConnections()
557 return mSdkSandboxConnections != null ? mSdkSandboxConnections.valueAt(index) : null; in getSdkSandboxConnectionAt()
561 return mSdkSandboxConnections != null ? mSdkSandboxConnections.size() : 0; in numberOfSdkSandboxConnections()