Lines Matching refs:alloced_key
273 char *alloced_key; in message_list_hash_insert_entry() local
284 alloced_key = (char *) xallocsa (keylen); in message_list_hash_insert_entry()
285 memcpy (alloced_key, mp->msgctxt, msgctxt_len); in message_list_hash_insert_entry()
286 alloced_key[msgctxt_len] = MSGCTXT_SEPARATOR; in message_list_hash_insert_entry()
287 memcpy (alloced_key + msgctxt_len + 1, mp->msgid, msgid_len + 1); in message_list_hash_insert_entry()
288 key = alloced_key; in message_list_hash_insert_entry()
292 alloced_key = NULL; in message_list_hash_insert_entry()
300 freesa (alloced_key); in message_list_hash_insert_entry()
457 char *alloced_key; in message_list_search() local
467 alloced_key = (char *) xallocsa (keylen); in message_list_search()
468 memcpy (alloced_key, msgctxt, msgctxt_len); in message_list_search()
469 alloced_key[msgctxt_len] = MSGCTXT_SEPARATOR; in message_list_search()
470 memcpy (alloced_key + msgctxt_len + 1, msgid, msgid_len + 1); in message_list_search()
471 key = alloced_key; in message_list_search()
475 alloced_key = NULL; in message_list_search()
485 freesa (alloced_key); in message_list_search()