Home
last modified time | relevance | path

Searched refs:appVer (Results 1 – 9 of 9) sorted by relevance

/device/google/contexthub/firmware/os/inc/
Dseos.h181 bool osAppInfoById(uint64_t appId, uint32_t *appIdx, uint32_t *appVer, uint32_t *appSize);
182 bool osAppInfoByIndex(uint32_t appIdx, uint64_t *appId, uint32_t *appVer, uint32_t *appSize);
183 bool osExtAppInfoByIndex(uint32_t appIdx, uint64_t *appId, uint32_t *appVer, uint32_t *appSize);
320 .hdr.appVer = (_ver), \
338 .hdr.appVer = (_ver), \
DnanohubPacket.h117 __le32 appVer; member
132 __le32 appVer; member
/device/google/contexthub/util/nanoapp_postprocess/
Dpostprocess_elf.c240 .app_version = bin->hdr.appVer, in finalizeAndWrite()
291 …t32_t bufUsed, FILE *out, uint32_t layoutFlags, uint64_t appId, uint32_t appVer, uint32_t chreApi,… in handleApp() argument
324 bin->hdr.appVer = appVer; in handleApp()
792 …har *fileName, FILE *out, uint32_t layoutFlags, uint64_t appId, uint32_t appVer, uint32_t chreApi,… in handleAppStatic() argument
827 hdr->hdr.appVer = appVer; in handleAppStatic()
901 uint32_t appVer = 0; in main() local
933 u32Arg = &appVer; in main()
1009 ret = handleAppStatic(posArg[0], out, layoutFlags, appId, appVer, chreApi, verbose); in main()
1011 ret = handleApp(&buf, bufUsed, out, layoutFlags, appId, appVer, chreApi, verbose); in main()
Dpostprocess.c249 .app_version = bin->hdr.appVer, in finalizeAndWrite()
403 …, uint32_t bufUsed, FILE *out, uint32_t layoutFlags, uint64_t appId, uint32_t appVer, bool verbose) in handleApp() argument
430 bin->hdr.appVer = appVer; in handleApp()
640 uint32_t appVer = 0; in main() local
666 u32Arg = &appVer; in main()
739 ret = handleApp(&buf, bufUsed, out, layoutFlags, appId, appVer, verbose); in main()
/device/google/contexthub/lib/include/nanohub/
Dnanohub.h95 uint32_t appVer; // external: copy from AOSP header; internal: defined locally member
128 uint32_t appVer; member
/device/google/contexthub/firmware/os/core/
Dseos.c1089 ssMsg.version = ssTask->app->hdr.appVer; in osInternalEvtHandle()
1425 bool osAppInfoById(uint64_t appId, uint32_t *appIdx, uint32_t *appVer, uint32_t *appSize) in osAppInfoById() argument
1434 *appVer = app->hdr.appVer; in osAppInfoById()
1444 bool osAppInfoByIndex(uint32_t appIdx, uint64_t *appId, uint32_t *appVer, uint32_t *appSize) in osAppInfoByIndex() argument
1455 *appVer = app->hdr.appVer; in osAppInfoByIndex()
1464 bool osExtAppInfoByIndex(uint32_t appIdx, uint64_t *appId, uint32_t *appVer, uint32_t *appSize) in osExtAppInfoByIndex() argument
1476 *appVer = app->hdr.appVer; in osExtAppInfoByIndex()
DnanohubCommand.c151 uint32_t appIdx, appVer, appSize; in getAppVersion() local
153 if (osAppInfoById(le64toh(unaligned_u64(&req->appId)), &appIdx, &appVer, &appSize)) { in getAppVersion()
154 resp->appVer = htole32(appVer); in getAppVersion()
166 uint32_t appVer, appSize; in queryAppInfo() local
168 if (osAppInfoByIndex(le32toh(unaligned_u32(&req->appIdx)), &appId, &appVer, &appSize)) { in queryAppInfo()
170 resp->appVer = htole32(appVer); in queryAppInfo()
1169 uint32_t appVer, appSize; in halLegacyQueryApps() local
1171 if (osExtAppInfoByIndex(le32toh(req->idx), &appId, &appVer, &appSize)) { in halLegacyQueryApps()
1178 resp->version = appVer; in halLegacyQueryApps()
1528 success = copyTLV32(data, &offset, max_len, tags[i], app->hdr.appVer); in processAppTags()
DappSec.c311 .appVer = aosp->app_version, in appSecProcessIncomingHdr()
Dnanohub_chre.c504 info->version = task->app->hdr.appVer; in chreInfoByTid()