Searched defs:ticket (Results 1 - 13 of 13) sorted by relevance

/external/valgrind/coregrind/m_scheduler/
H A Dticket-lock-linux.c3 /*--- 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_valu local
[all...]
/external/icu/icu4c/source/tools/toolutil/
H A Dudbgutil.cpp585 #define ICU_TRAC_URL "http://bugs.icu-project.org/trac/ticket/"
586 #define CLDR_TRAC_URL "http://unicode.org/cldr/trac/ticket/"
589 U_CAPI char *udbg_knownIssueURLFrom(const char *ticket, char *buf) { argument
590 if( ticket==NULL ) {
594 if( !strncmp(ticket, CLDR_TICKET_PREFIX, strlen(CLDR_TICKET_PREFIX)) ) {
596 strcat( buf, ticket+strlen(CLDR_TICKET_PREFIX) );
599 strcat( buf, ticket );
608 U_CAPI void *udbg_knownIssue_openU(void *ptr, const char *ticket, char *where, const UChar *msg, UBool *firstForTicket, argument
613 printf("%s\tKnown Issue #%s\n", where, ticket);
618 U_CAPI void *udbg_knownIssue_open(void *ptr, const char *ticket, cha argument
666 add(const char *ticket, const char *where, const UChar *msg, UBool *firstForTicket, UBool *firstForWhere) argument
688 add(const char *ticket, const char *where, const char *msg, UBool *firstForTicket, UBool *firstForWhere) argument
738 udbg_knownIssue_openU(void *ptr, const char *ticket, char *where, const UChar *msg, UBool *firstForTicket, UBool *firstForWhere) argument
750 udbg_knownIssue_open(void *ptr, const char *ticket, char *where, const char *msg, UBool *firstForTicket, UBool *firstForWhere) argument
[all...]
/external/boringssl/src/ssl/
H A Ds3_clnt.c257 /* receive renewed session ticket */
449 /* Allow NewSessionTicket if ticket expected */
517 /* Allow NewSessionTicket if ticket expected */
1501 CBS new_session_ticket, ticket; local
1515 !CBS_get_u16_length_prefixed(&new_session_ticket, &ticket) ||
1522 if (!CBS_stow(&ticket, &s->session->tlsext_tick,
1528 /* Generate a session ID for this session based on the session ticket. We use
1529 * the session ID mechanism for detecting ticket resumption. This also fits in
1531 if (!EVP_Digest(CBS_data(&ticket), CBS_len(&ticket),
[all...]
/external/icu/icu4c/source/tools/ctestfw/
H A Dctest.c92 static UBool vlog_knownIssue(const char *ticket, const char *pattern, va_list ap);
696 static UBool vlog_knownIssue(const char *ticket, const char *pattern, va_list ap) argument
706 knownList = udbg_knownIssue_open(knownList, ticket, gTestName, buf,
710 log_info("(Known issue #%s) %s\n", ticket, buf);
712 log_verbose("(Known issue #%s) %s\n", ticket, buf);
807 log_knownIssue(const char *ticket, const char *pattern, ...) { argument
810 return vlog_knownIssue(ticket, pattern, ap);
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_fast.c73 static int eap_fast_session_ticket_cb(void *ctx, const u8 *ticket, size_t len, argument
96 wpa_hexdump(MSG_DEBUG, "EAP-FAST: SessionTicket", ticket, len);
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_server_fast.c120 static int eap_fast_session_ticket_cb(void *ctx, const u8 *ticket, size_t len, argument
136 ticket, len);
138 if (len < 4 || WPA_GET_BE16(ticket) != PAC_TYPE_PAC_OPAQUE) {
144 pac_opaque_len = WPA_GET_BE16(ticket + 2);
145 pac_opaque = ticket + 4;
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_fast.c73 static int eap_fast_session_ticket_cb(void *ctx, const u8 *ticket, size_t len, argument
96 wpa_hexdump(MSG_DEBUG, "EAP-FAST: SessionTicket", ticket, len);
/external/wpa_supplicant_8/src/eap_server/
H A Deap_server_fast.c120 static int eap_fast_session_ticket_cb(void *ctx, const u8 *ticket, size_t len, argument
136 ticket, len);
138 if (len < 4 || WPA_GET_BE16(ticket) != PAC_TYPE_PAC_OPAQUE) {
144 pac_opaque_len = WPA_GET_BE16(ticket + 2);
145 pac_opaque = ticket + 4;
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Deap_fast.c73 static int eap_fast_session_ticket_cb(void *ctx, const u8 *ticket, size_t len, argument
96 wpa_hexdump(MSG_DEBUG, "EAP-FAST: SessionTicket", ticket, len);
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_server_fast.c120 static int eap_fast_session_ticket_cb(void *ctx, const u8 *ticket, size_t len, argument
136 ticket, len);
138 if (len < 4 || WPA_GET_BE16(ticket) != PAC_TYPE_PAC_OPAQUE) {
144 pac_opaque_len = WPA_GET_BE16(ticket + 2);
145 pac_opaque = ticket + 4;
/external/icu/icu4c/source/test/intltest/
H A Dintltest.cpp954 UBool IntlTest::logKnownIssue(const char *ticket, const char *fmt, ...) argument
963 return logKnownIssue(ticket, UnicodeString(buffer, ""));
966 UBool IntlTest::logKnownIssue(const char *ticket) { argument
967 return logKnownIssue(ticket, UnicodeString());
970 UBool IntlTest::logKnownIssue(const char *ticket, const UnicodeString &msg) { argument
978 knownList = udbg_knownIssue_openU(knownList, ticket, fullpath, msg2.getTerminatedBuffer(), &firstForTicket, &firstForWhere);
981 UnicodeString(ticket, -1, US_INV) + UNICODE_STRING_SIMPLE(") ") + msg;
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
H A DTestFmwk.java836 static final String ICU_TRAC_URL = "http://bugs.icu-project.org/trac/ticket/";
837 static final String CLDR_TRAC_URL = "http://unicode.org/cldr/trac/ticket/";
845 * @param ticket A ticket number string. For an ICU ticket, use numeric characters only,
846 * such as "10245". For a CLDR ticket, use prefix "cldrbug:" followed by ticket number,
851 public boolean logKnownIssue(String ticket, String comment) { argument
864 if (ticket != null && ticket
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.forms_3.5.2.r36_v20100702.jar ... .lang.Object { private static int counter private int ticket private org.eclipse.ui.forms.IDetailsPage ...

Completed in 3010 milliseconds