Searched defs:AuthorizationSet (Results 1 - 3 of 3) sorted by relevance

/system/keymaster/
H A Dauthorization_set.cpp37 AuthorizationSet::AuthorizationSet(AuthorizationSetBuilder& builder) { function in class:keymaster::AuthorizationSet
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
[all...]
/system/keymaster/include/keymaster/
H A Dauthorization_set.h34 class AuthorizationSet : public Serializable, public keymaster_key_param_set_t { class in namespace:keymaster
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() function in class:keymaster::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) { function in class:keymaster::AuthorizationSet
61 explicit AuthorizationSet(const keymaster_key_param_set_t& set) : indirect_data_(nullptr) { function in class:keymaster::AuthorizationSet
66 explicit AuthorizationSet(const uint8_t* serialized_set, size_t serialized_size) function in class:keymaster::AuthorizationSet
73 * Construct an AuthorizationSet fro
79 AuthorizationSet(const AuthorizationSet& set) : Serializable(), indirect_data_(nullptr) { function in class:keymaster::AuthorizationSet
87 AuthorizationSet(AuthorizationSet&& set) : Serializable() { function in class:keymaster::AuthorizationSet
[all...]
/system/security/keystore/include/keystore/
H A Dauthorization_set.h32 class AuthorizationSet { class in namespace:keystore
35 * Construct an empty, dynamically-allocated, growable AuthorizationSet.
37 AuthorizationSet() {}; function in class:keystore::AuthorizationSet
40 AuthorizationSet(const AuthorizationSet& other) : data_(other.data_) {} function in class:keystore::AuthorizationSet
43 AuthorizationSet(AuthorizationSet&& other) : data_(std::move(other.data_)) {} function in class:keystore::AuthorizationSet
46 AuthorizationSet(const hidl_vec<KeyParameter>& other) { function in class:keystore::AuthorizationSet
51 AuthorizationSet& operator=(const AuthorizationSet
[all...]

Completed in 103 milliseconds