time_str          551 lib/common/iso8601.c crm_time_parse_sec(const char *time_str)
time_str          558 lib/common/iso8601.c     rc = sscanf(time_str, "%d:%d:%d", &hour, &minute, &second);
time_str          560 lib/common/iso8601.c         rc = sscanf(time_str, "%2d%2d%2d", &hour, &minute, &second);
time_str          576 lib/common/iso8601.c         crm_err("Bad time: %s (%d)", time_str, rc);
time_str          619 lib/common/iso8601.c crm_time_parse(const char *time_str, crm_time_t * a_time)
time_str          630 lib/common/iso8601.c     if (time_str) {
time_str          631 lib/common/iso8601.c         dt->seconds = crm_time_parse_sec(time_str);
time_str          633 lib/common/iso8601.c         offset_s = strstr(time_str, "Z");
time_str          635 lib/common/iso8601.c             offset_s = strstr(time_str, " ");