Lines Matching refs:entry_
366 if (entry_ == nullptr) { in writeBlobs()
372 rc = writeBlob(entry_->getKeyBlobPath(), std::move(keyBlob), rawBlob, aes_key, state); in writeBlobs()
380 rc = writeBlob(entry_->getCharacteristicsBlobPath(), std::move(characteristicsBlob), in writeBlobs()
481 if (entry_ == nullptr) return rc = ResponseCode::SYSTEM_ERROR, result; in readBlobs()
483 rc = keyBlob.readBlob(entry_->getKeyBlobPath(), aes_key, state); in readBlobs()
488 if (entry_->hasCharacteristicsBlob()) { in readBlobs()
489 characteristicsBlob.readBlob(entry_->getCharacteristicsBlobPath(), aes_key, state); in readBlobs()
495 if (entry_ == nullptr) return ResponseCode::NO_ERROR; in deleteBlobs()
498 ResponseCode rc1 = (unlink(entry_->getKeyBlobPath().c_str()) && errno != ENOENT) in deleteBlobs()
502 ALOGW("Failed to delete key blob file \"%s\"", entry_->getKeyBlobPath().c_str()); in deleteBlobs()
504 ResponseCode rc2 = (unlink(entry_->getCharacteristicsBlobPath().c_str()) && errno != ENOENT) in deleteBlobs()
509 entry_->getCharacteristicsBlobPath().c_str()); in deleteBlobs()
568 if (entry_ != nullptr) put(*entry_); in ~LockedKeyBlobEntry()