Searched defs:outSize (Results 1 - 3 of 3) sorted by relevance

/system/core/gatekeeperd/
H A DIGateKeeperService.cpp52 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 Drsa_meth.cpp161 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 DIKeystoreService.cpp1378 size_t outSize = 0; local
1379 int32_t ret = get(name, uid, (uint8_t**) &out, &outSize);
1382 reply->writeInt32(outSize);
1383 void* buf = reply->writeInplace(outSize);
1384 memcpy(buf, out, outSize);
1545 size_t outSize = 0; local
1546 int32_t ret = sign(name, (const uint8_t*) in, (size_t) inSize, (uint8_t**) &out, &outSize);
1548 if (outSize > 0 && out != NULL) {
1549 reply->writeInt32(outSize);
1550 void* buf = reply->writeInplace(outSize);
1588 size_t outSize = 0; local
[all...]

Completed in 1735 milliseconds