v                  85 attrd/commands.c     attribute_value_t *v = data;
v                  87 attrd/commands.c     free(v->nodename);
v                  88 attrd/commands.c     free(v->current);
v                  89 attrd/commands.c     free(v->requested);
v                  90 attrd/commands.c     free(v);
v                 254 attrd/commands.c             attribute_value_t *v = NULL;
v                 257 attrd/commands.c                 v = g_hash_table_lookup(a->values, host);
v                 259 attrd/commands.c             int_value = attrd_expand_value(value, (v? v->current : NULL));
v                 393 attrd/commands.c         attribute_value_t *v;
v                 406 attrd/commands.c             v = g_hash_table_lookup(a->values, host);
v                 413 attrd/commands.c             crm_xml_add(host_value, F_ATTRD_VALUE, (v? v->current : NULL));
v                 420 attrd/commands.c             while (g_hash_table_iter_next(&iter, NULL, (gpointer *) &v)) {
v                 426 attrd/commands.c                 crm_xml_add(host_value, F_ATTRD_HOST, v->nodename);
v                 427 attrd/commands.c                 crm_xml_add(host_value, F_ATTRD_VALUE, v->current);
v                 530 attrd/commands.c     const char *v = crm_element_value(xml, F_ATTRD_VERSION);
v                 556 attrd/commands.c     } else if(v == NULL) {
v                 638 attrd/commands.c     attribute_value_t *v = NULL;
v                 646 attrd/commands.c         while (g_hash_table_iter_next(&vIter, NULL, (gpointer *) & v)) {
v                 647 attrd/commands.c             crm_debug("Syncing %s[%s] = %s to %s", a->id, v->nodename, v->current, peer?peer->uname:"everyone");
v                 649 attrd/commands.c                                 v->nodename, v->nodeid, v->current);
v                 701 attrd/commands.c     attribute_value_t *v = g_hash_table_lookup(values, host);
v                 719 attrd/commands.c     if (v == NULL) {
v                 720 attrd/commands.c         v = calloc(1, sizeof(attribute_value_t));
v                 721 attrd/commands.c         CRM_ASSERT(v != NULL);
v                 723 attrd/commands.c         v->nodename = strdup(host);
v                 724 attrd/commands.c         CRM_ASSERT(v->nodename != NULL);
v                 726 attrd/commands.c         v->is_remote = is_remote;
v                 727 attrd/commands.c         g_hash_table_replace(values, v->nodename, v);
v                 729 attrd/commands.c     return(v);
v                 737 attrd/commands.c     attribute_value_t *v = NULL;
v                 820 attrd/commands.c     v = attrd_lookup_or_create_value(a->values, host, xml);
v                 822 attrd/commands.c     if (filter && safe_str_neq(v->current, value)
v                 828 attrd/commands.c                    attr, host, v->current, value, peer->uname);
v                 831 attrd/commands.c         v = g_hash_table_lookup(a->values, host);
v                 833 attrd/commands.c                             a->is_private, v->nodename, v->nodeid, v->current);
v                 841 attrd/commands.c     } else if (safe_str_neq(v->current, value)) {
v                 843 attrd/commands.c                  attr, host, v->current, value, peer->uname);
v                 844 attrd/commands.c         free(v->current);
v                 845 attrd/commands.c         v->current = (value? strdup(value) : NULL);
v                 861 attrd/commands.c     if ((v->nodeid == 0) && (v->is_remote == FALSE)
v                 862 attrd/commands.c         && (crm_element_value_int(xml, F_ATTRD_HOST_ID, (int*)&v->nodeid) == 0)) {
v                 864 attrd/commands.c         crm_node_t *known_peer = crm_get_peer(v->nodeid, host);
v                 938 attrd/commands.c     attribute_value_t *v = NULL;
v                 970 attrd/commands.c     while (g_hash_table_iter_next(&iter, (gpointer *) & peer, (gpointer *) & v)) {
v                 971 attrd/commands.c         do_crm_log(level, "Update %d for %s[%s]=%s: %s (%d)", call_id, a->id, peer, v->requested, pcmk_strerror(rc), rc);
v                 972 attrd/commands.c         free(v->requested);
v                 973 attrd/commands.c         v->requested = NULL;
v                1044 attrd/commands.c set_alert_attribute_value(GHashTable *t, attribute_value_t *v)
v                1050 attrd/commands.c     a_v->nodeid = v->nodeid;
v                1051 attrd/commands.c     a_v->nodename = strdup(v->nodename);
v                1053 attrd/commands.c     if (v->current != NULL) {
v                1054 attrd/commands.c         a_v->current = strdup(v->current);
v                1082 attrd/commands.c     attribute_value_t *v = NULL;
v                1128 attrd/commands.c     while (g_hash_table_iter_next(&iter, NULL, (gpointer *) & v)) {
v                1129 attrd/commands.c         crm_node_t *peer = crm_get_peer_full(v->nodeid, v->nodename, CRM_GET_PEER_ANY);
v                1134 attrd/commands.c                        a->id, v->nodename, v->current, peer);
v                1139 attrd/commands.c         if (peer->id && (v->nodeid == 0)) {
v                1141 attrd/commands.c             v->nodeid = peer->id;
v                1154 attrd/commands.c                        a->id, v->nodename, v->current, peer);
v                1159 attrd/commands.c         crm_debug("Update: %s[%s]=%s (%s %u %u %s)", a->id, v->nodename,
v                1160 attrd/commands.c                   v->current, peer->uuid, peer->id, v->nodeid, peer->uname);
v                1161 attrd/commands.c         build_update_element(xml_top, a, peer->uuid, v->current);
v                1165 attrd/commands.c         set_alert_attribute_value(alert_attribute_value, v);
v                1167 attrd/commands.c         free(v->requested);
v                1168 attrd/commands.c         v->requested = NULL;
v                1169 attrd/commands.c         if (v->current) {
v                1170 attrd/commands.c             v->requested = strdup(v->current);
v                 567 crmd/lrm.c                 const char *v = g_hash_table_lookup(op->params, param->rap_name);
v                 569 crmd/lrm.c                 if (v != NULL) {
v                 570 crmd/lrm.c                     crm_trace("Adding attr %s=%s to the xml result", param->rap_name, v);
v                 571 crmd/lrm.c                     crm_xml_add(result, param->rap_name, v);
v                  69 include/crm/common/util.h guint crm_strcase_hash(gconstpointer v);
v                  70 include/crm/common/util.h guint g_str_hash_traditional(gconstpointer v);
v                  43 lib/common/schemas.c     unsigned char v[2];
v                  46 lib/common/schemas.c #define SCHEMA_ZERO { .v = { 0, 0 } }
v                  49 lib/common/schemas.c     sscanf((s), prefix "%hhu.%hhu" suffix, &((version).v[0]), &((version).v[1]))
v                  52 lib/common/schemas.c     crm_strdup_printf(prefix "%u.%u" suffix, (version).v[0], (version).v[1])
v                 109 lib/common/schemas.c             if (known_schemas[lpc].version.v[0]
v                 110 lib/common/schemas.c                 < known_schemas[best].version.v[0]) {
v                 200 lib/common/schemas.c         if (a_version.v[i] < b_version.v[i]) {
v                 202 lib/common/schemas.c         } else if (a_version.v[i] > b_version.v[i]) {
v                 226 lib/common/schemas.c         known_schemas[last].version.v[i] = version->v[i];
v                 227 lib/common/schemas.c         if (version->v[i]) {
v                 311 lib/common/schemas.c                     && (version.v[0] < next_version.v[0])) {
v                 350 lib/common/strings.c g_str_hash_traditional(gconstpointer v)
v                 355 lib/common/strings.c     for (p = v; *p != '\0'; p++)
v                 362 lib/common/strings.c crm_strcase_hash(gconstpointer v)
v                 367 lib/common/strings.c     for (p = v; *p != '\0'; p++)
v                1221 lib/common/xml.c     xmlNode *v = NULL;
v                1243 lib/common/xml.c     v = create_xml_node(version, XML_DIFF_VSOURCE);
v                1250 lib/common/xml.c         crm_xml_add(v, vfields[lpc], value);
v                1253 lib/common/xml.c     v = create_xml_node(version, XML_DIFF_VTARGET);
v                1260 lib/common/xml.c         crm_xml_add(v, vfields[lpc], value);
v                  87 lib/gnu/md5.c  set_uint32 (char *cp, uint32_t v)
v                  89 lib/gnu/md5.c    memcpy (cp, &v, sizeof v);
v                 307 lib/services/dbus.c         DBusMessageIter v;
v                 329 lib/services/dbus.c                     dbus_message_iter_recurse(&sv, &v);
v                 330 lib/services/dbus.c                     if(pcmk_dbus_type_check(reply, &v, DBUS_TYPE_STRING, __FUNCTION__, __LINE__)) {
v                 331 lib/services/dbus.c                         dbus_message_iter_get_basic(&v, &value);