OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EnrollRequest
(Results
1 - 7
of
7
) sorted by null
/system/gatekeeper/include/gatekeeper/
gatekeeper_messages.h
170
struct
EnrollRequest
: public GateKeeperMessage {
171
EnrollRequest
(uint32_t user_id, SizedBuffer *password_handle,
173
EnrollRequest
();
174
~
EnrollRequest
();
gatekeeper.h
45
void Enroll(const
EnrollRequest
&request, EnrollResponse *response);
/system/gatekeeper/tests/
gatekeeper_messages_test.cpp
26
using ::gatekeeper::
EnrollRequest
;
54
EnrollRequest
msg(USER_ID, NULL, provided_password, NULL);
58
EnrollRequest
deserialized_msg;
83
EnrollRequest
msg(USER_ID, &handle, provided_password, &enrolled);
87
EnrollRequest
deserialized_msg;
114
EnrollRequest
msg(USER_ID, password_handle, provided_password, enrolled_password);
118
EnrollRequest
deserialized_msg;
251
EnrollRequest
msg;
255
EnrollRequest
deserialized_msg;
311
GARBAGE_TEST(
EnrollRequest
);
[
all
...]
/system/gatekeeper/
gatekeeper_messages.cpp
239
EnrollRequest
::
EnrollRequest
(uint32_t user_id, SizedBuffer *password_handle,
262
EnrollRequest
::
EnrollRequest
() {
268
EnrollRequest
::~
EnrollRequest
() {
285
uint32_t
EnrollRequest
::nonErrorSerializedSize() const {
290
void
EnrollRequest
::nonErrorSerialize(uint8_t *buffer) const {
296
gatekeeper_error_t
EnrollRequest
::nonErrorDeserialize(const uint8_t *payload, const uint8_t *end) {
gatekeeper.cpp
23
void GateKeeper::Enroll(const
EnrollRequest
&request, EnrollResponse *response) {
/system/core/gatekeeperd/tests/
gatekeeper_test.cpp
29
using ::gatekeeper::
EnrollRequest
;
42
EnrollRequest
request(0, NULL, &password, NULL);
59
EnrollRequest
request(0, NULL, &password, NULL);
133
EnrollRequest
enroll_request(0, &password_handle, &password, &provided_password);
178
EnrollRequest
enroll_request(0, NULL, &password, NULL);
/system/core/gatekeeperd/
SoftGateKeeperDevice.cpp
54
EnrollRequest
request(uid, ¤t_password_handle_buffer, &desired_password_buffer,
Completed in 168 milliseconds