Lines Matching refs:entry_
370 if (entry_ == nullptr) { in writeBlobs()
376 rc = writeBlob(entry_->getKeyBlobPath(), std::move(keyBlob), rawBlob, aes_key, state); in writeBlobs()
384 rc = writeBlob(entry_->getCharacteristicsBlobPath(), std::move(characteristicsBlob), in writeBlobs()
499 if (entry_ == nullptr) return rc = ResponseCode::SYSTEM_ERROR, result; in readBlobs()
501 rc = keyBlob.readBlob(entry_->getKeyBlobPath(), aes_key, state); in readBlobs()
506 if (entry_->hasCharacteristicsBlob()) { in readBlobs()
507 characteristicsBlob.readBlob(entry_->getCharacteristicsBlobPath(), aes_key, state); in readBlobs()
513 if (entry_ == nullptr) return ResponseCode::NO_ERROR; in deleteBlobs()
516 ResponseCode rc1 = (unlink(entry_->getKeyBlobPath().c_str()) && errno != ENOENT) in deleteBlobs()
520 ALOGW("Failed to delete key blob file \"%s\"", entry_->getKeyBlobPath().c_str()); in deleteBlobs()
522 ResponseCode rc2 = (unlink(entry_->getCharacteristicsBlobPath().c_str()) && errno != ENOENT) in deleteBlobs()
527 entry_->getCharacteristicsBlobPath().c_str()); in deleteBlobs()
586 if (entry_ != nullptr) put(*entry_); in ~LockedKeyBlobEntry()