| 445 | /* dict_flags_str - convert mask to string for debugging purposes */ |
| 446 | |
| 447 | const char *dict_flags_str(int dict_flags) |
| 448 | { |
| 449 | static __thread ACL_VSTRING *buf = 0; |
| 450 | |
| 451 | if (buf == 0) { |
| 452 | buf = acl_vstring_alloc(1); |
| 453 | acl_pthread_atexit_add(buf, free_vstring_fn); |
| 454 | } |
| 455 | |
| 456 | return (str_name_mask_opt(buf, "dictionary flags", dict_mask, |
| 457 | dict_flags, NAME_MASK_RETURN | NAME_MASK_PIPE)); |
| 458 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…