Lines Matching defs:catp
482 isc_logcategory_t *catp;
502 for (catp = lctx->categories; catp->name != NULL;) {
503 if (catp->id == UINT_MAX) {
508 catp = UNCONST(catp->name);
510 catp++;
514 catp->name = (void *)categories;
515 catp->id = UINT_MAX;
521 for (catp = categories; catp->name != NULL; catp++) {
522 catp->id = lctx->category_count++;
528 isc_logcategory_t *catp;
533 for (catp = lctx->categories; catp->name != NULL;) {
534 if (catp->id == UINT_MAX) {
536 * catp is neither modified nor returned to the
539 catp = UNCONST(catp->name);
541 if (strcmp(catp->name, name) == 0) {
542 return catp;
544 catp++;