OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:EnrollResponse
(Results
1 - 3
of
3
) sorted by null
/system/gatekeeper/
gatekeeper_messages.cpp
326
EnrollResponse
::
EnrollResponse
(uint32_t user_id, SizedBuffer *enrolled_password_handle) {
332
EnrollResponse
::
EnrollResponse
() {
336
EnrollResponse
::~
EnrollResponse
() {
342
void
EnrollResponse
::SetEnrolledPasswordHandle(SizedBuffer *enrolled_password_handle) {
347
uint32_t
EnrollResponse
::nonErrorSerializedSize() const {
351
void
EnrollResponse
::nonErrorSerialize(uint8_t *buffer) const {
355
gatekeeper_error_t
EnrollResponse
::nonErrorDeserialize(const uint8_t *payload, const uint8_t *end)
[
all
...]
/system/gatekeeper/tests/
gatekeeper_messages_test.cpp
27
using ::gatekeeper::
EnrollResponse
;
141
TEST(RoundTripTest,
EnrollResponse
) {
146
EnrollResponse
msg(USER_ID, enrolled_password);
150
EnrollResponse
deserialized_msg;
240
EnrollResponse
msg;
244
EnrollResponse
deserialized_msg;
312
GARBAGE_TEST(
EnrollResponse
);
/system/gatekeeper/include/gatekeeper/
gatekeeper_messages.h
195
struct
EnrollResponse
: public GateKeeperMessage {
197
EnrollResponse
(uint32_t user_id, SizedBuffer *enrolled_password_handle);
198
EnrollResponse
();
199
~
EnrollResponse
();
Completed in 190 milliseconds