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

/hardware/interfaces/keymaster/3.0/vts/functional/
H A Dauthorization_set.h37 class AuthorizationSet { class in namespace:android::hardware::keymaster::V3_0
42 * Construct an empty, dynamically-allocated, growable AuthorizationSet.
44 AuthorizationSet(){}; function in class:android::hardware::keymaster::V3_0::AuthorizationSet
47 AuthorizationSet(const AuthorizationSet& other) : data_(other.data_) {} function in class:android::hardware::keymaster::V3_0::AuthorizationSet
50 AuthorizationSet(AuthorizationSet&& other) : data_(std::move(other.data_)) {} function in class:android::hardware::keymaster::V3_0::AuthorizationSet
53 AuthorizationSet(const hidl_vec<KeyParameter>& other) { *this = other; } function in class:android::hardware::keymaster::V3_0::AuthorizationSet
56 AuthorizationSet& operator=(const AuthorizationSet
[all...]

Completed in 15 milliseconds