orig               33 crmd/crmd_messages.h extern ha_msg_input_t *new_ha_msg_input(xmlNode * orig);
orig               34 crmd/crmd_messages.h extern void delete_ha_msg_input(ha_msg_input_t * orig);
orig              112 crmd/crmd_messages.h extern ha_msg_input_t *copy_ha_msg_input(ha_msg_input_t * orig);
orig               31 crmd/join_client.c extern ha_msg_input_t *copy_ha_msg_input(ha_msg_input_t * orig);
orig              208 crmd/messages.c copy_ha_msg_input(ha_msg_input_t * orig)
orig              213 crmd/messages.c     if (orig != NULL) {
orig              215 crmd/messages.c         data = copy_xml(orig->msg);
orig              221 crmd/messages.c     if (orig && orig->msg != NULL) {
orig             1015 crmd/messages.c new_ha_msg_input(xmlNode * orig)
orig             1020 crmd/messages.c     input_copy->msg = orig;
orig             1026 crmd/messages.c delete_ha_msg_input(ha_msg_input_t * orig)
orig             1028 crmd/messages.c     if (orig == NULL) {
orig             1031 crmd/messages.c     free_xml(orig->msg);
orig             1032 crmd/messages.c     free(orig);
orig              254 lib/cluster/heartbeat.c     int orig = 0;
orig              264 lib/cluster/heartbeat.c     orig = strlen(buffer);
orig              265 lib/cluster/heartbeat.c     if (orig < CRM_BZ2_THRESHOLD) {
orig              270 lib/cluster/heartbeat.c     len = (orig * 1.1) + 600;   /* recommended size */
orig              273 lib/cluster/heartbeat.c     rc = BZ2_bzBuffToBuffCompress(compressed, &len, buffer, orig, CRM_BZ2_BLOCKS, 0, CRM_BZ2_WORK);
orig              284 lib/cluster/heartbeat.c     crm_trace("Compression details: %d -> %d", orig, len);
orig              291 lib/cluster/heartbeat.c         unsigned int used = orig;
orig              295 lib/cluster/heartbeat.c         uncompressed = calloc(1, orig);
orig              299 lib/cluster/heartbeat.c         CRM_CHECK(used == orig,;