h                  86 include/crm/common/iso8601.h int crm_time_get_timeofday(crm_time_t * dt, uint32_t * h, uint32_t * m, uint32_t * s);
h                  87 include/crm/common/iso8601.h int crm_time_get_timezone(crm_time_t * dt, uint32_t * h, uint32_t * m);
h                 230 lib/common/iso8601.c crm_time_get_sec(int sec, uint * h, uint * m, uint * s)
h                 248 lib/common/iso8601.c     *h = hours;
h                 256 lib/common/iso8601.c crm_time_get_timeofday(crm_time_t * dt, uint * h, uint * m, uint * s)
h                 258 lib/common/iso8601.c     return crm_time_get_sec(dt->seconds, h, m, s);
h                 262 lib/common/iso8601.c crm_time_get_timezone(crm_time_t * dt, uint * h, uint * m)
h                 266 lib/common/iso8601.c     return crm_time_get_sec(dt->seconds, h, m, &s);
h                 360 lib/common/iso8601.c     int h = -1;
h                 365 lib/common/iso8601.c     h = dt->days + jan1 - 1;
h                 366 lib/common/iso8601.c     *d = 1 + ((h - 1) % 7);
h                 430 lib/common/iso8601.c         uint h = 0, m = 0, s = 0;
h                 434 lib/common/iso8601.c         crm_time_get_sec(dt->seconds, &h, &m, &s);
h                 451 lib/common/iso8601.c             if(h) {
h                 452 lib/common/iso8601.c                 offset += snprintf(date_s+offset, DATE_MAX - offset, "%u hour%s ", h, h>1?"s":"");
h                 509 lib/common/iso8601.c         uint h, m, s;
h                 516 lib/common/iso8601.c         if (crm_time_get_timeofday(dt, &h, &m, &s)) {
h                 517 lib/common/iso8601.c             snprintf(time_s, 33, "%.2u:%.2u:%.2u", h, m, s);
h                 521 lib/common/iso8601.c             crm_time_get_sec(dt->offset, &h, &m, &s);
h                 530 lib/common/iso8601.c             snprintf(offset_s, 24, " %c%.2u:%.2u", dt->offset < 0 ? '-' : '+', h, m);
h                 621 lib/common/iso8601.c     uint h, m, s;
h                 645 lib/common/iso8601.c     crm_time_get_sec(dt->offset, &h, &m, &s);
h                 646 lib/common/iso8601.c     crm_trace("Got tz: %c%2.d:%.2d", dt->offset < 0 ? '-' : '+', h, m);
h                 353 lib/common/strings.c     guint32 h = 0;
h                 356 lib/common/strings.c         h = (h << 5) - h + *p;
h                 358 lib/common/strings.c     return h;
h                 365 lib/common/strings.c     guint32 h = 0;
h                 368 lib/common/strings.c         h = (h << 5) - h + g_ascii_tolower(*p);
h                 370 lib/common/strings.c     return h;
h                 554 lib/pengine/rules.c     uint32_t h, m, s, y, d, w;
h                 558 lib/pengine/rules.c     crm_time_get_timeofday(now, &h, &m, &s);
h                 562 lib/pengine/rules.c     cron_check("hours", h);
h                  52 mcp/corosync.c cfg_shutdown_callback(corosync_cfg_handle_t h, corosync_cfg_shutdown_flags_t flags)
h                  59 mcp/corosync.c     corosync_cfg_replyto_shutdown(h, COROSYNC_CFG_SHUTDOWN_FLAG_NO);
h                1060 tools/crm_resource_runtime.c #define waiting_for_starts(d, r, h) ((g_list_length(d) > 0) || \
h                1061 tools/crm_resource_runtime.c                                     (resource_is_running_on((r), (h)) == FALSE))