• Home
  • Raw
  • Download

Lines Matching refs:appId

419         if (task->app && task->app->hdr.appId == appID)  in osTaskFindByAppID()
662 …app id %016" PRIX64 " @ %p cannot be used as too many apps already exist.\n", app->hdr.appId, app); in osLoadApp()
671 osLog(LOG_WARN, "App @ %p ID %016" PRIX64 " failed to load\n", app, app->hdr.appId); in osLoadApp()
699 … osLog(LOG_WARN, "App @ %p ID %016" PRIX64 "failed to init\n", task->app, task->app->hdr.appId); in osStartApp()
728 static bool osExtAppFind(struct SegmentIterator *it, uint64_t appId) in osExtAppFind() argument
730 uint64_t vendor = APP_ID_GET_VENDOR(appId); in osExtAppFind()
731 uint64_t seqId = APP_ID_GET_SEQ_ID(appId); in osExtAppFind()
743 curAppId = app->hdr.appId; in osExtAppFind()
753 static uint32_t osExtAppStopEraseApps(uint64_t appId, bool doErase) in osExtAppStopEraseApps() argument
766 while (osExtAppFind(&it, appId)) { in osExtAppStopEraseApps()
772 task = osTaskFindByAppID(app->hdr.appId); in osExtAppStopEraseApps()
792 uint32_t osExtAppStopApps(uint64_t appId) in osExtAppStopApps() argument
794 return osExtAppStopEraseApps(appId, false); in osExtAppStopApps()
797 uint32_t osExtAppEraseApps(uint64_t appId) in osExtAppEraseApps() argument
799 return osExtAppStopEraseApps(appId, true); in osExtAppEraseApps()
826 uint32_t osExtAppStartApps(uint64_t appId) in osExtAppStartApps() argument
841 while (osExtAppFind(&it, appId)) { in osExtAppStartApps()
852 while (osExtAppFind(&checkIt, app->hdr.appId)) { in osExtAppStartApps()
858 if (osTaskFindByAppID(app->hdr.appId)) { in osExtAppStartApps()
904 app, app->hdr.appId, app->hdr.fwVer); in osStartTasks()
912 app, app->hdr.fwFlags, app->hdr.appId); in osStartTasks()
915 if ((task = osTaskFindByAppID(app->hdr.appId))) { in osStartTasks()
918 app->hdr.appId, app, task->app, app); in osStartTasks()
1203 bool osTidById(uint64_t appId, uint32_t *tid) in osTidById() argument
1208 if (task->app && task->app->hdr.appId == appId) { in osTidById()
1217 bool osAppInfoById(uint64_t appId, uint32_t *appIdx, uint32_t *appVer, uint32_t *appSize) in osAppInfoById() argument
1224 if (app && app->hdr.appId == appId) { in osAppInfoById()
1236 bool osAppInfoByIndex(uint32_t appIdx, uint64_t *appId, uint32_t *appVer, uint32_t *appSize) in osAppInfoByIndex() argument
1246 *appId = app->hdr.appId; in osAppInfoByIndex()