Lines Matching refs:appInfo
56 chreNslNanoappInfo *appInfo = nanoappInfo.get(); in createStaticNanoapp() local
58 appInfo->magic = CHRE_NSL_NANOAPP_INFO_MAGIC; in createStaticNanoapp()
59 appInfo->structMinorVersion = infoStructVersion; in createStaticNanoapp()
60 appInfo->targetApiVersion = CHRE_API_VERSION; in createStaticNanoapp()
61 appInfo->vendor = "Google"; in createStaticNanoapp()
62 appInfo->name = name; in createStaticNanoapp()
63 appInfo->isSystemNanoapp = true; in createStaticNanoapp()
64 appInfo->isTcmNanoapp = true; in createStaticNanoapp()
65 appInfo->appId = appId; in createStaticNanoapp()
66 appInfo->appVersion = appVersion; in createStaticNanoapp()
67 appInfo->entryPoints.start = startFunc; in createStaticNanoapp()
68 appInfo->entryPoints.handleEvent = handleEventFunc; in createStaticNanoapp()
69 appInfo->entryPoints.end = endFunc; in createStaticNanoapp()
70 appInfo->appVersionString = "<undefined>"; in createStaticNanoapp()
71 appInfo->appPermissions = appPerms; in createStaticNanoapp()
73 nanoapp->loadStatic(appInfo); in createStaticNanoapp()