HomeSort by relevance Sort by last modified time
    Searched defs:AuthorizationSet (Results 1 - 4 of 4) sorted by null

  /system/keymaster/
authorization_set.cpp 37 AuthorizationSet::AuthorizationSet(AuthorizationSetBuilder& builder) {
60 AuthorizationSet::~AuthorizationSet() {
64 bool AuthorizationSet::reserve_elems(size_t count) {
82 bool AuthorizationSet::reserve_indirect(size_t length) {
106 void AuthorizationSet::MoveFrom(AuthorizationSet& set) {
123 bool AuthorizationSet::Reinitialize(const keymaster_key_param_t* elems, const size_t count) {
144 void AuthorizationSet::set_invalid(Error error)
    [all...]
  /system/security/keystore/include/keystore/
authorization_set.h 32 class AuthorizationSet {
35 * Construct an empty, dynamically-allocated, growable AuthorizationSet.
37 AuthorizationSet() {};
40 AuthorizationSet(const AuthorizationSet& other) : data_(other.data_) {}
43 AuthorizationSet(AuthorizationSet&& other) : data_(std::move(other.data_)) {}
46 AuthorizationSet(const hidl_vec<KeyParameter>& other) {
51 AuthorizationSet& operator=(const AuthorizationSet& other)
    [all...]
  /hardware/interfaces/keymaster/3.0/vts/functional/
authorization_set.h 37 class AuthorizationSet {
42 * Construct an empty, dynamically-allocated, growable AuthorizationSet.
44 AuthorizationSet(){};
47 AuthorizationSet(const AuthorizationSet& other) : data_(other.data_) {}
50 AuthorizationSet(AuthorizationSet&& other) : data_(std::move(other.data_)) {}
53 AuthorizationSet(const hidl_vec<KeyParameter>& other) { *this = other; }
56 AuthorizationSet& operator=(const AuthorizationSet& other)
    [all...]
  /system/keymaster/include/keymaster/
authorization_set.h 34 class AuthorizationSet : public Serializable, public keymaster_key_param_set_t {
37 * Construct an empty, dynamically-allocated, growable AuthorizationSet. Does not actually
39 * AuthorizationSet with this constructor and then reinitializing it to point at pre-allocated
42 AuthorizationSet()
50 * Construct an AuthorizationSet from the provided array. The AuthorizationSet copies the data
56 AuthorizationSet(const keymaster_key_param_t* elems, size_t count) : indirect_data_(nullptr) {
61 explicit AuthorizationSet(const keymaster_key_param_set_t& set) : indirect_data_(nullptr) {
66 explicit AuthorizationSet(const uint8_t* serialized_set, size_t serialized_size)
73 * Construct an AuthorizationSet from the provided builder. This extracts the data from th
    [all...]

Completed in 209 milliseconds