period             79 include/crm/common/iso8601.h void crm_time_free_period(crm_time_period_t *period);
period            199 lib/cluster/election.c election_timeout_set_period(election_t *e, guint period)
period            202 lib/cluster/election.c         mainloop_timer_set_period(e->timeout, period);
period           1094 lib/common/iso8601.c     crm_time_period_t *period = NULL;
period           1102 lib/common/iso8601.c     period = calloc(1, sizeof(crm_time_period_t));
period           1103 lib/common/iso8601.c     CRM_ASSERT(period != NULL);
period           1106 lib/common/iso8601.c         period->diff = crm_time_parse_duration(period_str);
period           1107 lib/common/iso8601.c         if (period->diff == NULL) {
period           1111 lib/common/iso8601.c         period->start = parse_date(period_str);
period           1112 lib/common/iso8601.c         if (period->start == NULL) {
period           1121 lib/common/iso8601.c             if (period->diff != NULL) {
period           1127 lib/common/iso8601.c             period->diff = crm_time_parse_duration(period_str);
period           1128 lib/common/iso8601.c             if (period->diff == NULL) {
period           1132 lib/common/iso8601.c             period->end = parse_date(period_str);
period           1133 lib/common/iso8601.c             if (period->end == NULL) {
period           1138 lib/common/iso8601.c     } else if (period->diff != NULL) {
period           1140 lib/common/iso8601.c         period->start = crm_time_new(NULL);
period           1150 lib/common/iso8601.c     if (period->start == NULL) {
period           1151 lib/common/iso8601.c         period->start = crm_time_subtract(period->end, period->diff);
period           1153 lib/common/iso8601.c     } else if (period->end == NULL) {
period           1154 lib/common/iso8601.c         period->end = crm_time_add(period->start, period->diff);
period           1157 lib/common/iso8601.c     if (crm_time_check(period->start) == FALSE) {
period           1162 lib/common/iso8601.c     if (crm_time_check(period->end) == FALSE) {
period           1167 lib/common/iso8601.c     return period;
period           1172 lib/common/iso8601.c     crm_time_free_period(period);
period           1182 lib/common/iso8601.c crm_time_free_period(crm_time_period_t *period)
period           1184 lib/common/iso8601.c     if (period) {
period           1185 lib/common/iso8601.c         crm_time_free(period->start);
period           1186 lib/common/iso8601.c         crm_time_free(period->end);
period           1187 lib/common/iso8601.c         crm_time_free(period->diff);
period           1188 lib/common/iso8601.c         free(period);
period            218 tools/iso8601.c         crm_time_period_t *period = crm_time_parse_period(period_s);
period            220 tools/iso8601.c         if (period == NULL) {
period            224 tools/iso8601.c         log_time_period(LOG_TRACE, period,
period            226 tools/iso8601.c         log_time_period(LOG_STDOUT, period,
period            228 tools/iso8601.c         crm_time_free_period(period);