Lines Matching refs:firstForTicket
619 U_CAPI void *udbg_knownIssue_openU(void *ptr, const char *ticket, char *where, const UChar *msg, UBool *firstForTicket,
629 U_CAPI void *udbg_knownIssue_open(void *ptr, const char *ticket, char *where, const char *msg, UBool *firstForTicket,
660 void add(const char *ticket, const char *where, const UChar *msg, UBool *firstForTicket, UBool *firstForWhere);
661 void add(const char *ticket, const char *where, const char *msg, UBool *firstForTicket, UBool *firstForWhere);
677 void KnownIssues::add(const char *ticket, const char *where, const UChar *msg, UBool *firstForTicket, UBool *firstForWhere)
680 if(firstForTicket!=NULL) *firstForTicket = TRUE;
683 if(firstForTicket!=NULL) *firstForTicket = FALSE;
700 void KnownIssues::add(const char *ticket, const char *where, const char *msg, UBool *firstForTicket, UBool *firstForWhere)
703 if(firstForTicket!=NULL) *firstForTicket = TRUE;
706 if(firstForTicket!=NULL) *firstForTicket = FALSE;
750 U_CAPI void *udbg_knownIssue_openU(void *ptr, const char *ticket, char *where, const UChar *msg, UBool *firstForTicket,
757 t->add(ticket, where, msg, firstForTicket, firstForWhere);
762 U_CAPI void *udbg_knownIssue_open(void *ptr, const char *ticket, char *where, const char *msg, UBool *firstForTicket,
769 t->add(ticket, where, msg, firstForTicket, firstForWhere);