HomeSort by relevance Sort by last modified time
    Searched defs:ticket (Results 1 - 18 of 18) sorted by null

  /external/tpm2/
Sign.c 20 // TPM_RC_TICKET validation is not a valid ticket
30 TPMT_TK_HASHCHECK ticket; local
48 // If validation is provided, or the key is restricted, check the ticket
52 // Compute and compare ticket
55 &in->digest, &ticket);
57 if(!Memory2BEqual(&in->validation.digest.b, &ticket.digest.b))
61 // If we don't have a ticket, at least verify that the provided 'digest'
CertifyCreation.c 31 TPMT_TK_CREATION ticket; local
39 // Re-compute ticket
41 &in->creationHash, &ticket);
42 // Compare ticket
43 if(!Memory2BEqual(&ticket.digest.b, &in->creationTicket.digest.b))
PolicyAuthorize.c 28 TPMT_TK_VERIFIED ticket; local
58 // Validate ticket TPMT_TK_VERIFIED
75 &in->keySign, &ticket);
77 // Compare ticket digest. If not match, return error
78 if(!Memory2BEqual(&in->checkTicket.digest.b, &ticket.digest.b))
PolicyTicket_fp.h 18 TPMT_TK_AUTH ticket; member in struct:__anon40473
  /packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/
TicketRequiredFilter.java 21 import com.android.camera.one.v2.sharedimagereader.ticketpool.Ticket;
28 * Decorates a BufferQueueController by attaching incoming images with a ticket
29 * from a TicketPool. If no ticket can be acquired, the incoming image is
44 Ticket ticket = mTicketProvider.tryAcquire(); local
45 if (ticket == null) {
48 mImageSequence.update(new TicketImageProxy(image, ticket));
  /external/valgrind/coregrind/m_scheduler/
ticket-lock-linux.c 3 /*--- Linux ticket lock implementation ticket-lock-linux.c ---*/
73 return "ticket lock";
104 * Acquire ticket lock. Increment the tail of the queue and use the original
105 * value as the ticket value. Wait until the head of the queue equals the
106 * ticket value. The futex used to wait depends on the ticket value in order
107 * to avoid that all threads get woken up every time a ticket lock is
111 * See also Nick Piggin, x86: FIFO ticket spinlocks, Linux kernel mailing list
116 unsigned ticket, futex_value local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/ringbuffer/
DynamicRingBuffer.java 25 import com.android.camera.one.v2.sharedimagereader.ticketpool.Ticket;
70 * @param parentTickets The parent ticket pool which implicitly determines
85 // Try to acquire a ticket to expand the ring-buffer and save the image.
86 Ticket ticket = null; local
90 // mQueue. However, for a brief moment, we acquire a ticket from
98 ticket = tryAcquireLowPriorityTicket();
99 if (ticket == null) {
104 ticket = tryAcquireLowPriorityTicket();
106 if (ticket != null)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/ticketpool/
ReservableTicketPool.java 47 * as soon as possible, which may depend on consumers of this ticket pool
71 * Wraps tickets from the parent ticket pool with logic to either release
75 private class TicketImpl implements Ticket {
76 private final Ticket mParentTicket;
79 private TicketImpl(Ticket parentTicket) {
93 // and return the ticket to the parent by closing it.
134 private final ArrayDeque<Ticket> mParentTickets;
172 public Collection<Ticket> acquire(int tickets) throws InterruptedException,
174 Collection<Ticket> acquiredParentTickets = acquireParentTickets(tickets);
176 List<Ticket> wrappedTicketList = new ArrayList<>()
    [all...]
  /external/boringssl/src/ssl/
tls13_client.cc 831 CBS body = msg.body, ticket_nonce, ticket, extensions; local
835 !CBS_get_u16_length_prefixed(&body, &ticket) ||
836 !CBS_stow(&ticket, &session->tlsext_tick, &session->tlsext_ticklen) ||
tls13_server.cc 157 // Rebase the session timestamp so that it is measured from ticket
180 CBB body, nonce_cbb, ticket, extensions;
187 !CBB_add_u16_length_prefixed(&body, &ticket) ||
189 !ssl_encrypt_ticket(ssl, &ticket, session.get()) ||
275 // Decode the ticket if we agreed on a PSK key exchange mode.
292 CBS ticket, binders; local
294 if (!ssl_ext_pre_shared_key_parse_clienthello(hs, &ticket, &binders,
305 ssl_process_ticket(ssl, &session, &unused_renew, CBS_data(&ticket),
306 CBS_len(&ticket), NULL, 0);
323 // Recover the client ticket age and convert to seconds
    [all...]
ssl_session.cc 280 // Copy the ticket.
489 static const char kTicketPlaceholder[] = "TICKET TOO LARGE";
505 // Rotate ticket key if necessary.
587 // Serialize the SSL_SESSION to be encoded into the ticket.
741 const uint8_t *ticket = NULL; local
747 client_hello, TLSEXT_TYPE_session_ticket, &ticket, &ticket_len);
749 switch (ssl_process_ticket(ssl, &session, &renew_ticket, ticket, ticket_len,
763 // The client didn't send a ticket, so the session ID is a real ID.
    [all...]
handshake_client.cc 1612 CBS new_session_ticket = msg.body, ticket; local
    [all...]
handshake_server.cc 1486 CBB body, ticket; local
    [all...]
t1_lib.cc 909 // TLS 1.3 uses a different ticket extension.
925 // Don't send TLS 1.3 session tickets in the ticket extension.
931 CBB ticket; local
933 !CBB_add_u16_length_prefixed(out, &ticket) ||
934 !CBB_add_bytes(&ticket, ticket_data, ticket_len) ||
1834 CBB contents, identity, ticket, binders, binder; local
    [all...]
  /prebuilts/misc/common/robolectric/3.5.1/lib/
bcprov-jdk15on-1.52.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
bcprov-jdk15on-1.52.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.50/
bcprov-jdk15on-1.50.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.56/
bcprov-jdk15on-1.56.jar 

Completed in 129 milliseconds