MCPcopy Create free account
hub / github.com/acl-dev/acl / dict_flags_str

Function dict_flags_str

lib_dict/src/dict.c:447–458  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

445/* dict_flags_str - convert mask to string for debugging purposes */
446
447const 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}

Callers

nothing calls this directly

Calls 3

acl_vstring_allocFunction · 0.85
acl_pthread_atexit_addFunction · 0.85
str_name_mask_optFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…