msec 356 lib/common/strings.c long long msec = PCMK__PARSE_INT_DEFAULT; msec 368 lib/common/strings.c rc = scan_ll(input, &msec, PCMK__PARSE_INT_DEFAULT, &units); msec 370 lib/common/strings.c if ((rc == ERANGE) && (msec > 0)) { msec 371 lib/common/strings.c crm_warn("'%s' will be clipped to %lld", input, msec); msec 373 lib/common/strings.c } else if ((rc != pcmk_rc_ok) || (msec < 0)) { msec 431 lib/common/strings.c if (msec > (LLONG_MAX / multiplier)) { msec 434 lib/common/strings.c return (msec * multiplier) / divisor; msec 454 lib/common/strings.c long long msec = PCMK__PARSE_INT_DEFAULT; msec 458 lib/common/strings.c msec = 0; msec 466 lib/common/strings.c msec = crm_time_get_seconds(period_s); msec 467 lib/common/strings.c msec = QB_MIN(msec, G_MAXUINT / 1000) * 1000; msec 472 lib/common/strings.c msec = crm_get_msec(input); msec 475 lib/common/strings.c if (msec < 0) { msec 478 lib/common/strings.c msec = 0; msec 484 lib/common/strings.c *result_ms = (msec >= G_MAXUINT)? G_MAXUINT : (guint) msec;