Lines Matching refs:key
73 char *key;
85 const char *key);
100 payload->key = NULL;
117 LOS_MemFree((VOID *)OS_SYS_MEM_ADDR, p->key);
122 const char *key)
127 if (key && p->key) {
128 if (strcmp(p->key, key) == 0) {
171 const char *key, long value)
176 if ((!event) || (!key)) {
177 HWLOG_ERR("Bad input event or key for %s", __func__);
181 payload = HiviewHieventGetPayload(event->head, key);
187 payload->key = strdup(key);
210 const char *key, const char *value)
215 if ((!event) || (!key) || (!value)) {
216 HWLOG_ERR("Bad key for %s", __func__);
220 payload = HiviewHieventGetPayload(event->head, key);
226 payload->key = strdup(key);
406 /* fill key */
407 if (p->key) {
408 tmplen = snprintf_s(tmp, len, len - 1, "%s:", p->key);