HomeSort by relevance Sort by last modified time
    Searched defs:appId (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /system/chre/platform/slpi/include/chre/platform/slpi/
preloaded_nanoapps.h 33 const uint64_t appId;
  /system/chre/build/app_support/qcom_nanohub/
app_support_uimg.cc 40 uint64_t appId;
55 .appId = NANOAPP_ID,
app_support.cc 63 uint64_t appId;
107 .appId = NANOAPP_ID,
  /external/nos/host/android/citadel/citadeld/
main.cpp 64 const uint8_t appId = static_cast<uint32_t>(_appId);
69 std::unique_lock<std::mutex> lock(_appLocks[appId]);
70 *appStatus = _client.CallApp(appId, arg, request, response);
  /hardware/interfaces/radio/1.0/vts/functional/
radio_hidl_hal_ims.cpp 65 std::string appId = "";
67 radio->getFacilityLockForApp(serial, facility, password, serviceClass, appId);
89 std::string appId = "";
91 radio->setFacilityLockForApp(serial, facility, lockState, password, serviceClass, appId);
  /system/chre/apps/chqts/src/general_test/
nanoapp_info.cc 27 uint64_t appId;
41 .appId = nanoapp_testing::hostToLittleEndian(mAppId),
49 bool NanoappInfo::validate(uint64_t appId, uint32_t instanceId) {
51 if (appId != mAppId) {
  /system/chre/core/include/chre/core/
host_comms_manager.h 68 uint64_t appId;
87 void flushMessagesSentByNanoapp(uint64_t appId);
121 * @param appId Identifier for the destination nanoapp
130 uint64_t appId, uint32_t messageType, uint16_t hostEndpoint,
169 uint64_t appId, uint16_t hostEndpoint, uint32_t messageType,
  /system/chre/host/common/include/chre_host/
fragmented_load_transaction.h 35 uint64_t appId;
47 size_t fragmentId, uint32_t transactionId, uint64_t appId,
52 appId(appId),
71 * @param appId the unique ID of the nanoapp
78 uint32_t transactionId, uint64_t appId, uint32_t appVersion,
  /device/google/contexthub/firmware/app/chre/chre_test2.app/
main.cpp 68 uint64_t appId = chreGetAppId();
76 chreLog(CHRE_LOG_INFO, APP_LABEL "appId=%016llx; instanceId=%ld",
77 appId, instanceId);
79 chreLog(CHRE_LOG_INFO, APP_LABEL "info by instanceId; appId=%08llx; version=%ld; instanceId=%ld",
80 info.appId, info.version, info.instanceId);
84 if (chreGetNanoappInfoByAppId(appId, &info)) {
85 chreLog(CHRE_LOG_INFO, APP_LABEL "info by appId; appId=%08llx; version=%ld; instanceId=%ld",
86 info.appId, info.version, info.instanceId);
121 const uint64_t appId = msg->appId
    [all...]
  /system/chre/platform/shared/include/chre/platform/shared/
nanoapp_support_lib_dso.h 92 uint64_t appId;
  /device/google/contexthub/firmware/app/chre/common/
chre10_app_syscalls.c 39 uint64_t appId = 0;
40 (void)syscallDo1P(SYSCALL_CHRE_API(GET_APP_ID), &appId);
41 return appId;
chre11_app_syscalls.c 36 uint64_t appId = 0;
37 (void)syscallDo1P(SYSCALL_CHRE_API(GET_APP_ID), &appId);
38 return appId;
172 bool chreGetNanoappInfoByAppId(uint64_t appId, struct chreNanoappInfo *info)
174 uint32_t app_lo = appId;
175 uint32_t app_hi = appId >> 32;
chre_app_syscalls.c 36 uint64_t appId = 0;
37 (void)syscallDo1P(SYSCALL_CHRE_API(GET_APP_ID), &appId);
38 return appId;
172 bool chreGetNanoappInfoByAppId(uint64_t appId, struct chreNanoappInfo *info)
174 uint32_t app_lo = appId;
175 uint32_t app_hi = appId >> 32;
  /frameworks/base/services/core/java/com/android/server/pm/
PackageSetting.java 35 int appId;
97 + " " + name + "/" + appId + "}";
106 appId = orig.appId;
124 return appId;
182 proto.write(PackageProto.UID, appId);
  /system/chre/chre_api/include/chre_api/chre/
event.h 297 uint64_t appId;
460 * In the current API, appId is required to be unique, i.e. there cannot be two
461 * nanoapps running concurrently with the same appId. If this restriction is
462 * removed in a future API version and multiple instances of the same appId are
465 * @param appId Identifier for the nanoapp that the caller is requesting
474 bool chreGetNanoappInfoByAppId(uint64_t appId, struct chreNanoappInfo *info);
  /system/chre/chre_api/legacy/v1_1/chre/
event.h 269 uint64_t appId;
432 * In the current API, appId is required to be unique, i.e. there cannot be two
433 * nanoapps running concurrently with the same appId. If this restriction is
434 * removed in a future API version and multiple instances of the same appId are
437 * @param appId Identifier for the nanoapp that the caller is requesting
446 bool chreGetNanoappInfoByAppId(uint64_t appId, struct chreNanoappInfo *info);
  /device/google/contexthub/contexthubhal/test/
main.cpp 26 inline std::ostream &operator << (std::ostream &os, const hub_app_name_t &appId)
29 __be64 beAppId = htobe64(appId.id);
30 uint32_t seqId = appId.id & NANOAPP_VENDOR_ALL_APPS;
38 os << "#" << std::hex << appId.id;
44 void dumpBuffer(std::ostream &os, const char *pfx, const hub_app_name_t &appId, uint32_t evtId, const void *data, size_t len, int status)
47 os << pfx << ": [ID=" << appId << "; SZ=" << std::dec << len;
226 uint64_t appId = 0;
240 appId = strtoull(optarg, &end, 16);
266 const hub_app_name_t app_name = { .id = appId };
274 req.app_name.id = appId;
    [all...]
  /device/google/contexthub/firmware/os/inc/
eventnums.h 53 uint64_t appId;
63 uint64_t appId;
seos.h 130 uint64_t appId;
180 bool osTidById(const uint64_t *appId, uint32_t *tid);
181 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);
293 uint32_t osExtAppStopAppsByAppId(uint64_t appId);
294 uint32_t osExtAppEraseAppsByAppId(uint64_t appId);
295 uint32_t osExtAppStartAppsByAppId(uint64_t appId);
319 .hdr.appId = (_id), \
337 .hdr.appId = (_id),
    [all...]
  /device/google/contexthub/util/nanotool/
apptohostevent.h 27 uint64_t appId;
55 // The u64 appId used in nanohub is 40 bits vendor ID + 24 bits app ID (see seos.h)
56 constexpr uint64_t MakeAppId(uint64_t vendorId, uint32_t appId) {
57 return (vendorId << 24) | (appId & 0x00FFFFFF);
  /frameworks/base/core/java/android/os/
UserHandle.java 123 * @return whether the appId is the same for both uids
136 final int appId = getAppId(uid);
137 return appId >= Process.FIRST_ISOLATED_UID && appId <= Process.LAST_ISOLATED_UID;
150 final int appId = getAppId(uid);
151 return appId >= Process.FIRST_APPLICATION_UID && appId <= Process.LAST_APPLICATION_UID;
163 final int appId = getAppId(uid);
164 return appId < Process.FIRST_APPLICATION_UID;
208 * Returns the uid that is composed from the userId and the appId
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/
InstallerTest.java 99 final int appId = UserHandle.getAppId(app.uid);
101 if (ArrayUtils.contains(appIds, appId)) {
104 appIds = ArrayUtils.appendInt(appIds, appId);
121 appId, ceDataInodes, codePaths, stats);
126 appId, ceDataInodes, codePaths, quotaStats);
177 final int appId = UserHandle.getAppId(app.uid);
178 if (!ArrayUtils.contains(appIds, appId)) {
179 appIds = ArrayUtils.appendInt(appIds, appId);
  /frameworks/native/services/surfaceflinger/layerproto/include/layerproto/
LayerProtoParser.h 114 int32_t appId;
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ContextMap.java 50 public int appId;
53 Connection(int connId, String address, int appId) {
56 this.appId = appId;
263 void removeConnectionsByAppId(int appId) {
267 if (connection.appId == appId) {
380 return getById(connection.appId);
398 if (connection.address.equalsIgnoreCase(address) && connection.appId == id) {
419 List<Connection> getConnectionByApp(int appId) {
    [all...]
  /system/vold/
KeyStorage.cpp 106 const std::string& appId, std::string* key) {
110 .Authorization(km::TAG_APPLICATION_ID, km::support::blob2hidlVec(appId));
130 const KeyAuthentication& auth, const std::string& appId) {
133 .Authorization(km::TAG_APPLICATION_ID, km::support::blob2hidlVec(appId));
330 std::string* appId) {
333 *appId = secdiscardable_hash + stretched;
465 std::string appId;
466 if (!generateAppId(auth, stretching, salt, secdiscardable_hash, &appId)) return false;
472 if (!generateKeymasterKey(keymaster, auth, appId, &kmKey)) return false;
476 std::tie(keyParams, authToken) = beginParams(auth, appId);
    [all...]

Completed in 657 milliseconds

1 2 3 4