HomeSort by relevance Sort by last modified time
    Searched refs:keyID (Results 1 - 8 of 8) sorted by null

  /external/swiftshader/src/Common/
Configurator.cpp 131 for(unsigned int keyID = 0; keyID < sections.size(); keyID++)
133 file << "[" << names[keyID] << "]" << endl;
135 for(unsigned int valueID = 0; valueID < sections[keyID].names.size(); valueID++)
137 file << sections[keyID].names[valueID] << "=" << sections[keyID].values[valueID] << endl;
148 for(unsigned int keyID = 0; keyID < names.size(); keyID++
    [all...]
  /external/swiftshader/src/System/
Configurator.cpp 131 for(unsigned int keyID = 0; keyID < sections.size(); keyID++)
133 file << "[" << names[keyID] << "]" << endl;
135 for(unsigned int valueID = 0; valueID < sections[keyID].names.size(); valueID++)
137 file << sections[keyID].names[valueID] << "=" << sections[keyID].values[valueID] << endl;
148 for(unsigned int keyID = 0; keyID < names.size(); keyID++
    [all...]
  /external/icu/icu4c/source/common/
servslkf.cpp 69 UnicodeString keyID;
70 lkey.currentID(keyID);
71 if (_id == keyID) {
  /device/google/contexthub/util/nanoapp_encr/
nanoapp_encr.c 56 static int handleEncrypt(uint8_t **pbuf, uint32_t bufUsed, FILE *out, uint64_t keyId, uint32_t *key)
68 encr.keyID = keyId;
75 // if (encr.keyID <= 0xFFFF)
76 // encr.keyID = AES_KEY_ID(encr.keyID);
78 fprintf(stderr, "Using Key ID: %016" PRIX64 "\n", encr.keyID);
192 if (!encr->keyID) {
196 fprintf(stderr, "Using Key ID: %016" PRIX64 "\n", encr->keyID);
255 uint64_t keyId = 0
    [all...]
  /device/google/contexthub/lib/include/nanohub/
nanohub.h 150 uint64_t keyID;
  /device/google/contexthub/firmware/os/core/
appSec.c 271 __func__, encrHdr->dataLen, encrHdr->keyID);
273 if (!encrHdr->dataLen || !encrHdr->keyID)
275 ret = state->aesKeyAccessCbk(encrHdr->keyID, k);
nanohubCommand.c 207 static AppSecErr osSecretKeyLookup(uint64_t keyId, void *keyBuf)
218 if (sz == sizeof(struct SeosEedataEncrKeyData) && kd.keyID == keyId) {
228 static AppSecErr osSecretKeyDelete(uint64_t keyId)
242 if (sz == sizeof(kd) && kd.keyID == keyId) {
251 static AppSecErr osSecretKeyAdd(uint64_t keyId, void *keyBuf)
256 if (osSecretKeyLookup(keyId, NULL) != APP_SEC_KEY_NOT_FOUND)
260 kd.keyID = keyId;
    [all...]
  /device/google/contexthub/firmware/os/inc/
seos.h 141 uint64_t keyID;

Completed in 100 milliseconds