Searched refs:outSize (Results 1 - 3 of 3) sorted by relevance
/system/core/gatekeeperd/ |
H A D | IGateKeeperService.cpp | 52 uint32_t outSize = 0; local 55 desiredPasswordSize, &out, &outSize); 59 if (ret == 0 && outSize > 0 && out != NULL) { 62 reply->writeInt32(outSize); 63 reply->writeInt32(outSize); 64 void *buf = reply->writeInplace(outSize); 65 memcpy(buf, out, outSize); 123 uint32_t outSize = 0; local 127 &out, &outSize, &request_reenroll); 130 if (ret == 0 && outSize > [all...] |
/system/security/keystore-engine/ |
H A D | rsa_meth.cpp | 161 int outSize; local 164 outSize = RSA_padding_check_PKCS1_type_2(to, num, alignedReply, replyLen, num); 167 outSize = RSA_padding_check_X931(to, num, alignedReply, replyLen, num); 170 outSize = RSA_padding_check_none(to, num, alignedReply, replyLen, num); 174 outSize = -1; 180 ALOGV("rsa=%p keystore_rsa_priv_dec => returning %p len %d", rsa, to, outSize); 181 return outSize;
|
/system/security/keystore/ |
H A D | IKeystoreService.cpp | 1282 size_t outSize = 0; local 1283 int32_t ret = get(name, (uint8_t**) &out, &outSize); 1286 reply->writeInt32(outSize); 1287 void* buf = reply->writeInplace(outSize); 1288 memcpy(buf, out, outSize); 1449 size_t outSize = 0; local 1450 int32_t ret = sign(name, (const uint8_t*) in, (size_t) inSize, (uint8_t**) &out, &outSize); 1452 if (outSize > 0 && out != NULL) { 1453 reply->writeInt32(outSize); 1454 void* buf = reply->writeInplace(outSize); 1492 size_t outSize = 0; local [all...] |
Completed in 22 milliseconds