HomeSort by relevance Sort by last modified time
    Searched refs:mNanoapps (Results 1 - 2 of 2) sorted by null

  /system/chre/core/
event_loop.cc 67 for (const UniquePtr<Nanoapp>& app : mNanoapps) {
81 for (const UniquePtr<Nanoapp>& nanoapp : mNanoapps) {
136 while (!mNanoapps.empty()) {
137 unloadNanoappAtIndex(mNanoapps.size() - 1);
156 } else if (!mNanoapps.prepareForPush()) {
166 mNanoapps.push_back(std::move(nanoapp));
168 // mNanoapps.back() - use newNanoapp to reference it
181 // of mNanoapps, but we are assured that no new nanoapps were added since
184 mNanoapps.pop_back();
197 for (size_t i = 0; i < mNanoapps.size(); i++)
    [all...]
  /system/chre/core/include/chre/core/
event_loop.h 175 return mNanoapps.size();
259 DynamicVector<UniquePtr<Nanoapp>> mNanoapps;
262 //! (1) make changes to the mNanoapps vector, or
263 //! (2) read the mNanoapps vector from a thread other than the one
265 //! It is not necessary to acquire the lock when reading mNanoapps from within
370 * Stops and unloads the Nanoapp at the given index in mNanoapps.

Completed in 54 milliseconds