Home
last modified time | relevance | path

Searched refs:appInfo (Results 1 – 10 of 10) sorted by relevance

/system/chre/platform/linux/include/chre/target_platform/
Dstatic_nanoapp_init.h37 static struct chreNslNanoappInfo appInfo; \
38 appInfo.magic = CHRE_NSL_NANOAPP_INFO_MAGIC; \
39 appInfo.structMinorVersion = \
41 appInfo.targetApiVersion = CHRE_API_VERSION; \
42 appInfo.vendor = "Google"; /* TODO: make this configurable */ \
43 appInfo.name = #appName; \
44 appInfo.isSystemNanoapp = true; \
45 appInfo.isTcmNanoapp = false; \
46 appInfo.appId = appId_; \
47 appInfo.appVersion = appVersion_; \
[all …]
Dplatform_nanoapp_base.h49 void loadStatic(const struct chreNslNanoappInfo *appInfo);
/system/chre/platform/slpi/include/chre/target_platform/
Dstatic_nanoapp_init.h39 static struct chreNslNanoappInfo appInfo; \
40 appInfo.magic = CHRE_NSL_NANOAPP_INFO_MAGIC; \
41 appInfo.structMinorVersion = \
43 appInfo.targetApiVersion = CHRE_API_VERSION; \
44 appInfo.vendor = "Google"; /* TODO: make this configurable */\
45 appInfo.name = #appName; \
46 appInfo.isSystemNanoapp = true; \
47 appInfo.isTcmNanoapp = isSlpiUimgSupported(); \
48 appInfo.appId = appId_; \
49 appInfo.appVersion = appVersion_; \
[all …]
Dplatform_nanoapp_base.h65 void loadStatic(const struct chreNslNanoappInfo *appInfo);
/system/chre/platform/shared/nanoapp/
Dnanoapp_dso_util.cc28 const struct chreNslNanoappInfo *appInfo, in validateAppInfo() argument
32 appInfo->targetApiVersion); in validateAppInfo()
35 if (appInfo->magic != CHRE_NSL_NANOAPP_INFO_MAGIC) { in validateAppInfo()
37 appInfo->magic, static_cast<uint32_t>(CHRE_NSL_NANOAPP_INFO_MAGIC)); in validateAppInfo()
38 } else if (appInfo->appId == 0) { in validateAppInfo()
40 } else if (expectedAppId != 0 && expectedAppId != appInfo->appId) { in validateAppInfo()
42 PRIx64 ")", expectedAppId, appInfo->appId); in validateAppInfo()
44 && expectedAppVersion != appInfo->appVersion) { in validateAppInfo()
46 PRIx32 ")", expectedAppVersion, appInfo->appVersion); in validateAppInfo()
50 } else if (strlen(appInfo->name) > CHRE_NSL_DSO_NANOAPP_STRING_MAX_LEN) { in validateAppInfo()
[all …]
/system/chre/apps/chqts/src/general_test/
Devent_between_apps_test.cc91 NanoappInfo appInfo; in setUp() local
92 appInfo.sendToHost(); in setUp()
/system/chre/platform/linux/
Dplatform_nanoapp.cc74 void PlatformNanoappBase::loadStatic(const struct chreNslNanoappInfo *appInfo) { in loadStatic() argument
77 mAppInfo = appInfo; in loadStatic()
/system/chre/platform/shared/include/chre/platform/shared/
Dnanoapp_dso_util.h36 const struct chreNslNanoappInfo *appInfo,
/system/chre/host/hal_generic/
Dgeneric_context_hub.cc404 HubAppInfo appInfo; in handleNanoappListResponse() local
406 appInfo.appId = nanoapp->app_id; in handleNanoappListResponse()
407 appInfo.version = nanoapp->version; in handleNanoappListResponse()
408 appInfo.enabled = nanoapp->enabled; in handleNanoappListResponse()
410 appInfoList.push_back(appInfo); in handleNanoappListResponse()
/system/chre/platform/slpi/
Dplatform_nanoapp.cc104 void PlatformNanoappBase::loadStatic(const struct chreNslNanoappInfo *appInfo) { in loadStatic() argument
107 mAppInfo = appInfo; in loadStatic()