props             131 fencing/remote.c     device_properties_t *props = (device_properties_t*)value;
props             134 fencing/remote.c     if (!props->executed[data->op->phase]
props             135 fencing/remote.c         && (!data->verified_only || props->verified)) {
props             179 fencing/remote.c     device_properties_t *props = g_hash_table_lookup(peer->devices, device);
props             181 fencing/remote.c     return (props && !props->executed[op->phase]
props             182 fencing/remote.c            && !props->disallowed[op->phase])? props : NULL;
props             200 fencing/remote.c     device_properties_t *props = find_peer_device(op, peer, device);
props             202 fencing/remote.c     if ((props == NULL) || (verified_devices_only && !props->verified)) {
props             208 fencing/remote.c     props->executed[op->phase] = TRUE;
props            1228 fencing/remote.c     device_properties_t *props;
props            1234 fencing/remote.c     props = g_hash_table_lookup(peer->devices, device);
props            1235 fencing/remote.c     if (!props) {
props            1239 fencing/remote.c     return (props->custom_action_timeout[op->phase]?
props            1240 fencing/remote.c            props->custom_action_timeout[op->phase] : op->base_timeout)
props            1241 fencing/remote.c            + props->delay_max[op->phase];
props            1262 fencing/remote.c     device_properties_t *props = value;
props            1265 fencing/remote.c     if (!props->executed[timeout->op->phase]
props            1266 fencing/remote.c         && !props->disallowed[timeout->op->phase]) {
props            1664 fencing/remote.c                       enum st_remap_phase phase, device_properties_t *props)
props            1666 fencing/remote.c     props->custom_action_timeout[phase] = 0;
props            1668 fencing/remote.c                           &props->custom_action_timeout[phase]);
props            1669 fencing/remote.c     if (props->custom_action_timeout[phase]) {
props            1671 fencing/remote.c                   peer, device, action, props->custom_action_timeout[phase]);
props            1674 fencing/remote.c     props->delay_max[phase] = 0;
props            1675 fencing/remote.c     crm_element_value_int(xml, F_STONITH_DELAY_MAX, &props->delay_max[phase]);
props            1676 fencing/remote.c     if (props->delay_max[phase]) {
props            1678 fencing/remote.c                   peer, device, props->delay_max[phase], action);
props            1681 fencing/remote.c     props->delay_base[phase] = 0;
props            1682 fencing/remote.c     crm_element_value_int(xml, F_STONITH_DELAY_BASE, &props->delay_base[phase]);
props            1683 fencing/remote.c     if (props->delay_base[phase]) {
props            1685 fencing/remote.c                   peer, device, props->delay_base[phase], action);
props            1704 fencing/remote.c         props->disallowed[phase] = TRUE;
props            1725 fencing/remote.c     device_properties_t *props = calloc(1, sizeof(device_properties_t));
props            1728 fencing/remote.c     CRM_ASSERT(props != NULL);
props            1729 fencing/remote.c     g_hash_table_insert(result->devices, strdup(device), props);
props            1736 fencing/remote.c         props->verified = TRUE;
props            1741 fencing/remote.c                           op, st_phase_requested, props);
props            1749 fencing/remote.c                                   op, st_phase_off, props);
props            1752 fencing/remote.c                                   op, st_phase_on, props);