Lines Matching defs:key
843 char *key, *value ;
855 for (key = buf ; key < buf + chunk_size ; )
856 { value = key + strlen (key) + 1 ;
859 psf_log_printf (psf, " %-12s : %s\n", key, value) ;
861 hash = string_hash32 (key) ;
895 psf_log_printf (psf, " Unhandled hash 0x%x : /* '%s' */\n", hash, key) ;
899 key = value + strlen (value) + 1 ;
913 put_key_value (struct put_buffer * buf, const char * key, const char * value)
916 if (buf->index + strlen (key) + strlen (value) + 2 > sizeof (buf->s))
919 written = snprintf (buf->s + buf->index, sizeof (buf->s) - buf->index, "%s%c%s%c", key, 0, value, 0) ;