Home
last modified time | relevance | path

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

/system/bt/service/common/
DREADME3 subdirectory, which is the exported root path for the client static library.
11 one common include path exported to them, and our headers can find eachother
/system/core/trusty/keymaster/
Dtrusty_keymaster_device_test.cpp513 uint8_t* exported; in TEST_F() local
515 EXPECT_EQ(KM_ERROR_OK, device.get_keypair_public(ptr, size, &exported, &exported_size)); in TEST_F()
516 Malloc_Delete exported_deleter(exported); in TEST_F()
528 const uint8_t* tmp = exported; in TEST_F()
530 VerifySignature(exported, exported_size, signature, siglen, message.get(), message_len); in TEST_F()
542 uint8_t* exported; in TEST_F() local
544 EXPECT_EQ(KM_ERROR_OK, device.get_keypair_public(key, size, &exported, &exported_size)); in TEST_F()
545 Malloc_Delete exported_deleter(exported); in TEST_F()
558 VerifySignature(exported, exported_size, signature, siglen, message, array_size(message) - 1); in TEST_F()
/system/tpm/trunks/
Dinterface.proto5 // exported method is represented here by a request and response protobuf.
/system/keymaster/
Dandroid_keymaster_test.cpp1920 string exported; in TEST_P() local
1921 ASSERT_EQ(KM_ERROR_OK, ExportKey(KM_KEY_FORMAT_X509, &exported)); in TEST_P()
1923 const uint8_t* p = reinterpret_cast<const uint8_t*>(exported.data()); in TEST_P()
1925 d2i_PUBKEY(nullptr /* alloc new */, &p, exported.size())); in TEST_P()