Home
last modified time | relevance | path

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

/system/chre/util/pigweed/
Drpc_server.cc87 while (!mConnectedHosts.empty()) { in close()
88 chreConfigureHostEndpointNotifications(mConnectedHosts[0], false); in close()
89 mConnectedHosts.erase(0); in close()
118 size_t hostIndex = mConnectedHosts.find(hostMessage->hostEndpoint); in handleMessageFromHost()
119 if (hostIndex == mConnectedHosts.size()) { in handleMessageFromHost()
120 mConnectedHosts.push_back(hostMessage->hostEndpoint); in handleMessageFromHost()
169 if (mConnectedHosts.empty()) { in handleHostClientNotification()
177 size_t hostIndex = mConnectedHosts.find(notif->hostEndpointId); in handleHostClientNotification()
178 if (hostIndex != mConnectedHosts.size()) { in handleHostClientNotification()
181 mConnectedHosts.erase(hostIndex); in handleHostClientNotification()
/system/chre/util/include/chre/util/pigweed/
Drpc_server.h181 DynamicVector<uint16_t> mConnectedHosts; variable