Home
last modified time | relevance | path

Searched refs:FindAuthorization (Results 1 – 4 of 4) sorted by relevance

/system/security/keystore/tests/
Dauth_token_table_test.cpp107 ASSERT_EQ(AuthTokenTable::OK, table.FindAuthorization(make_set(1), KM_PURPOSE_SIGN, 0, &found)); in TEST()
111 ASSERT_EQ(AuthTokenTable::OK, table.FindAuthorization(make_set(2), KM_PURPOSE_SIGN, 0, &found)); in TEST()
115 ASSERT_EQ(AuthTokenTable::OK, table.FindAuthorization(make_set(3), KM_PURPOSE_SIGN, 0, &found)); in TEST()
119 ASSERT_EQ(AuthTokenTable::OK, table.FindAuthorization(make_set(4), KM_PURPOSE_SIGN, 0, &found)); in TEST()
124 table.FindAuthorization(make_set(5), KM_PURPOSE_SIGN, 0, &found)); in TEST()
138 EXPECT_EQ(AuthTokenTable::OK, table.FindAuthorization(make_set(1), KM_PURPOSE_SIGN, 0, &found)); in TEST()
139 EXPECT_EQ(AuthTokenTable::OK, table.FindAuthorization(make_set(2), KM_PURPOSE_SIGN, 0, &found)); in TEST()
140 EXPECT_EQ(AuthTokenTable::OK, table.FindAuthorization(make_set(3), KM_PURPOSE_SIGN, 0, &found)); in TEST()
157 EXPECT_EQ(AuthTokenTable::OK, table.FindAuthorization(make_set(1), KM_PURPOSE_SIGN, 0, &found)); in TEST()
158 EXPECT_EQ(AuthTokenTable::OK, table.FindAuthorization(make_set(2), KM_PURPOSE_SIGN, 0, &found)); in TEST()
[all …]
/system/security/keystore/
Dauth_token_table.h73 Error FindAuthorization(const AuthorizationSet& key_info, keymaster_purpose_t purpose,
86 Error FindAuthorization(const keymaster_key_param_t* params, size_t params_count, in FindAuthorization() function
89 return FindAuthorization(AuthorizationSet(params, params_count), purpose, op_handle, found); in FindAuthorization()
Dauth_token_table.cpp85 AuthTokenTable::Error AuthTokenTable::FindAuthorization(const AuthorizationSet& key_info, in FindAuthorization() function in keymaster::AuthTokenTable
Dkey_store_service.cpp1367 keymaster::AuthTokenTable::Error err = mAuthTokenTable.FindAuthorization( in getAuthToken()