Searched defs:filename (Results 51 - 52 of 52) sorted by relevance

123

/system/security/keystore/
H A Dkeystore.cpp572 ResponseCode writeBlob(const char* filename, AES_KEY *aes_key, State state, Entropy* entropy) { argument
573 ALOGV("writing blob %s", filename);
581 ALOGW("Could not read random data for: %s", filename);
628 if (rename(tmpFileName, filename) == -1) {
629 ALOGW("could not rename blob to %s: %s", filename, strerror(errno));
635 ResponseCode readBlob(const char* filename, AES_KEY *aes_key, State state) { argument
636 ALOGV("reading blob %s", filename);
637 int in = TEMP_FAILURE_RETRY(open(filename, O_RDONLY));
942 const uint8_t* filename; member in struct:__anon361
1034 android::String8 filename(aliase
1082 get(const char* filename, Blob* keyBlob, const BlobType type, uid_t uid) argument
1130 put(const char* filename, Blob* keyBlob, uid_t uid) argument
1136 del(const char *filename, const BlobType type, uid_t uid) argument
1201 addGrant(const char* filename, uid_t granteeUid) argument
1211 removeGrant(const char* filename, uid_t granteeUid) argument
1224 hasGrant(const char* filename, const uid_t uid) const argument
1228 importKey(const uint8_t* key, size_t keyLen, const char* filename, uid_t uid, int32_t flags) argument
1378 getGrant(const char* filename, uid_t uid) const argument
1394 upgradeBlob(const char* filename, Blob* blob, const uint8_t oldVersion, const BlobType type, uid_t uid) argument
1438 importBlobAsKey(Blob* blob, const char* filename, uid_t uid) argument
[all...]
/system/vold/
H A Dcryptfs.c2831 static int cryptfs_SHA256_fileblock(const char* filename, __le8* buf) argument
2833 int fd = open(filename, O_RDONLY);
2835 SLOGE("Error opening file %s", filename);
2842 SLOGE("Error reading file %s", filename);

Completed in 110 milliseconds

123