Searched refs:flen (Results 1 - 2 of 2) sorted by relevance

/system/security/keystore-engine/
H A Drsa_meth.cpp44 int keystore_rsa_priv_enc(int flen, const unsigned char* from, unsigned char* to, RSA* rsa, argument
46 ALOGV("keystore_rsa_priv_enc(%d, %p, %p, %p, %d)", flen, from, to, rsa, padding);
57 if (!RSA_padding_add_PKCS1_type_1(padded.get(), num, from, flen)) {
62 if (!RSA_padding_add_X931(padded.get(), num, from, flen)) {
67 if (!RSA_padding_add_none(padded.get(), num, from, flen)) {
116 int keystore_rsa_priv_dec(int flen, const unsigned char* from, unsigned char* to, RSA* rsa, argument
118 ALOGV("keystore_rsa_priv_dec(%d, %p, %p, %p, %d)", flen, from, to, rsa, padding);
140 flen, &reply, &replyLen);
/system/core/init/
H A Dproperty_service.c367 size_t flen = 0; local
370 flen = strlen(filter);
385 if (!strncmp(key, "import ", 7) && flen == 0) {
407 if (flen > 0) {
408 if (filter[flen - 1] == '*') {
409 if (strncmp(key, filter, flen - 1)) continue;

Completed in 98 milliseconds