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

  /system/keymaster/android_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...]
  /hardware/interfaces/keymaster/4.0/support/include/keymasterV4_0/
authorization_set.h 36 class AuthorizationSet {
41 * Construct an empty, dynamically-allocated, growable AuthorizationSet.
43 AuthorizationSet(){};
46 AuthorizationSet(const AuthorizationSet& other) : data_(other.data_) {}
49 AuthorizationSet(AuthorizationSet&& other) : data_(std::move(other.data_)) {}
52 AuthorizationSet(const hidl_vec<KeyParameter>& other) { *this = other; }
55 AuthorizationSet& operator=(const AuthorizationSet& other)
    [all...]
  /system/keymaster/ng/include/
authorization_set.h 33 class AuthorizationSet {
36 * Construct an empty, dynamically-allocated, growable AuthorizationSet.
38 AuthorizationSet() {};
41 AuthorizationSet(const AuthorizationSet& other) : data_(other.data_) {}
44 AuthorizationSet(AuthorizationSet&& other) : data_(std::move(other.data_)) {}
47 AuthorizationSet(const hidl_vec<KeyParameter>& other) {
52 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 35 class AuthorizationSet : public Serializable, public keymaster_key_param_set_t {
38 * Construct an empty, dynamically-allocated, growable AuthorizationSet. Does not actually
40 * AuthorizationSet with this constructor and then reinitializing it to point at pre-allocated
43 AuthorizationSet()
51 * Construct an AuthorizationSet from the provided array. The AuthorizationSet copies the data
57 AuthorizationSet(const keymaster_key_param_t* elems, size_t count) : indirect_data_(nullptr) {
62 explicit AuthorizationSet(const keymaster_key_param_set_t& set) : indirect_data_(nullptr) {
67 explicit AuthorizationSet(const uint8_t* serialized_set, size_t serialized_size)
74 * Construct an AuthorizationSet from the provided builder. This extracts the data from th
    [all...]

Completed in 557 milliseconds