param_check       190 include/crm/common/scheduler_internal.h     GList *param_check;             // History entries that need to be checked
param_check       363 lib/common/scheduler.c     struct param_check *param_check = NULL;
param_check       369 lib/common/scheduler.c     param_check = pcmk__assert_alloc(1, sizeof(struct param_check));
param_check       370 lib/common/scheduler.c     param_check->rsc_history = rsc_history;
param_check       371 lib/common/scheduler.c     param_check->rsc = rsc;
param_check       372 lib/common/scheduler.c     param_check->node = node;
param_check       373 lib/common/scheduler.c     param_check->check_type = flag;
param_check       375 lib/common/scheduler.c     rsc->priv->scheduler->priv->param_check =
param_check       376 lib/common/scheduler.c         g_list_prepend(rsc->priv->scheduler->priv->param_check, param_check);
param_check       394 lib/common/scheduler.c     for (GList *item = scheduler->priv->param_check;
param_check       396 lib/common/scheduler.c         struct param_check *param_check = item->data;
param_check       398 lib/common/scheduler.c         cb(param_check->rsc, param_check->node, param_check->rsc_history,
param_check       399 lib/common/scheduler.c            param_check->check_type);
param_check       412 lib/common/scheduler.c     if ((scheduler != NULL) && (scheduler->priv->param_check != NULL)) {
param_check       413 lib/common/scheduler.c         g_list_free_full(scheduler->priv->param_check, free);
param_check       414 lib/common/scheduler.c         scheduler->priv->param_check = NULL;