end                41 include/crm/common/iso8601.h     crm_time_t *end;
end               932 lib/common/iso8601.c             period->end = parse_date(period_str);
end               945 lib/common/iso8601.c     if (period->start == NULL && period->end == NULL) {
end               953 lib/common/iso8601.c     } else if (period->end == NULL && period->diff == NULL) {
end               961 lib/common/iso8601.c         free(period->end);
end               966 lib/common/iso8601.c     if (period->end == NULL && period->diff == NULL) {
end               970 lib/common/iso8601.c         period->start = crm_time_subtract(period->end, period->diff);
end               972 lib/common/iso8601.c     } else if (period->end == NULL) {
end               973 lib/common/iso8601.c         period->end = crm_time_add(period->start, period->diff);
end               977 lib/common/iso8601.c     crm_time_check(period->end);
end               217 lib/common/utils.c     char *end = NULL;
end               218 lib/common/utils.c     long number = strtol(value, &end, 10);
end               220 lib/common/utils.c     if(end && end[0] != '%') {
end              2506 lib/fencing/st_client.c     stonith_key_value_t *p, *end;
end              2516 lib/fencing/st_client.c     end = head;
end              2517 lib/fencing/st_client.c     while (end && end->next) {
end              2518 lib/fencing/st_client.c         end = end->next;
end              2521 lib/fencing/st_client.c     if (end) {
end              2522 lib/fencing/st_client.c         end->next = p;
end               118 lib/lrmd/lrmd_client.c     lrmd_list_t *p, *end;
end               123 lib/lrmd/lrmd_client.c     end = head;
end               124 lib/lrmd/lrmd_client.c     while (end && end->next) {
end               125 lib/lrmd/lrmd_client.c         end = end->next;
end               128 lib/lrmd/lrmd_client.c     if (end) {
end               129 lib/lrmd/lrmd_client.c         end->next = p;
end               155 lib/lrmd/lrmd_client.c     lrmd_key_value_t *p, *end;
end               161 lib/lrmd/lrmd_client.c     end = head;
end               162 lib/lrmd/lrmd_client.c     while (end && end->next) {
end               163 lib/lrmd/lrmd_client.c         end = end->next;
end               166 lib/lrmd/lrmd_client.c     if (end) {
end               167 lib/lrmd/lrmd_client.c         end->next = p;
end               589 lib/pengine/rules.c 	time_fn(end, value_i);					\
end               595 lib/pengine/rules.c     crm_time_t *end = NULL;
end               598 lib/pengine/rules.c     end = crm_time_new(NULL);
end               599 lib/pengine/rules.c     crm_time_set(end, start);
end               609 lib/pengine/rules.c     return end;
end               616 lib/pengine/rules.c     crm_time_t *end = NULL;
end               636 lib/pengine/rules.c         end = crm_time_new(value);
end               639 lib/pengine/rules.c     if (start != NULL && end == NULL && duration_spec != NULL) {
end               640 lib/pengine/rules.c         end = parse_xml_duration(start, duration_spec);
end               649 lib/pengine/rules.c         } else if (end != NULL && crm_time_compare(end, now) < 0) {
end               660 lib/pengine/rules.c     } else if (safe_str_eq(op, "lt") && crm_time_compare(end, now) > 0) {
end               671 lib/pengine/rules.c     crm_time_free(end);
end              1572 lib/pengine/unpack.c         const char *end = id + strlen(id) - 1;
end              1574 lib/pengine/unpack.c         for (const char *s = end; s > id; --s) {
end              1588 lib/pengine/unpack.c                     return (s == end)? s : (s - 1);
end              1590 lib/pengine/unpack.c                     return end;
end              1593 lib/pengine/unpack.c         return end;
end              1611 lib/pengine/unpack.c     const char *end = pe_base_name_end(last_rsc_id);
end              1614 lib/pengine/unpack.c     CRM_ASSERT(end);
end              1615 lib/pengine/unpack.c     basename = strndup(last_rsc_id, end - last_rsc_id + 1);
end              1633 lib/pengine/unpack.c     const char *end = pe_base_name_end(last_rsc_id);
end              1634 lib/pengine/unpack.c     size_t base_name_len = end - last_rsc_id + 1;
end              1637 lib/pengine/unpack.c     CRM_ASSERT(end);
end               848 libltdl/ltdl.c 	  char *end = p+1;
end               849 libltdl/ltdl.c 	  while (*end && !isspace((unsigned char) *end))
end               851 libltdl/ltdl.c 	      ++end;
end               856 libltdl/ltdl.c 	      char save = *end;
end               857 libltdl/ltdl.c 	      *end = 0; /* set a temporary string terminator */
end               862 libltdl/ltdl.c 	      *end = save;
end               869 libltdl/ltdl.c 	  p = end;
end               899 libltdl/ltdl.c 	  char *end = p+1;
end               900 libltdl/ltdl.c 	  while (*end && !isspace ((unsigned char) *end))
end               902 libltdl/ltdl.c 	      ++end;
end               908 libltdl/ltdl.c 	      char save = *end;
end               909 libltdl/ltdl.c 	      *end = 0; /* set a temporary string terminator */
end               924 libltdl/ltdl.c 	      *end = save;
end               926 libltdl/ltdl.c 	  p = end;
end              1001 libltdl/ltdl.c   const char *end   = strrchr (str, '\'');
end              1007 libltdl/ltdl.c   if (!end || end == str)
end              1012 libltdl/ltdl.c       tmp = MALLOC (char, end - str);
end              1016 libltdl/ltdl.c       memcpy(tmp, &str[1], (end - str) - 1);
end              1017 libltdl/ltdl.c       tmp[(end - str) - 1] = LT_EOS_CHAR;
end              1770 libltdl/ltdl.c   char   *end	    = 0;
end              1780 libltdl/ltdl.c   end     = dp->d_name + D_NAMLEN(dp);
end              1785 libltdl/ltdl.c     for (p = end; p -1 > dp->d_name; --p)
end              1790 libltdl/ltdl.c       end = p;
end              1796 libltdl/ltdl.c     for (p = end -1; p > dp->d_name; --p)
end              1799 libltdl/ltdl.c 	  end = p;
end              1805 libltdl/ltdl.c   end_offset	= end - dp->d_name;
end              1569 pengine/constraints.c                  action_t ** begin, action_t ** end, action_t ** inv_begin, action_t ** inv_end,
end              1623 pengine/constraints.c         *end = NULL;
end               320 pengine/notif.c                                action_t * end, pe_working_set_t * data_set)
end               377 pengine/notif.c     if (end) {
end               379 pengine/notif.c         key = generate_notify_key(rsc->id, "post", end->task);
end               381 pengine/notif.c             custom_action(rsc, key, RSC_NOTIFY, NULL, is_set(end->flags, pe_action_optional), TRUE,
end               386 pengine/notif.c         if (is_set(end->flags, pe_action_runnable)) {
end               396 pengine/notif.c         add_hash_param(n_data->post->meta, "notify_key_operation", end->task);
end               399 pengine/notif.c         key = generate_notify_key(rsc->id, "confirmed-post", end->task);
end               401 pengine/notif.c             custom_action(rsc, key, RSC_NOTIFIED, NULL, is_set(end->flags, pe_action_optional),
end               406 pengine/notif.c         if (is_set(end->flags, pe_action_runnable)) {
end               416 pengine/notif.c         add_hash_param(n_data->post_done->meta, "notify_key_operation", end->task);
end               418 pengine/notif.c         order_actions(end, n_data->post, pe_order_implies_then);
end               422 pengine/notif.c     if (start && end) {
end                25 pengine/notif.h                                                action_t *start, action_t *end,
end               158 tools/ipmiservicelogd.c             char *end = serialNumber + strlen(serialNumber) - 1;
end               161 tools/ipmiservicelogd.c             while (end > serialNumber
end               162 tools/ipmiservicelogd.c                    && (*end == '\n' || *end == '\r' || *end == '\t' || *end == ' ')
end               164 tools/ipmiservicelogd.c                 *end = '\0';
end               165 tools/ipmiservicelogd.c                 end--;
end                55 tools/test.iso8601.c     char *end = NULL;
end                60 tools/test.iso8601.c         end = crm_time_as_string(dtp->end, flags);
end                64 tools/test.iso8601.c         printf("Period: %s to %s\n", start, end);
end                66 tools/test.iso8601.c         do_crm_log(log_level, "Period: %s to %s", start, end);
end                69 tools/test.iso8601.c     free(end);
end               228 tools/test.iso8601.c         crm_time_free(interval->end);