Lines Matching refs:instanceId
55 info->instanceId = app->getInstanceId(); in populateNanoappInfo()
65 uint32_t *instanceId) const { in findNanoappInstanceIdByAppId()
66 CHRE_ASSERT(instanceId != nullptr); in findNanoappInstanceIdByAppId()
72 *instanceId = app->getInstanceId(); in findNanoappInstanceIdByAppId()
207 bool EventLoop::unloadNanoapp(uint32_t instanceId, in unloadNanoapp() argument
212 if (instanceId == mNanoapps[i]->getInstanceId()) { in unloadNanoapp()
252 LOGD("Unloaded nanoapp with instanceId %" PRIu32, instanceId); in unloadNanoapp()
332 Nanoapp *EventLoop::findNanoappByInstanceId(uint32_t instanceId) const { in findNanoappByInstanceId()
334 return lookupAppByInstanceId(instanceId); in findNanoappByInstanceId()
345 uint32_t instanceId, struct chreNanoappInfo *info) const { in populateNanoappInfoForInstanceId() argument
347 Nanoapp *app = lookupAppByInstanceId(instanceId); in populateNanoappInfoForInstanceId()
477 Nanoapp *EventLoop::lookupAppByInstanceId(uint32_t instanceId) const { in lookupAppByInstanceId()
480 if (instanceId != kSystemInstanceId) { in lookupAppByInstanceId()
482 if (app->getInstanceId() == instanceId) { in lookupAppByInstanceId()
499 info->instanceId = nanoapp.getInstanceId(); in notifyAppStatusChange()