value             138 daemons/attrd/attrd_alerts.c                            const char *attr, const char *value)
value             144 daemons/attrd/attrd_alerts.c                                      node, nodeid, attr, value);
value             187 daemons/attrd/attrd_commands.c     const char *value = crm_element_value(xml, PCMK__XA_ATTR_DAMPENING);
value             200 daemons/attrd/attrd_commands.c     if(value) {
value             201 daemons/attrd/attrd_commands.c         dampen = crm_get_msec(value);
value             202 daemons/attrd/attrd_commands.c         crm_trace("Created attribute %s with delay %dms (%s)", a->id, dampen, value);
value             211 daemons/attrd/attrd_commands.c         crm_warn("Ignoring invalid delay %s for attribute %s", value, a->id);
value             279 daemons/attrd/attrd_commands.c     const char *value = crm_element_value(xml, PCMK__XA_ATTR_VALUE);
value             287 daemons/attrd/attrd_commands.c         crm_debug("Setting %s to %s", regex, value);
value             325 daemons/attrd/attrd_commands.c     if (value) {
value             326 daemons/attrd/attrd_commands.c         if (attrd_value_needs_expansion(value)) {
value             333 daemons/attrd/attrd_commands.c             int_value = attrd_expand_value(value, (v? v->current : NULL));
value             335 daemons/attrd/attrd_commands.c             crm_info("Expanded %s=%s to %d", attr, value, int_value);
value             339 daemons/attrd/attrd_commands.c             value = crm_element_value(xml, PCMK__XA_ATTR_VALUE);
value             343 daemons/attrd/attrd_commands.c     crm_debug("Broadcasting %s[%s]=%s%s", attr, host, value,
value             850 daemons/attrd/attrd_commands.c     const char *value = crm_element_value(xml, PCMK__XA_ATTR_VALUE);
value             919 daemons/attrd/attrd_commands.c         crm_debug("Setting %s for all hosts to %s", attr, value);
value             932 daemons/attrd/attrd_commands.c     if (filter && !pcmk__str_eq(v->current, value, pcmk__str_casei)
value             936 daemons/attrd/attrd_commands.c                    attr, host, v->current, value, peer->uname);
value             939 daemons/attrd/attrd_commands.c     } else if (!pcmk__str_eq(v->current, value, pcmk__str_casei)) {
value             941 daemons/attrd/attrd_commands.c                    attr, host, v->current? v->current : "(unset)", value? value : "(unset)", peer->uname);
value             942 daemons/attrd/attrd_commands.c         pcmk__str_update(&v->current, value);
value             948 daemons/attrd/attrd_commands.c             if (!pcmk__str_eq(value, "0", pcmk__str_null_matches)) {
value             968 daemons/attrd/attrd_commands.c             crm_trace("Unchanged %s[%s] from %s is %s(Set the forced write flag)", attr, host, peer->uname, value);
value             971 daemons/attrd/attrd_commands.c             crm_trace("Unchanged %s[%s] from %s is %s", attr, host, peer->uname, value);
value            1185 daemons/attrd/attrd_commands.c build_update_element(xmlNode *parent, attribute_t *a, const char *nodeid, const char *value)
value            1212 daemons/attrd/attrd_commands.c     if(value) {
value            1213 daemons/attrd/attrd_commands.c         crm_xml_add(xml_obj, XML_NVPAIR_ATTR_VALUE, value);
value             258 daemons/attrd/attrd_utils.c attrd_value_needs_expansion(const char *value)
value             260 daemons/attrd/attrd_utils.c     return ((strlen(value) >= (plus_plus_len + 2))
value             261 daemons/attrd/attrd_utils.c            && (value[plus_plus_len] == '+')
value             262 daemons/attrd/attrd_utils.c            && ((value[plus_plus_len + 1] == '+')
value             263 daemons/attrd/attrd_utils.c                || (value[plus_plus_len + 1] == '=')));
value             276 daemons/attrd/attrd_utils.c attrd_expand_value(const char *value, const char *old_value)
value             281 daemons/attrd/attrd_utils.c     if (value[plus_plus_len + 1] != '+') {
value             282 daemons/attrd/attrd_utils.c         const char *offset_s = value + (plus_plus_len + 2);
value             247 daemons/attrd/pacemaker-attrd.c         const char *value = crm_element_value(xml, F_ORIG);
value             248 daemons/attrd/pacemaker-attrd.c         client->name = crm_strdup_printf("%s.%d", value?value:"unknown", client->pid);
value              34 daemons/attrd/pacemaker-attrd.h gboolean attrd_value_needs_expansion(const char *value);
value              35 daemons/attrd/pacemaker-attrd.h int attrd_expand_value(const char *value, const char *old_value);
value              72 daemons/attrd/pacemaker-attrd.h                                const char *attr, const char *value);
value             236 daemons/based/based_callbacks.c         const char *value = crm_element_value(op_request, F_CIB_CLIENTNAME);
value             238 daemons/based/based_callbacks.c         if (value == NULL) {
value             241 daemons/based/based_callbacks.c             cib_client->name = strdup(value);
value             242 daemons/based/based_callbacks.c             if (crm_is_daemon_name(value)) {
value            1481 daemons/based/based_callbacks.c disconnect_remote_client(gpointer key, gpointer value, gpointer user_data)
value            1483 daemons/based/based_callbacks.c     pcmk__client_t *a_client = value;
value             177 daemons/based/based_common.c             int *value = malloc(sizeof(int));
value             179 daemons/based/based_common.c             if(value) {
value             180 daemons/based/based_common.c                 *value = lpc;
value             181 daemons/based/based_common.c                 g_hash_table_insert(operation_hash, (gpointer) cib_server_ops[lpc].operation, value);
value             187 daemons/based/based_common.c         int *value = g_hash_table_lookup(operation_hash, op);
value             189 daemons/based/based_common.c         if (value) {
value             190 daemons/based/based_common.c             *operation = *value;
value             204 daemons/based/based_common.c     const char *value = NULL;
value             244 daemons/based/based_common.c         value = crm_element_value(msg, field);
value             245 daemons/based/based_common.c         if (value != NULL) {
value             246 daemons/based/based_common.c             crm_xml_add(copy, field, value);
value             190 daemons/based/based_io.c     const char *value = NULL;
value             269 daemons/based/based_io.c     value = crm_element_value(root, name);
value             270 daemons/based/based_io.c     if (value == NULL) {
value             281 daemons/based/based_io.c     value = crm_element_value(root, name);
value             282 daemons/based/based_io.c     if (value == NULL) {
value             287 daemons/based/based_io.c     value = crm_element_value(root, name);
value             288 daemons/based/based_io.c     if (value == NULL) {
value             231 daemons/based/based_messages.c         const char *value = crm_element_value(existing_cib, XML_ATTR_VALIDATION);
value             237 daemons/based/based_messages.c         if (value != NULL) {
value             238 daemons/based/based_messages.c             current_version = get_schema_version(value);
value              47 daemons/based/based_notify.c cib_notify_send_one(gpointer key, gpointer value, gpointer user_data)
value              53 daemons/based/based_notify.c     pcmk__client_t *client = value;
value             411 daemons/based/based_remote.c     const char *value = NULL;
value             413 daemons/based/based_remote.c     value = crm_element_name(command);
value             414 daemons/based/based_remote.c     if (!pcmk__str_eq(value, "cib_command", pcmk__str_casei)) {
value             420 daemons/based/based_remote.c         value = crm_element_value(command, F_CLIENTNAME);
value             421 daemons/based/based_remote.c         if (value == NULL) {
value             424 daemons/based/based_remote.c             client->name = strdup(value);
value             429 daemons/based/based_remote.c         value = crm_element_value(command, F_CIB_CALLBACK_TOKEN);
value             430 daemons/based/based_remote.c         if (value != NULL) {
value             431 daemons/based/based_remote.c             client->userdata = strdup(value);
value              32 daemons/controld/controld_attrd.c log_attrd_error(const char *host, const char *name, const char *value,
value              59 daemons/controld/controld_attrd.c                        CRM_XS " rc=%d", name, value, node_type, host, when,
value              79 daemons/controld/controld_attrd.c update_attrd_helper(const char *host, const char *name, const char *value,
value             113 daemons/controld/controld_attrd.c                                              value, XML_CIB_TAG_STATUS, NULL,
value             120 daemons/controld/controld_attrd.c                                                     value, interval_spec,
value             148 daemons/controld/controld_attrd.c         log_attrd_error(host, name, value, is_remote_node, command, rc);
value             153 daemons/controld/controld_attrd.c update_attrd(const char *host, const char *name, const char *value,
value             156 daemons/controld/controld_attrd.c     update_attrd_helper(host, name, value, NULL, user_name, is_remote_node,
value             691 daemons/controld/controld_control.c     const char *value = NULL;
value             731 daemons/controld/controld_control.c     value = crmd_pref(config_hash, XML_CONFIG_ATTR_DC_DEADTIME);
value             732 daemons/controld/controld_control.c     election_trigger->period_ms = crm_parse_interval_spec(value);
value             734 daemons/controld/controld_control.c     value = crmd_pref(config_hash, "node-action-limit"); /* Also checks migration-limit */
value             735 daemons/controld/controld_control.c     throttle_update_job_max(value);
value             737 daemons/controld/controld_control.c     value = crmd_pref(config_hash, "load-threshold");
value             738 daemons/controld/controld_control.c     if(value) {
value             739 daemons/controld/controld_control.c         throttle_set_load_target(strtof(value, NULL) / 100.0);
value             742 daemons/controld/controld_control.c     value = crmd_pref(config_hash, "no-quorum-policy");
value             743 daemons/controld/controld_control.c     if (pcmk__str_eq(value, "suicide", pcmk__str_casei) && pcmk__locate_sbd()) {
value             749 daemons/controld/controld_control.c     value = crmd_pref(config_hash,"stonith-max-attempts");
value             750 daemons/controld/controld_control.c     update_stonith_max_attempts(value);
value             752 daemons/controld/controld_control.c     value = crmd_pref(config_hash, XML_CONFIG_ATTR_FORCE_QUIT);
value             753 daemons/controld/controld_control.c     shutdown_escalation_timer->period_ms = crm_parse_interval_spec(value);
value             757 daemons/controld/controld_control.c     value = crmd_pref(config_hash, XML_CONFIG_ATTR_ELECTION_FAIL);
value             758 daemons/controld/controld_control.c     controld_set_election_period(value);
value             760 daemons/controld/controld_control.c     value = crmd_pref(config_hash, XML_CONFIG_ATTR_RECHECK);
value             761 daemons/controld/controld_control.c     recheck_interval_ms = crm_parse_interval_spec(value);
value             764 daemons/controld/controld_control.c     value = crmd_pref(config_hash, "transition-delay");
value             765 daemons/controld/controld_control.c     transition_timer->period_ms = crm_parse_interval_spec(value);
value             767 daemons/controld/controld_control.c     value = crmd_pref(config_hash, "join-integration-timeout");
value             768 daemons/controld/controld_control.c     integration_timer->period_ms = crm_parse_interval_spec(value);
value             770 daemons/controld/controld_control.c     value = crmd_pref(config_hash, "join-finalization-timeout");
value             771 daemons/controld/controld_control.c     finalization_timer->period_ms = crm_parse_interval_spec(value);
value             773 daemons/controld/controld_control.c     value = crmd_pref(config_hash, XML_CONFIG_ATTR_SHUTDOWN_LOCK);
value             774 daemons/controld/controld_control.c     controld_shutdown_lock_enabled = crm_is_true(value);
value             779 daemons/controld/controld_control.c     value = g_hash_table_lookup(config_hash, "cluster-name");
value             780 daemons/controld/controld_control.c     if (value) {
value             781 daemons/controld/controld_control.c         fsa_cluster_name = strdup(value);
value             838 daemons/controld/controld_control.c         const char *value = crmd_pref(NULL, XML_CONFIG_ATTR_FORCE_QUIT);
value             840 daemons/controld/controld_control.c         shutdown_escalation_timer->period_ms = crm_parse_interval_spec(value);
value              61 daemons/controld/controld_election.c controld_set_election_period(const char *value)
value              63 daemons/controld/controld_election.c     election_timeout_set_period(fsa_election, crm_parse_interval_spec(value));
value              41 daemons/controld/controld_execd.c static gboolean stop_recurring_actions(gpointer key, gpointer value, gpointer user_data);
value              74 daemons/controld/controld_execd.c copy_instance_keys(gpointer key, gpointer value, gpointer user_data)
value              77 daemons/controld/controld_execd.c         g_hash_table_replace(user_data, strdup((const char *)key), strdup((const char *)value));
value              82 daemons/controld/controld_execd.c copy_meta_keys(gpointer key, gpointer value, gpointer user_data)
value              85 daemons/controld/controld_execd.c         g_hash_table_replace(user_data, strdup((const char *)key), strdup((const char *)value));
value             926 daemons/controld/controld_execd.c lrm_remove_deleted_rsc(gpointer key, gpointer value, gpointer user_data)
value             929 daemons/controld/controld_execd.c     struct pending_deletion_op_s *op = value;
value             939 daemons/controld/controld_execd.c lrm_remove_deleted_op(gpointer key, gpointer value, gpointer user_data)
value             942 daemons/controld/controld_execd.c     active_op_t *pending = value;
value            1206 daemons/controld/controld_execd.c cancel_action_by_key(gpointer key, gpointer value, gpointer user_data)
value            1210 daemons/controld/controld_execd.c     active_op_t *op = value;
value            1911 daemons/controld/controld_execd.c         char *value = NULL;
value            1917 daemons/controld/controld_execd.c         while (g_hash_table_iter_next(&iter, (gpointer *) &key, (gpointer *) &value)) {
value            1919 daemons/controld/controld_execd.c             g_hash_table_replace(params, key, value);
value            1926 daemons/controld/controld_execd.c         while (g_hash_table_iter_next(&iter, (gpointer *) &key, (gpointer *) &value)) {
value            1927 daemons/controld/controld_execd.c             g_hash_table_replace(params, crm_meta_name(key), strdup(value));
value            1930 daemons/controld/controld_execd.c                 pcmk__scan_min_int(value, &op->timeout, 0);
value            1932 daemons/controld/controld_execd.c                 pcmk__scan_min_int(value, &op->start_delay, 0);
value            1940 daemons/controld/controld_execd.c         while (g_hash_table_iter_next(&iter, (gpointer *) &key, (gpointer *) &value)) {
value            1942 daemons/controld/controld_execd.c             g_hash_table_replace(params, key, value);
value            2165 daemons/controld/controld_execd.c stop_recurring_action_by_rsc(gpointer key, gpointer value, gpointer user_data)
value            2169 daemons/controld/controld_execd.c     active_op_t *op = value;
value            2182 daemons/controld/controld_execd.c stop_recurring_actions(gpointer key, gpointer value, gpointer user_data)
value            2186 daemons/controld/controld_execd.c     active_op_t *op = value;
value            2335 daemons/controld/controld_execd.c         char *value = NULL;
value            2339 daemons/controld/controld_execd.c         while (g_hash_table_iter_next(&iter, (gpointer *) & key, (gpointer *) & value)) {
value            2340 daemons/controld/controld_execd.c             params = lrmd_key_value_add(params, key, value);
value              30 daemons/controld/controld_execd_state.c free_rsc_info(gpointer value)
value              32 daemons/controld/controld_execd_state.c     lrmd_rsc_info_t *rsc_info = value;
value              38 daemons/controld/controld_execd_state.c free_deletion_op(gpointer value)
value              40 daemons/controld/controld_execd_state.c     struct pending_deletion_op_s *op = value;
value              48 daemons/controld/controld_execd_state.c free_recurring_op(gpointer value)
value              50 daemons/controld/controld_execd_state.c     active_op_t *op = value;
value              63 daemons/controld/controld_execd_state.c fail_pending_op(gpointer key, gpointer value, gpointer user_data)
value              67 daemons/controld/controld_execd_state.c     active_op_t *op = value;
value             141 daemons/controld/controld_execd_state.c remote_proxy_remove_by_node(gpointer key, gpointer value, gpointer user_data)
value             143 daemons/controld/controld_execd_state.c     remote_proxy_t *proxy = value;
value              39 daemons/controld/controld_fencing.c update_stonith_max_attempts(const char *value)
value              41 daemons/controld/controld_fencing.c     stonith_max_attempts = char2score(value);
value              67 daemons/controld/controld_fencing.c     struct st_fail_rec *value = NULL;
value              76 daemons/controld/controld_fencing.c                (gpointer *) &value)) {
value              78 daemons/controld/controld_fencing.c             if (value->count >= stonith_max_attempts) {
value              84 daemons/controld/controld_fencing.c         value = g_hash_table_lookup(stonith_failures, target);
value              85 daemons/controld/controld_fencing.c         if ((value != NULL) && (value->count >= stonith_max_attempts)) {
value              93 daemons/controld/controld_fencing.c              value->count, target);
value             806 daemons/controld/controld_fencing.c                 const char *value = NULL;
value             825 daemons/controld/controld_fencing.c                 value = crm_meta_value(action->params, XML_OP_ATTR_DIGESTS_ALL);
value             826 daemons/controld/controld_fencing.c                 update_attrd(target, CRM_ATTR_DIGESTS_ALL, value, NULL,
value             829 daemons/controld/controld_fencing.c                 value = crm_meta_value(action->params, XML_OP_ATTR_DIGESTS_SECURE);
value             830 daemons/controld/controld_fencing.c                 update_attrd(target, CRM_ATTR_DIGESTS_SECURE, value, NULL,
value             949 daemons/controld/controld_fencing.c controld_verify_stonith_watchdog_timeout(const char *value)
value             956 daemons/controld/controld_fencing.c         rv = pcmk__valid_sbd_timeout(value);
value              21 daemons/controld/controld_fencing.h void update_stonith_max_attempts(const char* value);
value              27 daemons/controld/controld_fencing.h bool controld_verify_stonith_watchdog_timeout(const char *value);
value              24 daemons/controld/controld_join_dc.c void finalize_join_for(gpointer key, gpointer value, gpointer user_data);
value             118 daemons/controld/controld_join_dc.c join_make_offer(gpointer key, gpointer value, gpointer user_data)
value             121 daemons/controld/controld_join_dc.c     crm_node_t *member = (crm_node_t *)value;
value             618 daemons/controld/controld_join_dc.c finalize_join_for(gpointer key, gpointer value, gpointer user_data)
value             622 daemons/controld/controld_join_dc.c     crm_node_t *join_node = value;
value              32 daemons/controld/controld_membership.c reap_dead_nodes(gpointer key, gpointer value, gpointer user_data)
value              34 daemons/controld/controld_membership.c     crm_node_t *node = value;
value             130 daemons/controld/controld_membership.c     const char *value = NULL;
value             161 daemons/controld/controld_membership.c             value = OFFLINESTATUS;
value             163 daemons/controld/controld_membership.c                 value = ONLINESTATUS;
value             165 daemons/controld/controld_membership.c             crm_xml_add(node_state, XML_NODE_IS_PEER, value);
value             170 daemons/controld/controld_membership.c                 value = CRMD_JOINSTATE_DOWN;
value             172 daemons/controld/controld_membership.c                 value = CRMD_JOINSTATE_MEMBER;
value             174 daemons/controld/controld_membership.c             crm_xml_add(node_state, XML_NODE_JOIN_STATE, value);
value             752 daemons/controld/controld_messages.c     const char *value = NULL;
value             758 daemons/controld/controld_messages.c     value = crm_element_value(msg, F_CRM_SYS_TO);
value             759 daemons/controld/controld_messages.c     crm_xml_add(ping, XML_PING_ATTR_SYSFROM, value);
value             762 daemons/controld/controld_messages.c     value = fsa_state2string(fsa_state);
value             763 daemons/controld/controld_messages.c     crm_xml_add(ping, XML_PING_ATTR_CRMDSTATE, value);
value             764 daemons/controld/controld_messages.c     crm_notice("Current ping state: %s", value); // CTS needs this
value             828 daemons/controld/controld_messages.c     const char *value = NULL;
value             846 daemons/controld/controld_messages.c     value = crm_element_value(msg, XML_ATTR_UNAME);
value             849 daemons/controld/controld_messages.c     if ((node_id == 0) && (value == NULL)) {
value             850 daemons/controld/controld_messages.c         value = fsa_our_uname;
value             853 daemons/controld/controld_messages.c     node = pcmk__search_node_caches(node_id, value, CRM_GET_PEER_ANY);
value             394 daemons/controld/controld_remote_ra.c             g_hash_table_insert(op.params, strdup(tmp->key), strdup(tmp->value));
value             754 daemons/controld/controld_remote_ra.c             server = tmp->value;
value             756 daemons/controld/controld_remote_ra.c             port = atoi(tmp->value);
value              95 daemons/controld/controld_te_actions.c     const char *value = NULL;
value             126 daemons/controld/controld_te_actions.c     value = crm_meta_value(action->params, XML_ATTR_TE_NOWAIT);
value             127 daemons/controld/controld_te_actions.c     if (crm_is_true(value)) {
value             313 daemons/controld/controld_te_actions.c     const char *value = NULL;
value             345 daemons/controld/controld_te_actions.c     value = crm_meta_value(action->params, XML_ATTR_TE_NOWAIT);
value             346 daemons/controld/controld_te_actions.c     if (crm_is_true(value)) {
value             119 daemons/controld/controld_te_events.c     const char *value = NULL;
value             148 daemons/controld/controld_te_events.c         value = failed_start_offset;
value             155 daemons/controld/controld_te_events.c         value = failed_stop_offset;
value             159 daemons/controld/controld_te_events.c     if (!pcmk_str_is_infinity(value)) {
value             160 daemons/controld/controld_te_events.c         value = XML_NVPAIR_ATTR_VALUE "++";
value             174 daemons/controld/controld_te_events.c                  rsc_id, on_uname, task, rc, value, now);
value             179 daemons/controld/controld_te_events.c             update_attrd(on_uname, attr_name, value, NULL, is_remote_node);
value             141 daemons/controld/controld_transition.c         const char *value = NULL;
value             189 daemons/controld/controld_transition.c         value = crm_element_value(graph_data, "failed-stop-offset");
value             190 daemons/controld/controld_transition.c         if (value) {
value             192 daemons/controld/controld_transition.c             failed_stop_offset = strdup(value);
value             195 daemons/controld/controld_transition.c         value = crm_element_value(graph_data, "failed-start-offset");
value             196 daemons/controld/controld_transition.c         if (value) {
value             198 daemons/controld/controld_transition.c             failed_start_offset = strdup(value);
value              86 daemons/controld/controld_utils.h void update_attrd(const char *host, const char *name, const char *value, const char *user_name, gboolean is_remote_node);
value              35 daemons/controld/pacemaker-controld.h void controld_set_election_period(const char *value);
value             481 daemons/execd/cts-exec-helper.c         char *value = NULL;
value             484 daemons/execd/cts-exec-helper.c         while (g_hash_table_iter_next(&iter, (gpointer *) & key, (gpointer *) & value)) {
value             485 daemons/execd/cts-exec-helper.c             options.params = lrmd_key_value_add(options.params, key, value);
value             491 daemons/execd/cts-exec-helper.c         char *value = NULL;
value             494 daemons/execd/cts-exec-helper.c         while (g_hash_table_iter_next(&iter, (gpointer *) & key, (gpointer *) & value)) {
value             497 daemons/execd/cts-exec-helper.c             options.params = lrmd_key_value_add(options.params, crm_name, value);
value             542 daemons/execd/execd_commands.c send_client_notify(gpointer key, gpointer value, gpointer user_data)
value             545 daemons/execd/execd_commands.c     pcmk__client_t *client = value;
value             654 daemons/execd/execd_commands.c         char *value = NULL;
value             660 daemons/execd/execd_commands.c         while (g_hash_table_iter_next(&iter, (gpointer *) & key, (gpointer *) & value)) {
value             661 daemons/execd/execd_commands.c             hash2smartfield((gpointer) key, (gpointer) value, args);
value             761 daemons/execd/execd_commands.c notify_one_client(gpointer key, gpointer value, gpointer user_data)
value             763 daemons/execd/execd_commands.c     pcmk__client_t *client = value;
value            1144 daemons/execd/execd_commands.c     char *value = NULL;
value            1153 daemons/execd/execd_commands.c         while (g_hash_table_iter_next(&iter, (gpointer *) & key, (gpointer *) & value)) {
value            1154 daemons/execd/execd_commands.c             device_params = stonith_key_value_add(device_params, key, value);
value             125 daemons/execd/pacemaker-execd.c         const char *value = crm_element_value(request, F_LRMD_CLIENTNAME);
value             127 daemons/execd/pacemaker-execd.c         if (value == NULL) {
value             130 daemons/execd/pacemaker-execd.c             client->name = strdup(value);
value             110 daemons/execd/remoted_pidone.c             char *value = NULL;
value             123 daemons/execd/remoted_pidone.c                 value = end;
value             138 daemons/execd/remoted_pidone.c                         value = NULL;
value             152 daemons/execd/remoted_pidone.c                         value = NULL;
value             162 daemons/execd/remoted_pidone.c                 if (value) {
value             175 daemons/execd/remoted_pidone.c                         setenv(name, value, 0);
value             178 daemons/execd/remoted_pidone.c                         value = NULL;
value             183 daemons/execd/remoted_pidone.c             if ((value == NULL) && (strchr(line, '\n') == NULL)) {
value             186 daemons/execd/remoted_pidone.c                     value = NULL; // Don't care, make compiler happy
value             112 daemons/execd/remoted_tls.c             const char *value = crm_element_value(request, F_LRMD_CLIENTNAME);
value             114 daemons/execd/remoted_tls.c             if (value) {
value             115 daemons/execd/remoted_tls.c                 client->name = strdup(value);
value             131 daemons/fenced/fenced_commands.c     const char *value = NULL;
value             138 daemons/fenced/fenced_commands.c     value = g_hash_table_lookup(device->params, PCMK_STONITH_DELAY_MAX);
value             139 daemons/fenced/fenced_commands.c     if (value) {
value             140 daemons/fenced/fenced_commands.c        delay_max = crm_parse_interval_spec(value) / 1000;
value             159 daemons/fenced/fenced_commands.c         char *value = strdup(hash_value);
value             160 daemons/fenced/fenced_commands.c         char *valptr = value;
value             162 daemons/fenced/fenced_commands.c         CRM_ASSERT(value != NULL);
value             165 daemons/fenced/fenced_commands.c             for (char *val = strtok(value, "; \t"); val != NULL; val = strtok(NULL, "; \t")) {
value             174 daemons/fenced/fenced_commands.c                     value = mapval + 1;
value             175 daemons/fenced/fenced_commands.c                     crm_debug("pcmk_delay_base mapped to %s for %s", value, victim);
value             181 daemons/fenced/fenced_commands.c         if (strchr(value, ':') == 0) {
value             182 daemons/fenced/fenced_commands.c            delay_base = crm_parse_interval_spec(value) / 1000;
value             216 daemons/fenced/fenced_commands.c         const char *value = NULL;
value             230 daemons/fenced/fenced_commands.c         value = g_hash_table_lookup(device->params, buffer);
value             231 daemons/fenced/fenced_commands.c         if (value) {
value             232 daemons/fenced/fenced_commands.c             return atoi(value);
value             301 daemons/fenced/fenced_commands.c     const char *value = NULL;
value             304 daemons/fenced/fenced_commands.c     value = g_hash_table_lookup(device->params, PCMK_STONITH_ACTION_LIMIT);
value             305 daemons/fenced/fenced_commands.c     if ((value == NULL)
value             306 daemons/fenced/fenced_commands.c         || (pcmk__scan_min_int(value, &action_limit, INT_MIN) != pcmk_rc_ok)
value             716 daemons/fenced/fenced_commands.c                     char *value = NULL;
value             719 daemons/fenced/fenced_commands.c                     value = calloc(1, 1 + lpc - last);
value             720 daemons/fenced/fenced_commands.c                     memcpy(value, hostmap + last, lpc - last);
value             722 daemons/fenced/fenced_commands.c                     for (int i = 0; value[i] != '\0'; i++) {
value             723 daemons/fenced/fenced_commands.c                         if (value[i] != '\\') {
value             724 daemons/fenced/fenced_commands.c                             value[k++] = value[i];
value             727 daemons/fenced/fenced_commands.c                     value[k] = '\0';
value             729 daemons/fenced/fenced_commands.c                     crm_debug("Adding alias '%s'='%s'", name, value);
value             730 daemons/fenced/fenced_commands.c                     g_hash_table_replace(aliases, name, value);
value             732 daemons/fenced/fenced_commands.c                         *targets = g_list_append(*targets, strdup(value));
value             734 daemons/fenced/fenced_commands.c                     value = NULL;
value             919 daemons/fenced/fenced_commands.c map_action(GHashTable *params, const char *action, const char *value)
value             925 daemons/fenced/fenced_commands.c                  STONITH_ATTR_ACTION_OP, value, key);
value             929 daemons/fenced/fenced_commands.c                  STONITH_ATTR_ACTION_OP, value, key, value);
value             930 daemons/fenced/fenced_commands.c         g_hash_table_insert(params, key, strdup(value));
value             945 daemons/fenced/fenced_commands.c     const char *value;
value             951 daemons/fenced/fenced_commands.c     value = g_hash_table_lookup(params, STONITH_ATTR_ACTION_OP);
value             952 daemons/fenced/fenced_commands.c     if (value != NULL) {
value             956 daemons/fenced/fenced_commands.c         if (*value == '\0') {
value             959 daemons/fenced/fenced_commands.c         } else if (strcmp(value, "reboot") == 0) {
value             963 daemons/fenced/fenced_commands.c         } else if (strcmp(value, "off") == 0) {
value             964 daemons/fenced/fenced_commands.c             map_action(params, "reboot", value);
value             967 daemons/fenced/fenced_commands.c             map_action(params, "off", value);
value             968 daemons/fenced/fenced_commands.c             map_action(params, "reboot", value);
value            1005 daemons/fenced/fenced_commands.c     const char *value;
value            1021 daemons/fenced/fenced_commands.c     value = g_hash_table_lookup(device->params, PCMK_STONITH_HOST_LIST);
value            1022 daemons/fenced/fenced_commands.c     if (value) {
value            1023 daemons/fenced/fenced_commands.c         device->targets = stonith__parse_targets(value);
value            1026 daemons/fenced/fenced_commands.c     value = g_hash_table_lookup(device->params, PCMK_STONITH_HOST_MAP);
value            1027 daemons/fenced/fenced_commands.c     device->aliases = build_port_aliases(value, &(device->targets));
value            1029 daemons/fenced/fenced_commands.c     value = target_list_type(device);
value            1030 daemons/fenced/fenced_commands.c     if (!pcmk__str_eq(value, "static-list", pcmk__str_casei) && device->targets) {
value            1058 daemons/fenced/fenced_commands.c     value = g_hash_table_lookup(device->params, "nodeid");
value            1059 daemons/fenced/fenced_commands.c     if (!value) {
value            1063 daemons/fenced/fenced_commands.c     value = crm_element_value(dev, "rsc_provides");
value            1064 daemons/fenced/fenced_commands.c     if (pcmk__str_eq(value, "unfencing", pcmk__str_casei)) {
value            1259 daemons/fenced/fenced_commands.c     char *value = NULL;
value            1263 daemons/fenced/fenced_commands.c     while (g_hash_table_iter_next(&gIter, (void **)&key, (void **)&value)) {
value            1272 daemons/fenced/fenced_commands.c             if (!other_value || !pcmk__str_eq(other_value, value, pcmk__str_casei)) {
value            1273 daemons/fenced/fenced_commands.c                 crm_trace("Different value for %s: %s != %s", key, other_value, value);
value            1694 daemons/fenced/fenced_commands.c         const char *device = dIter->value;
value            1808 daemons/fenced/fenced_commands.c         const char *value = (const char *) gIter->data;
value            1810 daemons/fenced/fenced_commands.c         alloc_size += strlen(value);
value            1818 daemons/fenced/fenced_commands.c             const char *value = (const char *) gIter->data;
value            1820 daemons/fenced/fenced_commands.c             pos = &pos[sprintf(pos, "%s%s", lead_delim, value)];
value            2085 daemons/fenced/fenced_commands.c search_devices(gpointer key, gpointer value, gpointer user_data)
value            2087 daemons/fenced/fenced_commands.c     stonith_device_t *dev = value;
value            2776 daemons/fenced/fenced_commands.c         const char *value = NULL;
value            2790 daemons/fenced/fenced_commands.c             value = crm_element_value(request, name);
value            2791 daemons/fenced/fenced_commands.c             crm_xml_add(reply, name, value);
value              67 daemons/fenced/fenced_history.c                               gpointer value,
value              70 daemons/fenced/fenced_history.c     remote_fencing_op_t *op = value;
value             131 daemons/fenced/fenced_remote.c count_peer_device(gpointer key, gpointer value, gpointer user_data)
value             133 daemons/fenced/fenced_remote.c     device_properties_t *props = (device_properties_t*)value;
value            1462 daemons/fenced/fenced_remote.c add_device_timeout(gpointer key, gpointer value, gpointer user_data)
value            1465 daemons/fenced/fenced_remote.c     device_properties_t *props = value;
value             126 daemons/fenced/pacemaker-fenced.c         const char *value = crm_element_value(request, F_STONITH_CLIENTNAME);
value             128 daemons/fenced/pacemaker-fenced.c         if (value == NULL) {
value             129 daemons/fenced/pacemaker-fenced.c             value = "unknown";
value             131 daemons/fenced/pacemaker-fenced.c         c->name = crm_strdup_printf("%s.%u", value, c->pid);
value             280 daemons/fenced/pacemaker-fenced.c stonith_notify_client(gpointer key, gpointer value, gpointer user_data)
value             284 daemons/fenced/pacemaker-fenced.c     pcmk__client_t *client = value;
value             657 daemons/fenced/pacemaker-fenced.c         const char *value = NULL;
value             662 daemons/fenced/pacemaker-fenced.c             value = crm_element_value(stonith_watchdog_xml, XML_NVPAIR_ATTR_VALUE);
value             664 daemons/fenced/pacemaker-fenced.c         if (value) {
value             665 daemons/fenced/pacemaker-fenced.c             timeout_ms = crm_get_msec(value);
value             687 daemons/fenced/pacemaker-fenced.c     const char *value = NULL;
value             772 daemons/fenced/pacemaker-fenced.c         while (g_hash_table_iter_next(&gIter, (gpointer *) & name, (gpointer *) & value)) {
value             773 daemons/fenced/pacemaker-fenced.c             if (!name || !value) {
value             776 daemons/fenced/pacemaker-fenced.c             params = stonith_key_value_add(params, name, value);
value             777 daemons/fenced/pacemaker-fenced.c             crm_trace(" %s=%s", name, value);
value             996 daemons/fenced/pacemaker-fenced.c node_has_attr(const char *node, const char *name, const char *value)
value            1012 daemons/fenced/pacemaker-fenced.c                  node, name, value);
value            1143 daemons/fenced/pacemaker-fenced.c     bool value = false;
value            1202 daemons/fenced/pacemaker-fenced.c     if (pcmk__xe_get_bool_attr(stonith_enabled_xml, XML_NVPAIR_ATTR_VALUE, &value) == pcmk_rc_ok && !value) {
value             272 daemons/fenced/pacemaker-fenced.h gboolean node_has_attr(const char *node, const char *name, const char *value);
value             248 daemons/pacemakerd/pcmkd_corosync.c get_config_opt(uint64_t unused, cmap_handle_t object_handle, const char *key, char **value,
value             253 daemons/pacemakerd/pcmkd_corosync.c     cs_repeat(retries, 5, rc = cmap_get_string(object_handle, key, value));
value             256 daemons/pacemakerd/pcmkd_corosync.c         pcmk__str_update(value, fallback);
value             258 daemons/pacemakerd/pcmkd_corosync.c     crm_trace("%s: %s", key, *value);
value              25 daemons/pacemakerd/pcmkd_messages.c     const char *value = NULL;
value              35 daemons/pacemakerd/pcmkd_messages.c     value = crm_element_value(msg, F_CRM_SYS_TO);
value              36 daemons/pacemakerd/pcmkd_messages.c     crm_xml_add(ping, XML_PING_ATTR_SYSFROM, value);
value              62 daemons/schedulerd/schedulerd_messages.c     const char *value = NULL;
value             105 daemons/schedulerd/schedulerd_messages.c     value = pe_pref(data_set->config_hash, series[series_id].param);
value             106 daemons/schedulerd/schedulerd_messages.c     if ((value == NULL)
value             107 daemons/schedulerd/schedulerd_messages.c         || (pcmk__scan_min_int(value, &series_wrap, -1) != pcmk_rc_ok)) {
value             117 daemons/schedulerd/schedulerd_messages.c               series[series_id].name, series_wrap, seq, value);
value              40 include/crm/cib/util.h                               gboolean to_console, char **value, const char *user_name);
value              76 include/crm/common/alerts_internal.h                          const char *value);
value              78 include/crm/common/alerts_internal.h                              int value);
value              33 include/crm/common/attrd_internal.h                             const char *name, const char *value,
value              32 include/crm/common/health_internal.h bool pcmk__validate_health_strategy(const char *value);
value              34 include/crm/common/health_internal.h enum pcmk__health_strategy pcmk__parse_health_strategy(const char *value);
value             126 include/crm/common/internal.h int pcmk__scan_nvpair(const char *input, char **name, char **value);
value             127 include/crm/common/internal.h char *pcmk__format_nvpair(const char *name, const char *value,
value             140 include/crm/common/internal.h pcmk__xe_set_bool_attr(xmlNodePtr node, const char *name, bool value);
value             171 include/crm/common/internal.h pcmk__xe_get_bool_attr(xmlNodePtr node, const char *name, bool *value);
value              77 include/crm/common/iso8601.h crm_time_t *crm_time_calculate_duration(crm_time_t * dt, crm_time_t * value);
value             100 include/crm/common/iso8601.h crm_time_t *crm_time_add(crm_time_t * dt, crm_time_t * value);
value             101 include/crm/common/iso8601.h crm_time_t *crm_time_subtract(crm_time_t * dt, crm_time_t * value);
value             104 include/crm/common/iso8601.h void crm_time_add_seconds(crm_time_t * dt, int value);
value             105 include/crm/common/iso8601.h void crm_time_add_minutes(crm_time_t * dt, int value);
value             106 include/crm/common/iso8601.h void crm_time_add_hours(crm_time_t * dt, int value);
value             107 include/crm/common/iso8601.h void crm_time_add_days(crm_time_t * dt, int value);
value             108 include/crm/common/iso8601.h void crm_time_add_weeks(crm_time_t * dt, int value);
value             109 include/crm/common/iso8601.h void crm_time_add_months(crm_time_t * dt, int value);
value             110 include/crm/common/iso8601.h void crm_time_add_years(crm_time_t * dt, int value);
value              31 include/crm/common/nvpair.h     char *value;
value              34 include/crm/common/nvpair.h GSList *pcmk_prepend_nvpair(GSList *nvpairs, const char *name, const char *value);
value              41 include/crm/common/nvpair.h                                const char *name, const char *value);
value              42 include/crm/common/nvpair.h void hash2nvpair(gpointer key, gpointer value, gpointer user_data);
value              43 include/crm/common/nvpair.h void hash2field(gpointer key, gpointer value, gpointer user_data);
value              44 include/crm/common/nvpair.h void hash2metafield(gpointer key, gpointer value, gpointer user_data);
value              45 include/crm/common/nvpair.h void hash2smartfield(gpointer key, gpointer value, gpointer user_data);
value              48 include/crm/common/nvpair.h const char *crm_xml_add(xmlNode *node, const char *name, const char *value);
value              49 include/crm/common/nvpair.h const char *crm_xml_replace(xmlNode *node, const char *name, const char *value);
value              50 include/crm/common/nvpair.h const char *crm_xml_add_int(xmlNode *node, const char *name, int value);
value              51 include/crm/common/nvpair.h const char *crm_xml_add_ll(xmlNode *node, const char *name, long long value);
value              55 include/crm/common/nvpair.h                                 const struct timeval *value);
value              78 include/crm/common/nvpair.h     const char *value = crm_element_value(obj1, element);
value              80 include/crm/common/nvpair.h     crm_xml_add(obj2, element, value);
value              81 include/crm/common/nvpair.h     return value;
value              74 include/crm/common/options_internal.h void pcmk__set_env_option(const char *option, const char *value);
value             108 include/crm/common/options_internal.h bool pcmk__valid_interval_spec(const char *value);
value             109 include/crm/common/options_internal.h bool pcmk__valid_boolean(const char *value);
value             110 include/crm/common/options_internal.h bool pcmk__valid_number(const char *value);
value             111 include/crm/common/options_internal.h bool pcmk__valid_positive_number(const char *value);
value             112 include/crm/common/options_internal.h bool pcmk__valid_quorum(const char *value);
value             113 include/crm/common/options_internal.h bool pcmk__valid_script(const char *value);
value             114 include/crm/common/options_internal.h bool pcmk__valid_percentage(const char *value);
value             120 include/crm/common/options_internal.h bool pcmk__valid_sbd_timeout(const char *value);
value              86 include/crm/common/strings_internal.h pcmk__intkey_table_insert(GHashTable *hash_table, int key, gpointer value)
value              88 include/crm/common/strings_internal.h     return g_hash_table_insert(hash_table, GINT_TO_POINTER(key), value);
value             129 include/crm/common/strings_internal.h void pcmk__str_update(char **str, const char *value);
value              66 include/crm/common/util_compat.h int pcmk_scan_nvpair(const char *input, char **name, char **value);
value              69 include/crm/common/util_compat.h char *pcmk_format_nvpair(const char *name, const char *value,
value              69 include/crm/common/xml.h void expand_plus_plus(xmlNode * target, const char *name, const char *value);
value             161 include/crm/common/xml.h                       const char *tag, const char *field, const char *value,
value              38 include/crm/common/xml_compat.h crm_xml_add_boolean(xmlNode *node, const char *name, gboolean value)
value              40 include/crm/common/xml_compat.h     return crm_xml_add(node, name, (value? "true" : "false"));
value              76 include/crm/fencing/internal.h                                        const char *attr, const char *value,
value              31 include/crm/lrmd.h     char *value;
value             170 include/crm/lrmd.h lrmd_key_value_t *lrmd_key_value_add(lrmd_key_value_t * kvp, const char *key, const char *value);
value             218 include/crm/pengine/internal.h void add_hash_param(GHashTable * hash, const char *name, const char *value);
value             347 include/crm/pengine/internal.h extern void print_str_str(gpointer key, gpointer value, gpointer user_data);
value             100 include/crm/stonith-ng.h     char *value;
value             360 include/crm/stonith-ng.h                              const char *attr, const char *value, int level);
value             381 include/crm/stonith-ng.h                                const char *attr, const char *value,
value             450 include/crm/stonith-ng.h                                            const char *value);
value              39 include/portability.h int setenv(const char *name, const char *value, int why);
value              65 lib/cib/cib_attrs.c           const char *attr_id, const char *attr_name, char **value,
value              83 lib/cib/cib_attrs.c     CRM_ASSERT(value != NULL);
value              84 lib/cib/cib_attrs.c     *value = NULL;
value             178 lib/cib/cib_attrs.c         pcmk__str_update(value, crm_element_value(xml_search, attr));
value             416 lib/cib/cib_attrs.c                           char **value, const char *user_name)
value             427 lib/cib/cib_attrs.c                    set_name, attr_id, attr_name, value, user_name);
value             294 lib/cib/cib_client.c     const char *value = getenv("CIB_shadow");
value             297 lib/cib/cib_client.c     if (value && value[0] != 0) {
value             298 lib/cib/cib_client.c         return cib_shadow_new(value);
value             301 lib/cib/cib_client.c     value = getenv("CIB_file");
value             302 lib/cib/cib_client.c     if (value) {
value             303 lib/cib/cib_client.c         return cib_file_new(value);
value             306 lib/cib/cib_client.c     value = getenv("CIB_port");
value             307 lib/cib/cib_client.c     if (value) {
value             318 lib/cib/cib_client.c         pcmk__scan_port(value, &port);
value             320 lib/cib/cib_client.c         value = getenv("CIB_encrypted");
value             321 lib/cib/cib_client.c         if (value && crm_is_true(value) == FALSE) {
value             686 lib/cib/cib_client.c cib_dump_pending_op(gpointer key, gpointer value, gpointer user_data)
value             689 lib/cib/cib_client.c     cib_callback_client_t *blob = value;
value             101 lib/cib/cib_ops.c     const char *value = crm_element_value(existing_cib, XML_ATTR_VALIDATION);
value             106 lib/cib/cib_ops.c     if (value != NULL) {
value             107 lib/cib/cib_ops.c         current_version = get_schema_version(value);
value             131 lib/cib/cib_utils.c         const char *value = NULL;
value             135 lib/cib/cib_utils.c         value = cib_pref(options, "enable-acl");
value             136 lib/cib/cib_utils.c         rc = crm_is_true(value);
value             710 lib/cluster/cpg.c         node_left(groupName->value, counter, local_nodeid, &left_list[i],
value             718 lib/cluster/cpg.c                  groupName->value, counter, joined_list[i].nodeid,
value             729 lib/cluster/cpg.c                      groupName->value, counter, member_list[i].pid);
value             733 lib/cluster/cpg.c                  groupName->value, counter, peer_name(peer),
value             759 lib/cluster/cpg.c                          member_list[i].nodeid, groupName->value);
value             770 lib/cluster/cpg.c         crm_err("Local node was evicted from group %s", groupName->value);
value             814 lib/cluster/cpg.c     cluster->group.value[0] = 0;
value             817 lib/cluster/cpg.c     strncpy(cluster->group.value, message_name, 127);
value             818 lib/cluster/cpg.c     cluster->group.value[127] = 0;
value             819 lib/cluster/cpg.c     cluster->group.length = 1 + QB_MIN(127, strlen(cluster->group.value));
value             226 lib/cluster/membership.c mark_dirty(gpointer key, gpointer value, gpointer user_data)
value             228 lib/cluster/membership.c     set_peer_flags((crm_node_t *) value, crm_node_dirty);
value             232 lib/cluster/membership.c is_dirty(gpointer key, gpointer value, gpointer user_data)
value             234 lib/cluster/membership.c     return pcmk_is_set(((crm_node_t*)value)->flags, crm_node_dirty);
value             302 lib/cluster/membership.c crm_reap_dead_member(gpointer key, gpointer value, gpointer user_data)
value             304 lib/cluster/membership.c     crm_node_t *node = value;
value             316 lib/cluster/membership.c     } else if (crm_is_peer_active(value) == FALSE) {
value             363 lib/cluster/membership.c count_peer(gpointer key, gpointer value, gpointer user_data)
value             366 lib/cluster/membership.c     crm_node_t *node = value;
value             488 lib/cluster/membership.c hash_find_by_data(gpointer key, gpointer value, gpointer user_data)
value             490 lib/cluster/membership.c     return value == user_data;
value             150 lib/common/alerts.c                     const char *value)
value             153 lib/common/alerts.c         crm_trace("Inserting alert key %s = '%s'", *key, value);
value             154 lib/common/alerts.c         if (value) {
value             155 lib/common/alerts.c             g_hash_table_insert(table, strdup(*key), strdup(value));
value             164 lib/common/alerts.c                         int value)
value             167 lib/common/alerts.c         crm_trace("Inserting alert key %s = %d", *key, value);
value             168 lib/common/alerts.c         g_hash_table_insert(table, strdup(*key), pcmk__itoa(value));
value             134 lib/common/attrd_client.c                         const char *name, const char *value,
value             199 lib/common/attrd_client.c     crm_xml_add(update, PCMK__XA_ATTR_VALUE, value);
value             219 lib/common/attrd_client.c                   name, value, display_host, pcmk_rc_str(rc), rc);
value              27 lib/common/cib_secrets.c static bool check_md5_hash(char *hash, char *value);
value              28 lib/common/cib_secrets.c static void add_secret_params(gpointer key, gpointer value, gpointer user_data);
value              41 lib/common/cib_secrets.c check_md5_hash(char *hash, char *value)
value              46 lib/common/cib_secrets.c     hash2 = crm_md5sum(value);
value             185 lib/common/cib_secrets.c add_secret_params(gpointer key, gpointer value, gpointer user_data)
value             189 lib/common/cib_secrets.c     if (is_magic_value((char *)value)) {
value              21 lib/common/health.c pcmk__validate_health_strategy(const char *value)
value              23 lib/common/health.c     return pcmk__strcase_any_of(value,
value              41 lib/common/health.c pcmk__parse_health_strategy(const char *value)
value              43 lib/common/health.c     if (pcmk__str_eq(value, PCMK__VALUE_NONE,
value              47 lib/common/health.c     } else if (pcmk__str_eq(value, PCMK__VALUE_MIGRATE_ON_RED,
value              51 lib/common/health.c     } else if (pcmk__str_eq(value, PCMK__VALUE_ONLY_GREEN,
value              55 lib/common/health.c     } else if (pcmk__str_eq(value, PCMK__VALUE_PROGRESSIVE,
value              59 lib/common/health.c     } else if (pcmk__str_eq(value, PCMK__VALUE_CUSTOM,
value              67 lib/common/health.c                          value);
value             166 lib/common/ipc_controld.c     const char *value = NULL;
value             200 lib/common/ipc_controld.c     value = crm_element_value(reply, F_CRM_MSG_TYPE);
value             201 lib/common/ipc_controld.c     if ((value == NULL) || (strcmp(value, XML_ATTR_REQUEST)
value             202 lib/common/ipc_controld.c                             && strcmp(value, XML_ATTR_RESPONSE))) {
value             204 lib/common/ipc_controld.c                   crm_str(value));
value             215 lib/common/ipc_controld.c     value = crm_element_value(reply, F_CRM_TASK);
value             216 lib/common/ipc_controld.c     if (value == NULL) {
value             228 lib/common/ipc_controld.c     if (!strcmp(value, CRM_OP_REPROBE)) {
value             231 lib/common/ipc_controld.c     } else if (!strcmp(value, CRM_OP_NODE_INFO)) {
value             234 lib/common/ipc_controld.c     } else if (!strcmp(value, CRM_OP_INVOKE_LRM)) {
value             238 lib/common/ipc_controld.c     } else if (!strcmp(value, CRM_OP_PING)) {
value             241 lib/common/ipc_controld.c     } else if (!strcmp(value, PCMK__CONTROLD_CMD_NODES)) {
value             246 lib/common/ipc_controld.c                   value);
value             254 lib/common/ipc_controld.c     if (pcmk__str_eq(value, PCMK__CONTROLD_CMD_NODES, pcmk__str_casei)) {
value             144 lib/common/ipc_pacemakerd.c     const char *value = NULL;
value             153 lib/common/ipc_pacemakerd.c     value = crm_element_value(reply, F_CRM_MSG_TYPE);
value             154 lib/common/ipc_pacemakerd.c     if ((value == NULL) || (strcmp(value, XML_ATTR_RESPONSE))) {
value             156 lib/common/ipc_pacemakerd.c                   crm_str(value));
value             167 lib/common/ipc_pacemakerd.c     value = crm_element_value(reply, F_CRM_TASK);
value             173 lib/common/ipc_pacemakerd.c     if (pcmk__str_eq(value, CRM_OP_PING, pcmk__str_none)) {
value             184 lib/common/ipc_pacemakerd.c     } else if (pcmk__str_eq(value, CRM_OP_QUIT, pcmk__str_none)) {
value             188 lib/common/ipc_pacemakerd.c         crm_debug("Unrecognizable pacemakerd message: '%s'", crm_str(value));
value              85 lib/common/ipc_schedulerd.c     const char *value = NULL;
value              91 lib/common/ipc_schedulerd.c     value = crm_element_value(reply, F_CRM_MSG_TYPE);
value              92 lib/common/ipc_schedulerd.c     if ((value == NULL) || (strcmp(value, XML_ATTR_RESPONSE))) {
value              94 lib/common/ipc_schedulerd.c                   crm_str(value));
value             107 lib/common/ipc_schedulerd.c     value = crm_element_value(reply, F_CRM_TASK);
value             109 lib/common/ipc_schedulerd.c     if (pcmk__str_eq(value, CRM_OP_PECALC, pcmk__str_none)) {
value             115 lib/common/ipc_schedulerd.c         crm_debug("Unrecognizable pacemakerd message: '%s'", crm_str(value));
value            1270 lib/common/iso8601.c crm_time_add(crm_time_t * dt, crm_time_t * value)
value            1275 lib/common/iso8601.c     if ((dt == NULL) || (value == NULL)) {
value            1282 lib/common/iso8601.c     utc = crm_get_utc_time(value);
value            1298 lib/common/iso8601.c crm_time_calculate_duration(crm_time_t * dt, crm_time_t * value)
value            1303 lib/common/iso8601.c     if ((dt == NULL) || (value == NULL)) {
value            1308 lib/common/iso8601.c     utc = crm_get_utc_time(value);
value            1332 lib/common/iso8601.c crm_time_subtract(crm_time_t * dt, crm_time_t * value)
value            1337 lib/common/iso8601.c     if ((dt == NULL) || (value == NULL)) {
value            1342 lib/common/iso8601.c     utc = crm_get_utc_time(value);
value              47 lib/common/nvpair.c pcmk__new_nvpair(const char *name, const char *value)
value              57 lib/common/nvpair.c     pcmk__str_update(&nvpair->value, value);
value              74 lib/common/nvpair.c         free(nvpair->value);
value              91 lib/common/nvpair.c pcmk_prepend_nvpair(GSList *nvpairs, const char *name, const char *value)
value              93 lib/common/nvpair.c     return g_slist_prepend(nvpairs, pcmk__new_nvpair(name, value));
value             191 lib/common/nvpair.c     crm_xml_add(parent, pair->name, pair->value);
value             221 lib/common/nvpair.c pcmk__scan_nvpair(const char *input, char **name, char **value)
value             225 lib/common/nvpair.c     *value = NULL;
value             226 lib/common/nvpair.c     if (sscanf(input, "%m[^=]=%m[^\n]", name, value) <= 0) {
value             232 lib/common/nvpair.c     *value = NULL;
value             249 lib/common/nvpair.c         *value = strdup(sep+1);
value             251 lib/common/nvpair.c         if (*value == NULL) {
value             257 lib/common/nvpair.c     if (*name != NULL && *value != NULL) {
value             259 lib/common/nvpair.c     } else if (*name != NULL || *value != NULL) {
value             284 lib/common/nvpair.c pcmk__format_nvpair(const char *name, const char *value, const char *units)
value             286 lib/common/nvpair.c     return crm_strdup_printf("%s=\"%s%s\"", name, value, units ? units : "");
value             323 lib/common/nvpair.c crm_xml_add(xmlNode *node, const char *name, const char *value)
value             331 lib/common/nvpair.c     if (value == NULL) {
value             341 lib/common/nvpair.c         CRM_CHECK(old_value != value,
value             342 lib/common/nvpair.c                   crm_err("Cannot reset %s with crm_xml_add(%s)", name, value);
value             343 lib/common/nvpair.c                   return value);
value             350 lib/common/nvpair.c         if (old == NULL || value == NULL || strcmp(old, value) != 0) {
value             356 lib/common/nvpair.c         crm_trace("Cannot add %s=%s to %s", name, value, node->name);
value             360 lib/common/nvpair.c     attr = xmlSetProp(node, (pcmkXmlStr) name, (pcmkXmlStr) value);
value             380 lib/common/nvpair.c crm_xml_replace(xmlNode *node, const char *name, const char *value)
value             392 lib/common/nvpair.c     CRM_CHECK(old_value != value, return value);
value             396 lib/common/nvpair.c         crm_trace("Cannot replace %s=%s to %s", name, value, node->name);
value             399 lib/common/nvpair.c     } else if (old_value && !value) {
value             405 lib/common/nvpair.c         if (!old_value || !value || !strcmp(old_value, value)) {
value             410 lib/common/nvpair.c     attr = xmlSetProp(node, (pcmkXmlStr) name, (pcmkXmlStr) value);
value             431 lib/common/nvpair.c crm_xml_add_int(xmlNode *node, const char *name, int value)
value             433 lib/common/nvpair.c     char *number = pcmk__itoa(value);
value             481 lib/common/nvpair.c crm_xml_add_ll(xmlNode *xml, const char *name, long long value)
value             485 lib/common/nvpair.c     if (snprintf(s, LLSTRSIZE, "%lld", (long long) value) == LLSTRSIZE) {
value             506 lib/common/nvpair.c                     const struct timeval *value)
value             510 lib/common/nvpair.c     if (xml && name_sec && value) {
value             511 lib/common/nvpair.c         added = crm_xml_add_ll(xml, name_sec, (long long) value->tv_sec);
value             514 lib/common/nvpair.c             crm_xml_add_ll(xml, name_usec, (long long) value->tv_usec);
value             567 lib/common/nvpair.c     const char *value = NULL;
value             570 lib/common/nvpair.c     value = crm_element_value(data, name);
value             571 lib/common/nvpair.c     if (value) {
value             574 lib/common/nvpair.c         if ((pcmk__scan_ll(value, &value_ll, 0LL) != pcmk_rc_ok)
value             599 lib/common/nvpair.c     const char *value = NULL;
value             602 lib/common/nvpair.c     value = crm_element_value(data, name);
value             603 lib/common/nvpair.c     if ((value != NULL)
value             604 lib/common/nvpair.c         && (pcmk__scan_ll(value, dest, PCMK__PARSE_INT_DEFAULT) == pcmk_rc_ok)) {
value             624 lib/common/nvpair.c     const char *value = NULL;
value             629 lib/common/nvpair.c     value = crm_element_value(data, name);
value             630 lib/common/nvpair.c     if ((pcmk__scan_ll(value, &value_ll, 0LL) != pcmk_rc_ok)
value             748 lib/common/nvpair.c hash2smartfield(gpointer key, gpointer value, gpointer user_data)
value             751 lib/common/nvpair.c     const char *s_value = value;
value             782 lib/common/nvpair.c hash2field(gpointer key, gpointer value, gpointer user_data)
value             785 lib/common/nvpair.c     const char *s_value = value;
value             810 lib/common/nvpair.c hash2metafield(gpointer key, gpointer value, gpointer user_data)
value             814 lib/common/nvpair.c     if (key == NULL || value == NULL) {
value             828 lib/common/nvpair.c     hash2field(crm_name, value, user_data);
value             846 lib/common/nvpair.c                       const char *value)
value             867 lib/common/nvpair.c     crm_xml_add(nvp, XML_NVPAIR_ATTR_VALUE, value);
value             883 lib/common/nvpair.c hash2nvpair(gpointer key, gpointer value, gpointer user_data)
value             886 lib/common/nvpair.c     const char *s_value = value;
value             941 lib/common/nvpair.c             const char *value = crm_element_value(child, XML_NVPAIR_ATTR_VALUE);
value             943 lib/common/nvpair.c             crm_trace("Added %s=%s", key, value);
value             944 lib/common/nvpair.c             if (key != NULL && value != NULL) {
value             945 lib/common/nvpair.c                 g_hash_table_insert(nvpair_hash, strdup(key), strdup(value));
value             954 lib/common/nvpair.c pcmk__xe_set_bool_attr(xmlNodePtr node, const char *name, bool value)
value             956 lib/common/nvpair.c     crm_xml_add(node, name, value ? XML_BOOLEAN_TRUE : XML_BOOLEAN_FALSE);
value             960 lib/common/nvpair.c pcmk__xe_get_bool_attr(xmlNodePtr node, const char *name, bool *value) {
value             966 lib/common/nvpair.c     } else if (name == NULL || value == NULL) {
value             978 lib/common/nvpair.c         *value = ret;
value             988 lib/common/nvpair.c     bool value = false;
value             991 lib/common/nvpair.c     rc = pcmk__xe_get_bool_attr(node, name, &value);
value             992 lib/common/nvpair.c     return rc == pcmk_rc_ok && value == true;
value            1001 lib/common/nvpair.c pcmk_scan_nvpair(const char *input, char **name, char **value)
value            1003 lib/common/nvpair.c     return pcmk__scan_nvpair(input, name, value);
value            1007 lib/common/nvpair.c pcmk_format_nvpair(const char *name, const char *value,
value            1010 lib/common/nvpair.c     return pcmk__format_nvpair(name, value, units);
value             289 lib/common/options.c     const char *value = NULL;
value             292 lib/common/options.c     value = getenv(env_name);
value             293 lib/common/options.c     if (value != NULL) {
value             294 lib/common/options.c         crm_trace("Found %s = %s", env_name, value);
value             295 lib/common/options.c         return value;
value             299 lib/common/options.c     value = getenv(env_name);
value             300 lib/common/options.c     if (value != NULL) {
value             301 lib/common/options.c         crm_trace("Found %s = %s", env_name, value);
value             302 lib/common/options.c         return value;
value             319 lib/common/options.c pcmk__set_env_option(const char *option, const char *value)
value             324 lib/common/options.c     if (value) {
value             325 lib/common/options.c         crm_trace("Setting %s to %s", env_name, value);
value             326 lib/common/options.c         setenv(env_name, value, 1);
value             333 lib/common/options.c     if (value) {
value             334 lib/common/options.c         crm_trace("Setting %s to %s", env_name, value);
value             335 lib/common/options.c         setenv(env_name, value, 1);
value             358 lib/common/options.c     const char *value = pcmk__env_option(option);
value             360 lib/common/options.c     return (value != NULL) && (crm_is_true(value) || strstr(value, daemon));
value             369 lib/common/options.c pcmk__valid_interval_spec(const char *value)
value             371 lib/common/options.c     (void) crm_parse_interval_spec(value);
value             376 lib/common/options.c pcmk__valid_boolean(const char *value)
value             380 lib/common/options.c     return crm_str_to_boolean(value, &tmp) == 1;
value             384 lib/common/options.c pcmk__valid_number(const char *value)
value             386 lib/common/options.c     if (value == NULL) {
value             389 lib/common/options.c     } else if (pcmk_str_is_minus_infinity(value) ||
value             390 lib/common/options.c                pcmk_str_is_infinity(value)) {
value             394 lib/common/options.c     return pcmk__scan_ll(value, NULL, 0LL) == pcmk_rc_ok;
value             398 lib/common/options.c pcmk__valid_positive_number(const char *value)
value             402 lib/common/options.c     return pcmk_str_is_infinity(value)
value             403 lib/common/options.c            || ((pcmk__scan_ll(value, &num, 0LL) == pcmk_rc_ok) && (num > 0));
value             407 lib/common/options.c pcmk__valid_quorum(const char *value)
value             409 lib/common/options.c     return pcmk__strcase_any_of(value, "stop", "freeze", "ignore", "demote", "suicide", NULL);
value             413 lib/common/options.c pcmk__valid_script(const char *value)
value             417 lib/common/options.c     if (pcmk__str_eq(value, "/dev/null", pcmk__str_casei)) {
value             421 lib/common/options.c     if (stat(value, &st) != 0) {
value             422 lib/common/options.c         crm_err("Script %s does not exist", value);
value             427 lib/common/options.c         crm_err("Script %s is not a regular file", value);
value             432 lib/common/options.c         crm_err("Script %s is not executable", value);
value             440 lib/common/options.c pcmk__valid_percentage(const char *value)
value             443 lib/common/options.c     long number = strtol(value, &end, 10);
value             468 lib/common/options.c     const char *value = NULL;
value             474 lib/common/options.c         value = g_hash_table_lookup(options, name);
value             476 lib/common/options.c         if ((value == NULL) && old_name) {
value             477 lib/common/options.c             value = g_hash_table_lookup(options, old_name);
value             478 lib/common/options.c             if (value != NULL) {
value             485 lib/common/options.c                 new_value = strdup(value);
value             487 lib/common/options.c                 value = new_value;
value             491 lib/common/options.c         if (value && validate && (validate(value) == FALSE)) {
value             493 lib/common/options.c                              "because '%s' is invalid", name, value);
value             494 lib/common/options.c             value = NULL;
value             497 lib/common/options.c         if (value) {
value             498 lib/common/options.c             return value;
value             503 lib/common/options.c     value = def_value;
value             505 lib/common/options.c     if (value == NULL) {
value             512 lib/common/options.c         CRM_CHECK(validate(value) != FALSE,
value             518 lib/common/options.c               value, name);
value             520 lib/common/options.c         new_value = strdup(value);
value             522 lib/common/options.c         value = new_value;
value             524 lib/common/options.c     return value;
value             541 lib/common/options.c     const char *value = NULL;
value             545 lib/common/options.c             value = cluster_option_value(options, option_list[lpc].is_valid,
value             549 lib/common/options.c             return value;
value             453 lib/common/output_html.c         char *value;
value             459 lib/common/output_html.c         value = va_arg(ap, char *);
value             460 lib/common/output_html.c         crm_xml_add(header_node, key, value);
value              91 lib/common/patchset.c     const char *value = NULL;
value             147 lib/common/patchset.c             value = crm_element_value(xml, (const char *) pIter->name);
value             148 lib/common/patchset.c             crm_xml_add(attr, XML_NVPAIR_ATTR_VALUE, value);
value             162 lib/common/patchset.c                 value = crm_element_value(xml, (const char *) pIter->name);
value             163 lib/common/patchset.c                 crm_xml_add(result, (const char *)pIter->name, value);
value             255 lib/common/patchset.c         const char *value = crm_element_value(last, vfields[lpc]);
value             257 lib/common/patchset.c         crm_xml_add(diff_child, vfields[lpc], value);
value             259 lib/common/patchset.c             crm_xml_add(cib, vfields[lpc], value);
value             276 lib/common/patchset.c         const char *value = crm_element_value(next, vfields[lpc]);
value             278 lib/common/patchset.c         crm_xml_add(diff_child, vfields[lpc], value);
value             335 lib/common/patchset.c         const char *value = crm_element_value(source, vfields[lpc]);
value             337 lib/common/patchset.c         if (value == NULL) {
value             338 lib/common/patchset.c             value = "1";
value             340 lib/common/patchset.c         crm_xml_add(v, vfields[lpc], value);
value             345 lib/common/patchset.c         const char *value = crm_element_value(target, vfields[lpc]);
value             347 lib/common/patchset.c         if (value == NULL) {
value             348 lib/common/patchset.c             value = "1";
value             350 lib/common/patchset.c         crm_xml_add(v, vfields[lpc], value);
value             558 lib/common/patchset.c                         const char *value = crm_element_value(child, "value");
value             566 lib/common/patchset.c                                           name, value);
value             651 lib/common/patchset.c     const char *value = NULL;
value             672 lib/common/patchset.c     value = crm_element_value(patch, XML_DIFF_MARKER);
value             673 lib/common/patchset.c     if ((value != NULL) && (strcmp(value, "removed:top") == 0)) {
value             705 lib/common/patchset.c     const char *value = NULL;
value             714 lib/common/patchset.c     value = crm_element_value(patch, XML_DIFF_MARKER);
value             715 lib/common/patchset.c     if ((target == NULL) && (value != NULL)
value             716 lib/common/patchset.c         && (strcmp(value, "added:top") == 0)) {
value            1213 lib/common/patchset.c                 const char *value = crm_element_value(attrs, name);
value            1215 lib/common/patchset.c                 crm_xml_add(match, name, value);
value            1479 lib/common/patchset.c     const char *value = NULL;
value            1514 lib/common/patchset.c     value = crm_element_value(right, XML_DIFF_MARKER);
value            1515 lib/common/patchset.c     if ((value != NULL) && (strcmp(value, "removed:top") == 0)) {
value            1596 lib/common/patchset.c                 xmlSetProp(diff, (pcmkXmlStr) prop_name, (pcmkXmlStr) value);
value            1045 lib/common/schemas.c     char *value = NULL;
value            1057 lib/common/schemas.c     value = crm_element_value_copy(xml, XML_ATTR_VALIDATION);
value            1059 lib/common/schemas.c     if (value != NULL) {
value            1060 lib/common/schemas.c         match = get_schema_version(value);
value            1074 lib/common/schemas.c         free(value);
value            1178 lib/common/schemas.c                    value ? value : "<none>", known_schemas[*best].name);
value            1183 lib/common/schemas.c     free(value);
value            1191 lib/common/schemas.c     const char *value = crm_element_value(*xml, XML_ATTR_VALIDATION);
value            1192 lib/common/schemas.c     char *const orig_value = strdup(value == NULL ? "(none)" : value);
value            1194 lib/common/schemas.c     int version = get_schema_version(value);
value            1205 lib/common/schemas.c         value = crm_element_value(converted, XML_ATTR_VALIDATION);
value            1238 lib/common/schemas.c                                      crm_str(value));
value            1245 lib/common/schemas.c                                     crm_str(value));
value             314 lib/common/strings.c     const char *value;
value             324 lib/common/strings.c     value = g_hash_table_lookup(table, key);
value             325 lib/common/strings.c     if (value == NULL) {
value             329 lib/common/strings.c     rc = pcmk__scan_ll(value, &value_ll, 0LL);
value             335 lib/common/strings.c         crm_warn("Could not parse non-negative integer from %s", value);
value             657 lib/common/strings.c copy_str_table_entry(gpointer key, gpointer value, gpointer user_data)
value             659 lib/common/strings.c     if (key && value && user_data) {
value             660 lib/common/strings.c         g_hash_table_insert((GHashTable*)user_data, strdup(key), strdup(value));
value            1188 lib/common/strings.c pcmk__str_update(char **str, const char *value)
value            1190 lib/common/strings.c     if ((str != NULL) && !pcmk__str_eq(*str, value, pcmk__str_none)) {
value            1192 lib/common/strings.c         if (value == NULL) {
value            1195 lib/common/strings.c             *str = strdup(value);
value              26 lib/common/tests/nvpair/pcmk__xe_get_bool_attr_test.c     bool value;
value              28 lib/common/tests/nvpair/pcmk__xe_get_bool_attr_test.c     assert_int_equal(pcmk__xe_get_bool_attr(NULL, NULL, &value), ENODATA);
value              29 lib/common/tests/nvpair/pcmk__xe_get_bool_attr_test.c     assert_int_equal(pcmk__xe_get_bool_attr(NULL, "whatever", &value), ENODATA);
value              30 lib/common/tests/nvpair/pcmk__xe_get_bool_attr_test.c     assert_int_equal(pcmk__xe_get_bool_attr(node, NULL, &value), EINVAL);
value              40 lib/common/tests/nvpair/pcmk__xe_get_bool_attr_test.c     bool value;
value              42 lib/common/tests/nvpair/pcmk__xe_get_bool_attr_test.c     assert_int_equal(pcmk__xe_get_bool_attr(node, "c", &value), ENODATA);
value              50 lib/common/tests/nvpair/pcmk__xe_get_bool_attr_test.c     bool value;
value              52 lib/common/tests/nvpair/pcmk__xe_get_bool_attr_test.c     value = false;
value              53 lib/common/tests/nvpair/pcmk__xe_get_bool_attr_test.c     assert_int_equal(pcmk__xe_get_bool_attr(node, "a", &value), pcmk_rc_ok);
value              54 lib/common/tests/nvpair/pcmk__xe_get_bool_attr_test.c     assert_true(value);
value              55 lib/common/tests/nvpair/pcmk__xe_get_bool_attr_test.c     value = true;
value              56 lib/common/tests/nvpair/pcmk__xe_get_bool_attr_test.c     assert_int_equal(pcmk__xe_get_bool_attr(node, "b", &value), pcmk_rc_ok);
value              57 lib/common/tests/nvpair/pcmk__xe_get_bool_attr_test.c     assert_false(value);
value              58 lib/common/tests/nvpair/pcmk__xe_get_bool_attr_test.c     assert_int_equal(pcmk__xe_get_bool_attr(node, "c", &value), pcmk_rc_unknown_format);
value             464 lib/common/utils.c     const char *value = NULL;
value             468 lib/common/utils.c         value = g_hash_table_lookup(hash, key);
value             472 lib/common/utils.c     return value;
value             282 lib/common/watchdog.c pcmk__valid_sbd_timeout(const char *value)
value             284 lib/common/watchdog.c     long st_timeout = value? crm_get_msec(value) : 0;
value             289 lib/common/watchdog.c                   st_timeout, value);
value             294 lib/common/watchdog.c                   value? value : "default");
value             298 lib/common/watchdog.c                   "but SBD not active", (value? value : "auto"));
value             307 lib/common/watchdog.c                       "(must be >%ldms)", value, sbd_timeout);
value             312 lib/common/watchdog.c                  value, sbd_timeout);
value             559 lib/common/xml.c expand_plus_plus(xmlNode * target, const char *name, const char *value)
value             568 lib/common/xml.c     if (value == NULL || name == NULL) {
value             578 lib/common/xml.c     } else if (strstr(value, name) != value) {
value             583 lib/common/xml.c     value_len = strlen(value);
value             585 lib/common/xml.c         || value[name_len] != '+' || (value[name_len + 1] != '+' && value[name_len + 1] != '=')) {
value             592 lib/common/xml.c     if (old_value != value) {
value             596 lib/common/xml.c     if (value[name_len + 1] != '+') {
value             597 lib/common/xml.c         const char *offset_s = value + (name_len + 2);
value             611 lib/common/xml.c     if (old_value == value) {
value             615 lib/common/xml.c     crm_xml_add(target, name, value);
value            1596 lib/common/xml.c                 const char *value = crm_element_value(data, aname);
value            1599 lib/common/xml.c                                  "%s %s @%s=%s", flags, spaces, aname, value);
value            1602 lib/common/xml.c                 const char *value = crm_element_value(data, aname);
value            1617 lib/common/xml.c                                  "%s %s @%s=%s", flags, spaces, aname, value);
value            2648 lib/common/xml.c                   const char *tag, const char *field, const char *value, gboolean search_matches)
value            2657 lib/common/xml.c     } else if (value != NULL && !pcmk__str_eq(value, crm_element_value(root, field), pcmk__str_casei)) {
value            2672 lib/common/xml.c             match_found += find_xml_children(children, child, tag, field, value, search_matches);
value            2959 lib/common/xml.c         const char *name, *value;
value            2966 lib/common/xml.c         value = va_arg(pairs, const char *);
value            2967 lib/common/xml.c         if (value != NULL) {
value            2968 lib/common/xml.c             crm_xml_add(node, name, value);
value              89 lib/fencing/st_actions.c append_config_arg(gpointer key, gpointer value, gpointer user_data)
value             102 lib/fencing/st_actions.c                   (const char *) key, (const char *) (value? value : ""));
value             104 lib/fencing/st_actions.c                             strdup(key), strdup(value? value : ""));
value             114 lib/fencing/st_actions.c     const char *value = NULL;
value             125 lib/fencing/st_actions.c         value = g_hash_table_lookup(device_args, buffer);
value             126 lib/fencing/st_actions.c         if (value) {
value             128 lib/fencing/st_actions.c                       value, action, victim);
value             129 lib/fencing/st_actions.c             action = value;
value             167 lib/fencing/st_actions.c             value = g_hash_table_lookup(device_args, param);
value             169 lib/fencing/st_actions.c             if (pcmk__str_eq(value, "dynamic",
value             263 lib/fencing/st_actions.c         const char *value = NULL;
value             266 lib/fencing/st_actions.c         value = g_hash_table_lookup(device_args, buffer);
value             268 lib/fencing/st_actions.c         if (value) {
value             269 lib/fencing/st_actions.c             action->max_retries = atoi(value);
value             321 lib/fencing/st_client.c         hash2field((gpointer) params->key, (gpointer) params->value, args);
value             362 lib/fencing/st_client.c                               const char *attr, const char *value, int level)
value             367 lib/fencing/st_client.c     CRM_CHECK(node || pattern || (attr && value), return -EINVAL);
value             380 lib/fencing/st_client.c         crm_xml_add(data, XML_ATTR_STONITH_TARGET_VALUE, value);
value             414 lib/fencing/st_client.c                               const char *attr, const char *value,
value             421 lib/fencing/st_client.c     CRM_CHECK(node || pattern || (attr && value), return NULL);
value             438 lib/fencing/st_client.c         crm_xml_add(data, XML_ATTR_STONITH_TARGET_VALUE, value);
value             444 lib/fencing/st_client.c         pcmk__add_separated_word(&list, &len, device_list->value, ",");
value             456 lib/fencing/st_client.c                                 const char *attr, const char *value,
value             460 lib/fencing/st_client.c     xmlNode *data = create_level_registration_xml(node, pattern, attr, value,
value            1330 lib/fencing/st_client.c stonith_dump_pending_op(gpointer key, gpointer value, gpointer user_data)
value            1333 lib/fencing/st_client.c     stonith_callback_client_t *blob = value;
value            1714 lib/fencing/st_client.c             host_arg = params->value;
value            1718 lib/fencing/st_client.c                                 strdup(params->value));
value            1865 lib/fencing/st_client.c stonith_key_value_add(stonith_key_value_t * head, const char *key, const char *value)
value            1871 lib/fencing/st_client.c     pcmk__str_update(&p->value, value);
value            1898 lib/fencing/st_client.c             free(head->value);
value            2034 lib/fencing/st_client.c         if (pcmk__str_eq(dIter->value, agent, pcmk__str_none)) {
value              28 lib/lrmd/lrmd_alerts.c                 const char *value)
value              32 lib/lrmd/lrmd_alerts.c     if (value == NULL) {
value              33 lib/lrmd/lrmd_alerts.c         value = "";
value              36 lib/lrmd/lrmd_alerts.c         crm_trace("Setting alert key %s = '%s'", *key, value);
value              37 lib/lrmd/lrmd_alerts.c         head = lrmd_key_value_add(head, *key, value);
value              44 lib/lrmd/lrmd_alerts.c                     int value)
value              46 lib/lrmd/lrmd_alerts.c     char *value_s = pcmk__itoa(value);
value              55 lib/lrmd/lrmd_alerts.c                    guint value)
value              57 lib/lrmd/lrmd_alerts.c     char *value_s = crm_strdup_printf("%u", value);
value              65 lib/lrmd/lrmd_alerts.c set_ev_kv(gpointer key, gpointer value, gpointer user_data)
value              69 lib/lrmd/lrmd_alerts.c     if (value) {
value              71 lib/lrmd/lrmd_alerts.c                   (char*)key, (char*)value);
value              72 lib/lrmd/lrmd_alerts.c         *head = lrmd_key_value_add(*head, key, value);
value              90 lib/lrmd/lrmd_alerts.c is_target_alert(char **list, const char *value)
value              95 lib/lrmd/lrmd_alerts.c     CRM_CHECK(value != NULL, return FALSE);
value             104 lib/lrmd/lrmd_alerts.c         if (strcmp(list[cnt], value) == 0) {
value             171 lib/lrmd/lrmd_alerts.c             copy_params = lrmd_key_value_add(copy_params, head->key, head->value);
value             109 lib/lrmd/lrmd_client.c lrmd_list_add(lrmd_list_t * head, const char *value)
value             114 lib/lrmd/lrmd_client.c     p->val = strdup(value);
value             146 lib/lrmd/lrmd_client.c lrmd_key_value_add(lrmd_key_value_t * head, const char *key, const char *value)
value             152 lib/lrmd/lrmd_client.c     p->value = strdup(value);
value             176 lib/lrmd/lrmd_client.c         free(head->value);
value             935 lib/lrmd/lrmd_client.c     const char *value;
value             941 lib/lrmd/lrmd_client.c     value = g_hash_table_lookup(hash, "stonith-watchdog-timeout");
value             942 lib/lrmd/lrmd_client.c     if ((value) &&
value             944 lib/lrmd/lrmd_client.c        crm_xml_add(data, F_LRMD_WATCHDOG, value);
value            1955 lib/lrmd/lrmd_client.c         g_hash_table_insert(params_table, strdup(param->key), strdup(param->value));
value            2012 lib/lrmd/lrmd_client.c         hash2smartfield((gpointer) tmp->key, (gpointer) tmp->value, args);
value            2038 lib/lrmd/lrmd_client.c         hash2smartfield((gpointer) tmp->key, (gpointer) tmp->value, args);
value            2084 lib/lrmd/lrmd_client.c             *resources = lrmd_list_add(*resources, dIter->value);
value              43 lib/pacemaker/pcmk_fence.c     char *value = NULL;
value              52 lib/pacemaker/pcmk_fence.c     value = strchr(target, '=');
value              53 lib/pacemaker/pcmk_fence.c     if (value != NULL)  {
value              55 lib/pacemaker/pcmk_fence.c         *value++ = '\0';
value              65 lib/pacemaker/pcmk_fence.c                                            name, value, fence_level,
value              69 lib/pacemaker/pcmk_fence.c                                          name, value, fence_level);
value             326 lib/pacemaker/pcmk_fence.c         out->list_item(out, "device", "%s", dIter->value);
value             484 lib/pacemaker/pcmk_fence.c         out->list_item(out, "device", "%s", dIter->value);
value             468 lib/pacemaker/pcmk_graph_consumer.c     const char *value = ID(xml_action);
value             470 lib/pacemaker/pcmk_graph_consumer.c     if (value == NULL) {
value             501 lib/pacemaker/pcmk_graph_consumer.c     pcmk__scan_min_int(value, &(action->id), -1);
value             508 lib/pacemaker/pcmk_graph_consumer.c     value = g_hash_table_lookup(action->params, "CRM_meta_timeout");
value             509 lib/pacemaker/pcmk_graph_consumer.c     pcmk__scan_min_int(value, &(action->timeout), 0);
value             512 lib/pacemaker/pcmk_graph_consumer.c     value = g_hash_table_lookup(action->params, "CRM_meta_start_delay");
value             516 lib/pacemaker/pcmk_graph_consumer.c         pcmk__scan_min_int(value, &start_delay, 0);
value             526 lib/pacemaker/pcmk_graph_consumer.c     value = g_hash_table_lookup(action->params, "CRM_meta_can_fail");
value             527 lib/pacemaker/pcmk_graph_consumer.c     if (value != NULL) {
value             530 lib/pacemaker/pcmk_graph_consumer.c         crm_str_to_boolean(value, &can_fail);
value             562 lib/pacemaker/pcmk_graph_consumer.c     const char *value = NULL;
value             575 lib/pacemaker/pcmk_graph_consumer.c     value = crm_element_value(xml_synapse, XML_CIB_ATTR_PRIORITY);
value             576 lib/pacemaker/pcmk_graph_consumer.c     pcmk__scan_min_int(value, &(new_synapse->priority), 0);
value             818 lib/pacemaker/pcmk_graph_consumer.c     const char *value = NULL;
value             837 lib/pacemaker/pcmk_graph_consumer.c     while (g_hash_table_iter_next(&iter, (void **)&name, (void **)&value)) {
value             838 lib/pacemaker/pcmk_graph_consumer.c         g_hash_table_insert(op->params, strdup(name), strdup(value));
value             383 lib/pacemaker/pcmk_graph_producer.c         const char *value = g_hash_table_lookup(action->rsc->meta,
value             392 lib/pacemaker/pcmk_graph_producer.c         if (value != NULL) {
value             393 lib/pacemaker/pcmk_graph_producer.c             hash2smartfield((gpointer) "pcmk_external_ip", (gpointer) value,
value            1002 lib/pacemaker/pcmk_graph_producer.c     const char *value = NULL;
value            1010 lib/pacemaker/pcmk_graph_producer.c     value = pe_pref(data_set->config_hash, "cluster-delay");
value            1011 lib/pacemaker/pcmk_graph_producer.c     crm_xml_add(data_set->graph, "cluster-delay", value);
value            1013 lib/pacemaker/pcmk_graph_producer.c     value = pe_pref(data_set->config_hash, "stonith-timeout");
value            1014 lib/pacemaker/pcmk_graph_producer.c     crm_xml_add(data_set->graph, "stonith-timeout", value);
value            1024 lib/pacemaker/pcmk_graph_producer.c     value = pe_pref(data_set->config_hash, "batch-limit");
value            1025 lib/pacemaker/pcmk_graph_producer.c     crm_xml_add(data_set->graph, "batch-limit", value);
value            1029 lib/pacemaker/pcmk_graph_producer.c     value = pe_pref(data_set->config_hash, "migration-limit");
value            1030 lib/pacemaker/pcmk_graph_producer.c     if ((pcmk__scan_ll(value, &limit, 0LL) == pcmk_rc_ok) && (limit > 0)) {
value            1031 lib/pacemaker/pcmk_graph_producer.c         crm_xml_add(data_set->graph, "migration-limit", value);
value              53 lib/pacemaker/pcmk_injections.c                       const char *name, const char *value)
value              59 lib/pacemaker/pcmk_injections.c     out->message(out, "inject-attr", name, value, cib_node);
value              73 lib/pacemaker/pcmk_injections.c     crm_create_nvpair_xml(instance_attrs, NULL, name, value);
value            1194 lib/pacemaker/pcmk_output.c     const char *value = va_arg(args, const char *);
value            1206 lib/pacemaker/pcmk_output.c                    name, value, node_path, ID(cib_node));
value            1217 lib/pacemaker/pcmk_output.c     const char *value = va_arg(args, const char *);
value            1230 lib/pacemaker/pcmk_output.c                                  "value", value,
value            1807 lib/pacemaker/pcmk_output.c     char *value = va_arg(args, char *);
value            1826 lib/pacemaker/pcmk_output.c     g_string_append_printf(s, "value=\"%s\"", value ? value : "");
value            1841 lib/pacemaker/pcmk_output.c     char *value = va_arg(args, char *);
value            1848 lib/pacemaker/pcmk_output.c                                         "value", value ? value : "",
value             952 lib/pacemaker/pcmk_sched_colocation.c     const char *value = NULL;
value             962 lib/pacemaker/pcmk_sched_colocation.c         value = pe_node_attribute_raw(primary->allocated_to, attribute);
value             979 lib/pacemaker/pcmk_sched_colocation.c         } else if (pcmk__str_eq(pe_node_attribute_raw(node, attribute), value,
value             145 lib/pacemaker/pcmk_sched_group.c     const char *value = NULL;
value             171 lib/pacemaker/pcmk_sched_group.c     value = g_hash_table_lookup(rsc->meta, XML_RSC_ATTR_PROMOTABLE);
value             172 lib/pacemaker/pcmk_sched_group.c     if (crm_is_true(value)) {
value             293 lib/pacemaker/pcmk_sched_location.c     const char *value = crm_element_value(xml_obj, XML_LOC_ATTR_SOURCE);
value             295 lib/pacemaker/pcmk_sched_location.c     if (value) {
value             298 lib/pacemaker/pcmk_sched_location.c         rsc_lh = pcmk__find_constraint_resource(data_set->resources, value);
value             302 lib/pacemaker/pcmk_sched_location.c     value = crm_element_value(xml_obj, XML_LOC_ATTR_SOURCE_PATTERN);
value             303 lib/pacemaker/pcmk_sched_location.c     if (value) {
value             308 lib/pacemaker/pcmk_sched_location.c         if (value[0] == '!') {
value             309 lib/pacemaker/pcmk_sched_location.c             value++;
value             313 lib/pacemaker/pcmk_sched_location.c         if (regcomp(r_patt, value, REG_EXTENDED)) {
value             316 lib/pacemaker/pcmk_sched_location.c                              " has invalid value '%s'", id, value);
value             344 lib/pacemaker/pcmk_sched_location.c                 crm_debug("'%s' matched '%s' for %s", r->id, value, id);
value             350 lib/pacemaker/pcmk_sched_location.c                           r->id, value, id);
value             354 lib/pacemaker/pcmk_sched_location.c                 crm_trace("'%s' does not match '%s' for %s", r->id, value, id);
value             213 lib/pacemaker/pcmk_sched_native.c                               const char *value)
value             225 lib/pacemaker/pcmk_sched_native.c             && pcmk__str_eq(value, pe_node_attribute_raw(node, attr), pcmk__str_casei)) {
value             235 lib/pacemaker/pcmk_sched_native.c                      rsc->id, attr, value);
value             239 lib/pacemaker/pcmk_sched_native.c                      best_node, rsc->id, best_score, attr, value);
value             655 lib/pacemaker/pcmk_sched_native.c     const char *value = NULL;
value             664 lib/pacemaker/pcmk_sched_native.c             value = crm_element_value(operation, "name");
value             665 lib/pacemaker/pcmk_sched_native.c             if (!pcmk__str_eq(value, name, pcmk__str_casei)) {
value             669 lib/pacemaker/pcmk_sched_native.c             value = crm_element_value(operation, XML_LRM_ATTR_INTERVAL);
value             670 lib/pacemaker/pcmk_sched_native.c             interval2_ms = crm_parse_interval_spec(value);
value            2494 lib/pacemaker/pcmk_sched_native.c     char *value = g_hash_table_lookup(rsc->meta, XML_RSC_ATTR_INCARNATION);
value            2497 lib/pacemaker/pcmk_sched_native.c     if (value) {
value            2501 lib/pacemaker/pcmk_sched_native.c         crm_xml_add(xml, name, value);
value            2505 lib/pacemaker/pcmk_sched_native.c     value = g_hash_table_lookup(rsc->meta, XML_RSC_ATTR_REMOTE_NODE);
value            2506 lib/pacemaker/pcmk_sched_native.c     if (value) {
value            2510 lib/pacemaker/pcmk_sched_native.c         crm_xml_add(xml, name, value);
value             249 lib/pacemaker/pcmk_sched_notif.c copy_meta_to_notify(gpointer key, gpointer value, gpointer user_data)
value             261 lib/pacemaker/pcmk_sched_notif.c                         strdup((const char *) value));
value             270 lib/pacemaker/pcmk_sched_notif.c         add_hash_param(action->meta, nvpair->name, nvpair->value);
value             320 lib/pacemaker/pcmk_sched_notif.c     const char *value = NULL;
value             342 lib/pacemaker/pcmk_sched_notif.c     value = g_hash_table_lookup(op->meta, "notify_type");     // "pre" or "post"
value             346 lib/pacemaker/pcmk_sched_notif.c                  rsc->id, node->details->uname, value, task);
value             349 lib/pacemaker/pcmk_sched_notif.c     key = pcmk__notify_key(rsc->id, value, task);
value             638 lib/pacemaker/pcmk_sched_notif.c #define add_notify_env(n_data, key, value) do {                         \
value             639 lib/pacemaker/pcmk_sched_notif.c          n_data->keys = pcmk_prepend_nvpair(n_data->keys, key, value);  \
value             642 lib/pacemaker/pcmk_sched_notif.c #define add_notify_env_free(n_data, key, value) do {                    \
value             643 lib/pacemaker/pcmk_sched_notif.c          n_data->keys = pcmk_prepend_nvpair(n_data->keys, key, value);  \
value             644 lib/pacemaker/pcmk_sched_notif.c          free(value); value = NULL;                                     \
value             971 lib/pacemaker/pcmk_sched_promotable.c     const char *value = NULL;
value             980 lib/pacemaker/pcmk_sched_promotable.c     value = pe_node_attribute_raw(other, attr);
value             985 lib/pacemaker/pcmk_sched_promotable.c         if (pcmk__str_eq(value, tmp, pcmk__str_casei)) {
value             115 lib/pacemaker/pcmk_sched_resource.c         const char *value = crm_element_value(rsc->xml, attr_list[i]);
value             118 lib/pacemaker/pcmk_sched_resource.c         if (!pcmk__str_eq(value, old_value, pcmk__str_none)) {
value             126 lib/pacemaker/pcmk_sched_resource.c                            crm_str(old_value), crm_str(value));
value              31 lib/pacemaker/pcmk_sched_utilization.c     int value = 0;
value              33 lib/pacemaker/pcmk_sched_utilization.c     if ((s != NULL) && (pcmk__scan_min_int(s, &value, INT_MIN) == EINVAL)) {
value              34 lib/pacemaker/pcmk_sched_utilization.c         pe_warn("Using 0 for utilization instead of invalid value '%s'", value);
value              35 lib/pacemaker/pcmk_sched_utilization.c         value = 0;
value              37 lib/pacemaker/pcmk_sched_utilization.c     return value;
value              65 lib/pacemaker/pcmk_sched_utilization.c compare_utilization_value(gpointer key, gpointer value, gpointer user_data)
value              77 lib/pacemaker/pcmk_sched_utilization.c         node1_capacity = utilization_value((const char *) value);
value             142 lib/pacemaker/pcmk_sched_utilization.c update_utilization_value(gpointer key, gpointer value, gpointer user_data)
value             150 lib/pacemaker/pcmk_sched_utilization.c         result = utilization_value(current) + utilization_value(value);
value             152 lib/pacemaker/pcmk_sched_utilization.c         result = utilization_value(current) - utilization_value(value);
value             214 lib/pacemaker/pcmk_sched_utilization.c check_capacity(gpointer key, gpointer value, gpointer user_data)
value             223 lib/pacemaker/pcmk_sched_utilization.c     required = utilization_value(value);
value             945 lib/pengine/bundle.c     const char *value;
value             954 lib/pengine/bundle.c     value = g_hash_table_lookup(params, XML_RSC_ATTR_REMOTE_RA_ADDR);
value             956 lib/pengine/bundle.c     return pcmk__str_eq(value, "#uname", pcmk__str_casei)
value            1009 lib/pengine/bundle.c     const char *value = NULL;
value            1040 lib/pengine/bundle.c     value = crm_element_value(xml_obj, XML_RSC_ATTR_PROMOTED_MAX);
value            1041 lib/pengine/bundle.c     if (value == NULL) {
value            1043 lib/pengine/bundle.c         value = crm_element_value(xml_obj, "masters");
value            1045 lib/pengine/bundle.c     pcmk__scan_min_int(value, &bundle_data->promoted_max, 0);
value            1048 lib/pengine/bundle.c     value = crm_element_value(xml_obj, "replicas");
value            1049 lib/pengine/bundle.c     if ((value == NULL) && (bundle_data->promoted_max > 0)) {
value            1052 lib/pengine/bundle.c         pcmk__scan_min_int(value, &bundle_data->nreplicas, 1);
value            1060 lib/pengine/bundle.c     value = crm_element_value(xml_obj, "replicas-per-host");
value            1061 lib/pengine/bundle.c     pcmk__scan_min_int(value, &bundle_data->nreplicas_per_host, 1);
value            1078 lib/pengine/bundle.c         value = crm_element_value(xml_obj, "add-host");
value            1079 lib/pengine/bundle.c         if (crm_str_to_boolean(value, &bundle_data->add_host) != 1) {
value            1135 lib/pengine/bundle.c         char *value = NULL;
value            1154 lib/pengine/bundle.c         value = pcmk__itoa(bundle_data->nreplicas);
value            1156 lib/pengine/bundle.c                               XML_RSC_ATTR_INCARNATION_MAX, value);
value            1157 lib/pengine/bundle.c         free(value);
value            1159 lib/pengine/bundle.c         value = pcmk__itoa(bundle_data->nreplicas_per_host);
value            1161 lib/pengine/bundle.c                               XML_RSC_ATTR_INCARNATION_NODEMAX, value);
value            1162 lib/pengine/bundle.c         free(value);
value            1171 lib/pengine/bundle.c             value = pcmk__itoa(bundle_data->promoted_max);
value            1173 lib/pengine/bundle.c                                   XML_RSC_ATTR_PROMOTED_MAX, value);
value            1174 lib/pengine/bundle.c             free(value);
value              38 lib/pengine/clone.c     gpointer key, value;
value              41 lib/pengine/clone.c     while (g_hash_table_iter_next(&iter, &key, &value)) {
value              42 lib/pengine/clone.c         if (!g_list_find_custom(retval, value, (GCompareFunc) strcmp)) {
value              43 lib/pengine/clone.c             retval = g_list_prepend(retval, (char *) value);
value              56 lib/pengine/clone.c     gpointer key, value;
value              59 lib/pengine/clone.c     while (g_hash_table_iter_next(&iter, &key, &value)) {
value              60 lib/pengine/clone.c         if (!strcmp((char *) value, status)) {
value              24 lib/pengine/common.c check_placement_strategy(const char *value)
value              26 lib/pengine/common.c     return pcmk__strcase_any_of(value, "default", "utilization", "minimal",
value             504 lib/pengine/common.c add_hash_param(GHashTable * hash, const char *name, const char *value)
value             508 lib/pengine/common.c     crm_trace("adding: name=%s value=%s", crm_str(name), crm_str(value));
value             509 lib/pengine/common.c     if (name == NULL || value == NULL) {
value             512 lib/pengine/common.c     } else if (pcmk__str_eq(value, "#default", pcmk__str_casei)) {
value             516 lib/pengine/common.c         g_hash_table_insert(hash, strdup(name), strdup(value));
value              94 lib/pengine/complex.c dup_attr(gpointer key, gpointer value, gpointer user_data)
value              96 lib/pengine/complex.c     add_hash_param(user_data, key, value);
value             122 lib/pengine/complex.c         char *value = NULL;
value             125 lib/pengine/complex.c         while (g_hash_table_iter_next(&iter, (gpointer *) &key, (gpointer *) &value)) {
value             128 lib/pengine/complex.c             dup_attr(key, value, meta_hash);
value             499 lib/pengine/complex.c     const char *value = NULL;
value             566 lib/pengine/complex.c     value = crm_element_value((*rsc)->xml, XML_RSC_ATTR_INCARNATION);
value             567 lib/pengine/complex.c     if (value) {
value             568 lib/pengine/complex.c         (*rsc)->id = crm_strdup_printf("%s:%s", id, value);
value             569 lib/pengine/complex.c         add_hash_param((*rsc)->meta, XML_RSC_ATTR_INCARNATION, value);
value             602 lib/pengine/complex.c     value = g_hash_table_lookup((*rsc)->meta, XML_CIB_ATTR_PRIORITY);
value             603 lib/pengine/complex.c     (*rsc)->priority = char2score(value);
value             605 lib/pengine/complex.c     value = g_hash_table_lookup((*rsc)->meta, XML_RSC_ATTR_CRITICAL);
value             606 lib/pengine/complex.c     if ((value == NULL) || crm_is_true(value)) {
value             610 lib/pengine/complex.c     value = g_hash_table_lookup((*rsc)->meta, XML_RSC_ATTR_NOTIFY);
value             611 lib/pengine/complex.c     if (crm_is_true(value)) {
value             624 lib/pengine/complex.c     value = g_hash_table_lookup((*rsc)->meta, XML_OP_ATTR_ALLOW_MIGRATE);
value             628 lib/pengine/complex.c     if (crm_is_true(value) && has_versioned_params) {
value             630 lib/pengine/complex.c     } else if (crm_is_true(value)) {
value             632 lib/pengine/complex.c     } else if ((value == NULL) && remote_node && !has_versioned_params) {
value             643 lib/pengine/complex.c     value = g_hash_table_lookup((*rsc)->meta, XML_RSC_ATTR_MANAGED);
value             644 lib/pengine/complex.c     if (value != NULL && !pcmk__str_eq("default", value, pcmk__str_casei)) {
value             645 lib/pengine/complex.c         if (crm_is_true(value)) {
value             652 lib/pengine/complex.c     value = g_hash_table_lookup((*rsc)->meta, XML_RSC_ATTR_MAINTENANCE);
value             653 lib/pengine/complex.c     if (crm_is_true(value)) {
value             663 lib/pengine/complex.c         value = g_hash_table_lookup((*rsc)->meta, XML_RSC_ATTR_UNIQUE);
value             664 lib/pengine/complex.c         if (crm_is_true(value)) {
value             676 lib/pengine/complex.c     value = g_hash_table_lookup((*rsc)->meta, XML_RSC_ATTR_RESTART);
value             677 lib/pengine/complex.c     if (pcmk__str_eq(value, "restart", pcmk__str_casei)) {
value             688 lib/pengine/complex.c     value = g_hash_table_lookup((*rsc)->meta, XML_RSC_ATTR_MULTIPLE);
value             689 lib/pengine/complex.c     if (pcmk__str_eq(value, "stop_only", pcmk__str_casei)) {
value             693 lib/pengine/complex.c     } else if (pcmk__str_eq(value, "block", pcmk__str_casei)) {
value             697 lib/pengine/complex.c     } else if (pcmk__str_eq(value, "stop_unexpected", pcmk__str_casei)) {
value             703 lib/pengine/complex.c         if (!pcmk__str_eq(value, "stop_start",
value             706 lib/pengine/complex.c                     ", using default of \"stop_start\"", value);
value             712 lib/pengine/complex.c     value = g_hash_table_lookup((*rsc)->meta, XML_RSC_ATTR_STICKINESS);
value             713 lib/pengine/complex.c     if (value != NULL && !pcmk__str_eq("default", value, pcmk__str_casei)) {
value             714 lib/pengine/complex.c         (*rsc)->stickiness = char2score(value);
value             717 lib/pengine/complex.c     value = g_hash_table_lookup((*rsc)->meta, XML_RSC_ATTR_FAIL_STICKINESS);
value             718 lib/pengine/complex.c     if (value != NULL && !pcmk__str_eq("default", value, pcmk__str_casei)) {
value             719 lib/pengine/complex.c         (*rsc)->migration_threshold = char2score(value);
value             737 lib/pengine/complex.c     value = g_hash_table_lookup((*rsc)->meta, XML_RSC_ATTR_REQUIRES);
value             740 lib/pengine/complex.c     if (pcmk__str_eq(value, "nothing", pcmk__str_casei)) {
value             742 lib/pengine/complex.c     } else if (pcmk__str_eq(value, "quorum", pcmk__str_casei)) {
value             745 lib/pengine/complex.c     } else if (pcmk__str_eq(value, "unfencing", pcmk__str_casei)) {
value             750 lib/pengine/complex.c             value = "quorum";
value             758 lib/pengine/complex.c             value = "quorum";
value             767 lib/pengine/complex.c     } else if (pcmk__str_eq(value, "fencing", pcmk__str_casei)) {
value             775 lib/pengine/complex.c         const char *orig_value = value;
value             779 lib/pengine/complex.c             value = "quorum";
value             786 lib/pengine/complex.c             value = "quorum";
value             789 lib/pengine/complex.c             value = "unfencing";
value             792 lib/pengine/complex.c             value = "fencing";
value             795 lib/pengine/complex.c             value = "nothing";
value             798 lib/pengine/complex.c             value = "quorum";
value             804 lib/pengine/complex.c                               (*rsc)->id, value, orig_value);
value             810 lib/pengine/complex.c     pe_rsc_trace((*rsc), "\tRequired to start: %s%s", value, isdefault?" (default)":"");
value             811 lib/pengine/complex.c     value = g_hash_table_lookup((*rsc)->meta, XML_RSC_ATTR_FAIL_TIMEOUT);
value             812 lib/pengine/complex.c     if (value != NULL) {
value             814 lib/pengine/complex.c         (*rsc)->failure_timeout = (int) (crm_parse_interval_spec(value) / 1000);
value             826 lib/pengine/complex.c         value = g_hash_table_lookup(params, XML_REMOTE_ATTR_RECONNECT_INTERVAL);
value             827 lib/pengine/complex.c         if (value) {
value             830 lib/pengine/complex.c             (*rsc)->remote_reconnect_ms = crm_parse_interval_spec(value);
value             255 lib/pengine/failcounts.c     const char *value = NULL;
value             265 lib/pengine/failcounts.c     while (g_hash_table_iter_next(&iter, (gpointer *) &key, (gpointer *) &value)) {
value             267 lib/pengine/failcounts.c             failcount = pcmk__add_scores(failcount, char2score(value));
value             271 lib/pengine/failcounts.c             if (pcmk__scan_ll(value, &last_ll, 0LL) == pcmk_rc_ok) {
value             328 lib/pengine/native.c     const char *value = NULL;
value             336 lib/pengine/native.c     value = g_hash_table_lookup(params, name);
value             337 lib/pengine/native.c     if (value == NULL) {
value             339 lib/pengine/native.c         value = g_hash_table_lookup(rsc->meta, name);
value             341 lib/pengine/native.c     pcmk__str_update(&value_copy, value);
value              89 lib/pengine/pe_digest.c     char *value = NULL;
value              93 lib/pengine/pe_digest.c     while (g_hash_table_iter_next(&iter, (gpointer *) &key, (gpointer *) &value)) {
value              94 lib/pengine/pe_digest.c         crm_xml_add(params, key, value);
value             276 lib/pengine/pe_digest.c     const char *value = NULL;
value             292 lib/pengine/pe_digest.c     value = crm_element_value(xml_op, XML_LRM_ATTR_OP_RESTART);
value             293 lib/pengine/pe_digest.c     if (value != NULL) {
value             295 lib/pengine/pe_digest.c                                        (void *) value);
value             298 lib/pengine/pe_digest.c     value = crm_element_value(xml_op, XML_ATTR_CRM_VERSION);
value             300 lib/pengine/pe_digest.c                                                            value);
value              74 lib/pengine/pe_health.c add_node_health_value(gpointer key, gpointer value, gpointer user_data)
value              77 lib/pengine/pe_health.c         int score = char2score((const char *) value);
value             116 lib/pengine/pe_health.c     const char *value = NULL;
value             130 lib/pengine/pe_health.c                                   (gpointer *) &value)) {
value             136 lib/pengine/pe_health.c             if (pcmk__str_eq(value, PCMK__VALUE_RED, pcmk__str_casei)) {
value             138 lib/pengine/pe_health.c             } else if (pcmk__str_eq(value, PCMK__VALUE_YELLOW,
value             145 lib/pengine/pe_health.c             score = char2score(value);
value             160 lib/pengine/pe_output.c add_dump_node(gpointer key, gpointer value, gpointer user_data)
value             163 lib/pengine/pe_output.c     pcmk_create_xml_text_node(node, (const char *) key, (const char *) value);
value             167 lib/pengine/pe_output.c append_dump_text(gpointer key, gpointer value, gpointer user_data)
value             171 lib/pengine/pe_output.c                                        *dump_text, (char *)key, (char *)value);
value             220 lib/pengine/pe_output.c         const char *value = NULL;
value             232 lib/pengine/pe_output.c         value = crm_element_value(xml_op, XML_RSC_OP_T_EXEC);
value             233 lib/pengine/pe_output.c         if (value) {
value             234 lib/pengine/pe_output.c             char *pair = pcmk__format_nvpair(XML_RSC_OP_T_EXEC, value, "ms");
value             239 lib/pengine/pe_output.c         value = crm_element_value(xml_op, XML_RSC_OP_T_QUEUE);
value             240 lib/pengine/pe_output.c         if (value) {
value             241 lib/pengine/pe_output.c             char *pair = pcmk__format_nvpair(XML_RSC_OP_T_QUEUE, value, "ms");
value            1735 lib/pengine/pe_output.c     const char *value = va_arg(args, const char *);
value            1742 lib/pengine/pe_output.c         if (value == NULL) {
value            1745 lib/pengine/pe_output.c             pcmk__scan_min_int(value, &v, INT_MIN);
value            1748 lib/pengine/pe_output.c             out->list_item(out, NULL, "%-32s\t: %-10s\t: Connectivity is lost", name, value);
value            1750 lib/pengine/pe_output.c             out->list_item(out, NULL, "%-32s\t: %-10s\t: Connectivity is degraded (Expected=%d)", name, value, expected_score);
value            1752 lib/pengine/pe_output.c             out->list_item(out, NULL, "%-32s\t: %-10s", name, value);
value            1755 lib/pengine/pe_output.c         out->list_item(out, NULL, "%-32s\t: %-10s", name, value);
value            1765 lib/pengine/pe_output.c     const char *value = va_arg(args, const char *);
value            1771 lib/pengine/pe_output.c         char *s = crm_strdup_printf("%s: %s", name, value);
value            1774 lib/pengine/pe_output.c         if (value == NULL) {
value            1777 lib/pengine/pe_output.c             pcmk__scan_min_int(value, &v, INT_MIN);
value            1791 lib/pengine/pe_output.c         out->list_item(out, NULL, "%s: %s", name, value);
value            1908 lib/pengine/pe_output.c     const char *value = va_arg(args, const char *);
value            1914 lib/pengine/pe_output.c                                                    "value", value,
value            1970 lib/pengine/pe_output.c             const char *value = NULL;
value            1974 lib/pengine/pe_output.c             value = pe_node_attribute_raw(node, name);
value            1980 lib/pengine/pe_output.c             out->message(out, "node-attribute", name, value, add_extra,
value            2395 lib/pengine/pe_output.c         const char *value = NULL;
value            2403 lib/pengine/pe_output.c         value = crm_element_value(xml_op, XML_RSC_OP_T_EXEC);
value            2404 lib/pengine/pe_output.c         if (value) {
value            2405 lib/pengine/pe_output.c             char *s = crm_strdup_printf("%sms", value);
value            2409 lib/pengine/pe_output.c         value = crm_element_value(xml_op, XML_RSC_OP_T_QUEUE);
value            2410 lib/pengine/pe_output.c         if (value) {
value            2411 lib/pengine/pe_output.c             char *s = crm_strdup_printf("%sms", value);
value            2825 lib/pengine/pe_output.c     gpointer key, value;
value            2838 lib/pengine/pe_output.c     while (g_hash_table_iter_next(&iter, &key, &value)) {
value            2839 lib/pengine/pe_output.c         pe_ticket_t *ticket = (pe_ticket_t *) value;
value              86 lib/pengine/remote.c     const char *value = NULL;
value              92 lib/pengine/remote.c     value = crm_element_value(xml, XML_ATTR_TYPE);
value              93 lib/pengine/remote.c     if (!pcmk__str_eq(value, "remote", pcmk__str_casei)) {
value              97 lib/pengine/remote.c     value = crm_element_value(xml, XML_AGENT_ATTR_CLASS);
value              98 lib/pengine/remote.c     if (!pcmk__str_eq(value, PCMK_RESOURCE_CLASS_OCF, pcmk__str_casei)) {
value             102 lib/pengine/remote.c     value = crm_element_value(xml, XML_AGENT_ATTR_PROVIDER);
value             103 lib/pengine/remote.c     if (!pcmk__str_eq(value, "pacemaker", pcmk__str_casei)) {
value             179 lib/pengine/rules.c     const char *value = crm_element_value(cron_spec, xml_field);
value             182 lib/pengine/rules.c     if (value == NULL) {
value             187 lib/pengine/rules.c     if (pcmk__parse_ll_range(value, &low, &high) == pcmk_rc_unknown_format) {
value             217 lib/pengine/rules.c         crm_debug("Condition '%s' in %s: passed", value, xml_field);
value             219 lib/pengine/rules.c         crm_debug("Condition '%s' in %s: failed", value, xml_field);
value             280 lib/pengine/rules.c     long long value;
value             282 lib/pengine/rules.c     if ((pcmk__scan_ll(crm_element_value(xml, attr), &value, 0LL) == pcmk_rc_ok)
value             283 lib/pengine/rules.c         && (value != 0LL) && (value >= INT_MIN) && (value <= INT_MAX)) {
value             284 lib/pengine/rules.c         time_fn(t, (int) value);
value             359 lib/pengine/rules.c     const char *value = NULL;
value             380 lib/pengine/rules.c             value = crm_element_value(an_attr, XML_NVPAIR_ATTR_VALUE);
value             381 lib/pengine/rules.c             if (value == NULL) {
value             382 lib/pengine/rules.c                 value = crm_element_value(ref_nvpair, XML_NVPAIR_ATTR_VALUE);
value             385 lib/pengine/rules.c             if (name == NULL || value == NULL) {
value             391 lib/pengine/rules.c             if (pcmk__str_eq(value, "#default", pcmk__str_casei)) {
value             394 lib/pengine/rules.c                               name, value);
value             400 lib/pengine/rules.c                 crm_trace("Setting %s=\"%s\"", name, value);
value             401 lib/pengine/rules.c                 g_hash_table_insert(hash, strdup(name), strdup(value));
value             405 lib/pengine/rules.c                           name, value, old_value);
value             406 lib/pengine/rules.c                 g_hash_table_replace(hash, strdup(name), strdup(value));
value             771 lib/pengine/rules.c     const char *value = NULL;
value             774 lib/pengine/rules.c     value = crm_element_value(rule, XML_RULE_ATTR_BOOLEAN_OP);
value             775 lib/pengine/rules.c     if (pcmk__str_eq(value, "or", pcmk__str_casei)) {
value            1040 lib/pengine/rules.c expand_value_source(const char *value, const char *value_source,
value            1045 lib/pengine/rules.c     if (pcmk__str_empty(value)) {
value            1055 lib/pengine/rules.c         return value;
value            1061 lib/pengine/rules.c     return (const char *) g_hash_table_lookup(table, value);
value            1083 lib/pengine/rules.c     const char *value = NULL;
value            1088 lib/pengine/rules.c     value = crm_element_value(expr, XML_EXPR_ATTR_VALUE);
value            1094 lib/pengine/rules.c                " (\'%s\' \'%s\' \'%s\')", crm_str(attr), crm_str(op), crm_str(value));
value            1110 lib/pengine/rules.c         value = expand_value_source(value, value_source, rule_data->match_data);
value            1122 lib/pengine/rules.c     return accept_attr_expr(h_val, value, type, op);
value            1140 lib/pengine/rules.c     const char *value = NULL;
value            1154 lib/pengine/rules.c     value = crm_element_value(expr, "start");
value            1155 lib/pengine/rules.c     if (value != NULL) {
value            1156 lib/pengine/rules.c         start = crm_time_new(value);
value            1158 lib/pengine/rules.c     value = crm_element_value(expr, "end");
value            1159 lib/pengine/rules.c     if (value != NULL) {
value            1160 lib/pengine/rules.c         end = crm_time_new(value);
value            1263 lib/pengine/rules.c     const char *value = NULL;
value            1269 lib/pengine/rules.c     value = crm_element_value(expr, XML_EXPR_ATTR_VALUE);
value            1284 lib/pengine/rules.c         if (text2role(value) == rule_data->role) {
value            1294 lib/pengine/rules.c         } else if (text2role(value) != rule_data->role) {
value              24 lib/pengine/rules_alerts.c     const char *value = NULL;
value              30 lib/pengine/rules_alerts.c     value = g_hash_table_lookup(config_hash, XML_ALERT_ATTR_TIMEOUT);
value              31 lib/pengine/rules_alerts.c     if (value) {
value              32 lib/pengine/rules_alerts.c         entry->timeout = crm_get_msec(value);
value              39 lib/pengine/rules_alerts.c                          entry->id, (char*)value, PCMK__ALERT_DEFAULT_TIMEOUT_MS);
value              50 lib/pengine/rules_alerts.c     value = g_hash_table_lookup(config_hash, XML_ALERT_ATTR_TSTAMP_FORMAT);
value              51 lib/pengine/rules_alerts.c     if (value) {
value              55 lib/pengine/rules_alerts.c         entry->tstamp_format = strdup(value);
value              85 lib/pengine/rules_alerts.c         const char *value = crm_element_value(child, XML_NVPAIR_ATTR_VALUE);
value              87 lib/pengine/rules_alerts.c         if (value == NULL) {
value              88 lib/pengine/rules_alerts.c             value = "";
value              90 lib/pengine/rules_alerts.c         g_hash_table_insert(entry->envvars, strdup(name), strdup(value));
value              92 lib/pengine/rules_alerts.c                   entry->id, name, value);
value              22 lib/pengine/tags.c     gpointer value;
value              29 lib/pengine/tags.c     value = g_hash_table_lookup(data_set->tags, tag_name);
value              31 lib/pengine/tags.c     if (value == NULL) {
value              35 lib/pengine/tags.c     for (GList *refs = ((pe_tag_t *) value)->refs; refs; refs = refs->next) {
value              53 lib/pengine/tags.c     gpointer value;
value              60 lib/pengine/tags.c     value = g_hash_table_lookup(data_set->tags, tag_name);
value              62 lib/pengine/tags.c     if (value == NULL) {
value              67 lib/pengine/tags.c     for (GList *refs = ((pe_tag_t *) value)->refs; refs; refs = refs->next) {
value             198 lib/pengine/unpack.c     const char *value = NULL;
value             222 lib/pengine/unpack.c     value = pe_pref(data_set->config_hash, XML_ATTR_HAVE_WATCHDOG);
value             223 lib/pengine/unpack.c     if (value && crm_is_true(value)) {
value             234 lib/pengine/unpack.c     value = pe_pref(data_set->config_hash, "stonith-timeout");
value             235 lib/pengine/unpack.c     data_set->stonith_timeout = (int) crm_parse_interval_spec(value);
value             255 lib/pengine/unpack.c     value = pe_pref(data_set->config_hash,
value             257 lib/pengine/unpack.c     if (value) {
value             258 lib/pengine/unpack.c         data_set->priority_fencing_delay = crm_parse_interval_spec(value) / 1000;
value             271 lib/pengine/unpack.c     value = pe_pref(data_set->config_hash, "no-quorum-policy");
value             273 lib/pengine/unpack.c     if (pcmk__str_eq(value, "ignore", pcmk__str_casei)) {
value             276 lib/pengine/unpack.c     } else if (pcmk__str_eq(value, "freeze", pcmk__str_casei)) {
value             279 lib/pengine/unpack.c     } else if (pcmk__str_eq(value, "demote", pcmk__str_casei)) {
value             282 lib/pengine/unpack.c     } else if (pcmk__str_eq(value, "suicide", pcmk__str_casei)) {
value             331 lib/pengine/unpack.c     value = pe_pref(data_set->config_hash, "remove-after-stop");
value             332 lib/pengine/unpack.c     if (value != NULL) {
value             333 lib/pengine/unpack.c         if (crm_is_true(value)) {
value             371 lib/pengine/unpack.c         value = pe_pref(data_set->config_hash,
value             373 lib/pengine/unpack.c         data_set->shutdown_lock = crm_parse_interval_spec(value) / 1000;
value             477 lib/pengine/unpack.c             const char *value = crm_element_value(attr, XML_NVPAIR_ATTR_VALUE);
value             481 lib/pengine/unpack.c                 remote_name = value;
value             483 lib/pengine/unpack.c                 remote_server = value;
value             485 lib/pengine/unpack.c                 remote_port = value;
value             487 lib/pengine/unpack.c                 connect_timeout = value;
value             489 lib/pengine/unpack.c                 remote_allow_migrate=value;
value             491 lib/pengine/unpack.c                 is_managed = value;
value            2541 lib/pengine/unpack.c set_node_score(gpointer key, gpointer value, gpointer user_data)
value            2543 lib/pengine/unpack.c     pe_node_t *node = value;
value              26 lib/pengine/utils.c void print_str_str(gpointer key, gpointer value, gpointer user_data);
value              27 lib/pengine/utils.c gboolean ghash_free_str_str(gpointer key, gpointer value, gpointer user_data);
value             767 lib/pengine/utils.c valid_stop_on_fail(const char *value)
value             769 lib/pengine/utils.c     return !pcmk__strcase_any_of(value, "standby", "demote", "stop", NULL);
value             780 lib/pengine/utils.c     const char *value = g_hash_table_lookup(action->meta, XML_OP_ATTR_ON_FAIL);
value             783 lib/pengine/utils.c         && !valid_stop_on_fail(value)) {
value             787 lib/pengine/utils.c                          "allowed for stop", action->rsc->id, value);
value             790 lib/pengine/utils.c     } else if (pcmk__str_eq(action->task, CRMD_ACTION_DEMOTE, pcmk__str_casei) && !value) {
value             797 lib/pengine/utils.c              (operation != NULL) && (value == NULL);
value             823 lib/pengine/utils.c             value = on_fail;
value             826 lib/pengine/utils.c         value = "ignore";
value             828 lib/pengine/utils.c     } else if (pcmk__str_eq(value, "demote", pcmk__str_casei)) {
value             846 lib/pengine/utils.c     return value;
value             890 lib/pengine/utils.c unpack_start_delay(const char *value, GHashTable *meta)
value             894 lib/pengine/utils.c     if (value != NULL) {
value             895 lib/pengine/utils.c         start_delay = crm_get_msec(value);
value             912 lib/pengine/utils.c unpack_interval_origin(const char *value, xmlNode *xml_obj, guint interval_ms,
value             920 lib/pengine/utils.c     if ((value == NULL) || (interval_ms == 0) || (now == NULL)) {
value             925 lib/pengine/utils.c     origin = crm_time_new(value);
value             929 lib/pengine/utils.c                          (ID(xml_obj)? ID(xml_obj) : "(missing ID)"), value);
value             953 lib/pengine/utils.c unpack_timeout(const char *value)
value             955 lib/pengine/utils.c     int timeout_ms = crm_get_msec(value);
value            1025 lib/pengine/utils.c             const char *value = crm_element_value(attr, XML_NVPAIR_ATTR_VALUE);
value            1028 lib/pengine/utils.c                 int start_delay = unpack_start_delay(value, NULL);
value            1034 lib/pengine/utils.c                 if (unpack_interval_origin(value, xml_obj, interval_ms, now,
value            1041 lib/pengine/utils.c                 int timeout_ms = unpack_timeout(value);
value            1068 lib/pengine/utils.c     const char *value = NULL;
value            1107 lib/pengine/utils.c             value = crm_element_value(min_interval_mon, XML_ATTR_TIMEOUT);
value            1108 lib/pengine/utils.c             if (value) {
value            1110 lib/pengine/utils.c                           "monitor's timeout '%s'", action->uuid, value);
value            1112 lib/pengine/utils.c                                      strdup(value));
value            1179 lib/pengine/utils.c         value = g_hash_table_lookup(params, "pcmk_monitor_timeout");
value            1181 lib/pengine/utils.c         if (value) {
value            1183 lib/pengine/utils.c                       "overriding default", action->uuid, value);
value            1185 lib/pengine/utils.c                                  strdup(value));
value            1190 lib/pengine/utils.c     value = g_hash_table_lookup(action->meta, XML_ATTR_TIMEOUT);
value            1191 lib/pengine/utils.c     timeout_ms = unpack_timeout(value);
value            1197 lib/pengine/utils.c         value = "nothing (not start or promote)";
value            1201 lib/pengine/utils.c         value = "fencing";
value            1205 lib/pengine/utils.c         value = "quorum";
value            1209 lib/pengine/utils.c         value = "nothing";
value            1211 lib/pengine/utils.c     pe_rsc_trace(action->rsc, "%s requires %s", action->uuid, value);
value            1213 lib/pengine/utils.c     value = unpack_operation_on_fail(action);
value            1215 lib/pengine/utils.c     if (value == NULL) {
value            1217 lib/pengine/utils.c     } else if (pcmk__str_eq(value, "block", pcmk__str_casei)) {
value            1220 lib/pengine/utils.c         value = "block"; // The above could destroy the original string
value            1222 lib/pengine/utils.c     } else if (pcmk__str_eq(value, "fence", pcmk__str_casei)) {
value            1224 lib/pengine/utils.c         value = "node fencing";
value            1232 lib/pengine/utils.c             value = "stop resource";
value            1235 lib/pengine/utils.c     } else if (pcmk__str_eq(value, "standby", pcmk__str_casei)) {
value            1237 lib/pengine/utils.c         value = "node standby";
value            1239 lib/pengine/utils.c     } else if (pcmk__strcase_any_of(value, "ignore", "nothing", NULL)) {
value            1241 lib/pengine/utils.c         value = "ignore";
value            1243 lib/pengine/utils.c     } else if (pcmk__str_eq(value, "migrate", pcmk__str_casei)) {
value            1245 lib/pengine/utils.c         value = "force migration";
value            1247 lib/pengine/utils.c     } else if (pcmk__str_eq(value, "stop", pcmk__str_casei)) {
value            1250 lib/pengine/utils.c         value = "stop resource";
value            1252 lib/pengine/utils.c     } else if (pcmk__str_eq(value, "restart", pcmk__str_casei)) {
value            1254 lib/pengine/utils.c         value = "restart (and possibly migrate)";
value            1256 lib/pengine/utils.c     } else if (pcmk__str_eq(value, "restart-container", pcmk__str_casei)) {
value            1259 lib/pengine/utils.c             value = "restart container (and possibly migrate)";
value            1262 lib/pengine/utils.c             value = NULL;
value            1265 lib/pengine/utils.c     } else if (pcmk__str_eq(value, "demote", pcmk__str_casei)) {
value            1267 lib/pengine/utils.c         value = "demote instance";
value            1270 lib/pengine/utils.c         pe_err("Resource %s: Unknown failure type (%s)", action->rsc->id, value);
value            1271 lib/pengine/utils.c         value = NULL;
value            1275 lib/pengine/utils.c     if (value == NULL && container) {
value            1277 lib/pengine/utils.c         value = "restart container (and possibly migrate) (default)";
value            1287 lib/pengine/utils.c     } else if (((value == NULL) || !pcmk_is_set(action->rsc->flags, pe_rsc_managed))
value            1296 lib/pengine/utils.c             value = "stop unmanaged remote node (enforcing default)";
value            1300 lib/pengine/utils.c                 value = "fence remote node (default)";
value            1302 lib/pengine/utils.c                 value = "recover remote node connection (default)";
value            1311 lib/pengine/utils.c     } else if (value == NULL && pcmk__str_eq(action->task, CRMD_ACTION_STOP, pcmk__str_casei)) {
value            1314 lib/pengine/utils.c             value = "resource fence (default)";
value            1318 lib/pengine/utils.c             value = "resource block (default)";
value            1321 lib/pengine/utils.c     } else if (value == NULL) {
value            1323 lib/pengine/utils.c         value = "restart (and possibly migrate) (default)";
value            1327 lib/pengine/utils.c                  action->uuid, value);
value            1329 lib/pengine/utils.c     value = NULL;
value            1331 lib/pengine/utils.c         value = g_hash_table_lookup(action->meta, "role_after_failure");
value            1332 lib/pengine/utils.c         if (value) {
value            1337 lib/pengine/utils.c     if (value != NULL && action->fail_role == RSC_ROLE_UNKNOWN) {
value            1338 lib/pengine/utils.c         action->fail_role = text2role(value);
value            1351 lib/pengine/utils.c     value = g_hash_table_lookup(action->meta, XML_OP_ATTR_START_DELAY);
value            1352 lib/pengine/utils.c     if (value) {
value            1353 lib/pengine/utils.c         unpack_start_delay(value, action->meta);
value            1357 lib/pengine/utils.c         value = g_hash_table_lookup(action->meta, XML_OP_ATTR_ORIGIN);
value            1358 lib/pengine/utils.c         if (unpack_interval_origin(value, xml_obj, interval_ms, data_set->now,
value            1449 lib/pengine/utils.c print_str_str(gpointer key, gpointer value, gpointer user_data)
value            1453 lib/pengine/utils.c               user_data == NULL ? "" : ": ", (char *)key, (char *)value);
value            1486 lib/pengine/utils.c     const char *value = NULL;
value            1495 lib/pengine/utils.c         value = g_hash_table_lookup(action->meta, XML_LRM_ATTR_INTERVAL_MS);
value            1496 lib/pengine/utils.c         if (value == NULL) {
value            1498 lib/pengine/utils.c         } else if (pcmk__str_eq(value, "0", pcmk__str_casei)) {
value            1871 lib/pengine/utils.c     const char *value = g_hash_table_lookup(rsc->meta, XML_RSC_ATTR_TARGET_ROLE);
value            1875 lib/pengine/utils.c     if (pcmk__str_eq(value, "started", pcmk__str_null_matches | pcmk__str_casei)
value            1876 lib/pengine/utils.c         || pcmk__str_eq("default", value, pcmk__str_casei)) {
value            1880 lib/pengine/utils.c     local_role = text2role(value);
value            1883 lib/pengine/utils.c                          "because '%s' is not valid", rsc->id, value);
value            1896 lib/pengine/utils.c                              "clones", rsc->id, value);
value            2583 lib/pengine/utils.c         const char *value = NULL;
value            2594 lib/pengine/utils.c         value = crm_element_value(xml_op, XML_LRM_ATTR_TARGET);
value            2595 lib/pengine/utils.c         if (value == NULL || !pcmk__str_eq(value, name, pcmk__str_casei|pcmk__str_null_matches)) {
value            2600 lib/pengine/utils.c         value = crm_element_value(xml_op, XML_LRM_ATTR_TASK_KEY);
value            2601 lib/pengine/utils.c         if (!parse_op_key(value ? value : ID(xml_op), &op_id, NULL, NULL)) {
value             567 lib/services/dbus.c                                        const char *value, // Property value
value             595 lib/services/dbus.c     DBusBasicValue value;
value             622 lib/services/dbus.c     dbus_message_iter_get_basic(&variant_iter, &value);
value             640 lib/services/dbus.c               data->object, data->name, (value.str? value.str : ""));
value             643 lib/services/dbus.c         data->callback(data->name, (value.str? value.str : ""), data->userdata);
value             646 lib/services/dbus.c         output = strdup(value.str? value.str : "");
value             658 lib/services/dbus.c     char *value = NULL;
value             664 lib/services/dbus.c     value = handle_query_result(reply, user_data);
value             665 lib/services/dbus.c     free(value);
value              38 lib/services/pcmk-dbus.h     void (*callback)(const char *name, const char *value, void *userdata), void *userdata,
value             364 lib/services/services_linux.c set_ocf_env(const char *key, const char *value, gpointer user_data)
value             366 lib/services/services_linux.c     if (setenv(key, value, 1) != 0) {
value             367 lib/services/services_linux.c         crm_perror(LOG_ERR, "setenv failed for key:%s and value:%s", key, value);
value             372 lib/services/services_linux.c set_ocf_env_with_prefix(gpointer key, gpointer value, gpointer user_data)
value             377 lib/services/services_linux.c     set_ocf_env(buffer, value, user_data);
value             381 lib/services/services_linux.c set_alert_env(gpointer key, gpointer value, gpointer user_data)
value             385 lib/services/services_linux.c     if (value != NULL) {
value             386 lib/services/services_linux.c         rc = setenv(key, value, 1);
value             393 lib/services/services_linux.c                   (char*)key, (value? (char*)value : ""));
value             395 lib/services/services_linux.c         crm_trace("setenv %s=%s", (char*)key, (value? (char*)value : ""));
value             444 lib/services/services_linux.c pipe_in_single_parameter(gpointer key, gpointer value, gpointer user_data)
value             447 lib/services/services_linux.c     char *buffer = crm_strdup_printf("%s=%s\n", (char *)key, (char *) value);
value              90 lib/services/services_lsb.c lsb_meta_helper_get_value(const char *line, char **value, const char *prefix)
value              92 lib/services/services_lsb.c     if (!*value && pcmk__starts_with(line, prefix)) {
value              93 lib/services/services_lsb.c         *value = (char *)xmlEncodeEntitiesReentrant(NULL, BAD_CAST line+strlen(prefix));
value              64 lib/services/services_nagios.c         char *value = NULL;
value              70 lib/services/services_nagios.c                                       (gpointer *) & value)) {
value              82 lib/services/services_nagios.c             op->opaque->args[index++] = strdup(value);
value             161 lib/services/systemd.c                      void (*callback)(const char *name, const char *value, void *userdata),
value             574 lib/services/systemd.c         DBusBasicValue value;
value             590 lib/services/systemd.c         dbus_message_iter_get_basic(&elem, &value);
value             591 lib/services/systemd.c         if (value.str == NULL) {
value             595 lib/services/systemd.c         crm_trace("DBus ListUnitFiles listed: %s", value.str);
value             597 lib/services/systemd.c         match = systemd_unit_extension(value.str);
value             601 lib/services/systemd.c                       value.str);
value             606 lib/services/systemd.c         basename = strrchr(value.str, '/');
value             610 lib/services/systemd.c             basename = value.str;
value             249 lib/services/upstart.c         DBusBasicValue value;
value             258 lib/services/upstart.c         dbus_message_iter_get_basic(&unit, &value);
value             260 lib/services/upstart.c         if(value.str) {
value             262 lib/services/upstart.c             path = value.str;
value             263 lib/services/upstart.c             job = value.str;
value             331 lib/services/upstart.c         DBusBasicValue value;
value             333 lib/services/upstart.c         dbus_message_iter_get_basic(&unit, &value);
value             335 lib/services/upstart.c         if(value.str) {
value             336 lib/services/upstart.c             instance = strdup(value.str);
value             129 maint/gnulib/lib/argmatch.c argmatch_invalid (const char *context, const char *value, ptrdiff_t problem)
value             135 maint/gnulib/lib/argmatch.c   error (0, 0, format, quotearg_n_style (0, ARGMATCH_QUOTING_STYLE, value),
value             195 maint/gnulib/lib/argmatch.c argmatch_to_argument (const void *value,
value             202 maint/gnulib/lib/argmatch.c     if (!memcmp (value, (char const *) vallist + valsize * i, valsize))
value              66 maint/gnulib/lib/argmatch.h void argmatch_invalid (char const *context, char const *value,
value             104 maint/gnulib/lib/argmatch.h char const *argmatch_to_argument (void const *value,
value              39 maint/gnulib/lib/cloexec.c set_cloexec_flag (int desc, bool value)
value              47 maint/gnulib/lib/cloexec.c       int newflags = (value ? flags | FD_CLOEXEC : flags & ~FD_CLOEXEC);
value              30 maint/gnulib/lib/cloexec.h int set_cloexec_flag (int desc, bool value);
value             210 maint/gnulib/lib/exclude.c   size_t value = 0;
value             222 maint/gnulib/lib/exclude.c       value = value * 31 + wc;
value             225 maint/gnulib/lib/exclude.c   return value % n_buckets;
value              36 maint/gnulib/lib/freopen-safer.c   int value = open ("/dev/null", O_RDONLY);
value              37 maint/gnulib/lib/freopen-safer.c   if (value != fd)
value              39 maint/gnulib/lib/freopen-safer.c       if (0 <= value)
value              41 maint/gnulib/lib/freopen-safer.c           close (value);
value            1095 maint/gnulib/lib/gen-uni-tables.c       int value;
value            1099 maint/gnulib/lib/gen-uni-tables.c         value = UC_CATEGORY_MASK_Cs;
value            1101 maint/gnulib/lib/gen-uni-tables.c         value = general_category_byname (unicode_attributes[ch].category);
value            1106 maint/gnulib/lib/gen-uni-tables.c       assert (value != 0 && (value & (value - 1)) == 0);
value            1108 maint/gnulib/lib/gen-uni-tables.c       for (log2_value = 0; value > 1; value >>= 1, log2_value++);
value            1190 maint/gnulib/lib/gen-uni-tables.c       uint32_t value = ((unsigned char *) (t.result + level3_offset))[i];
value            1191 maint/gnulib/lib/gen-uni-tables.c       value = level3_packed[j] | (level3_packed[j+1] << 16) | (value << k);
value            1192 maint/gnulib/lib/gen-uni-tables.c       level3_packed[j] = value & 0xffff;
value            1193 maint/gnulib/lib/gen-uni-tables.c       level3_packed[j+1] = value >> 16;
value            1267 maint/gnulib/lib/gen-uni-tables.c         int value = atoi (unicode_attributes[ch].combining);
value            1268 maint/gnulib/lib/gen-uni-tables.c         assert (value >= 0 && value <= 255);
value            1269 maint/gnulib/lib/gen-uni-tables.c         combclass_table_add (&t, ch, value);
value            1640 maint/gnulib/lib/gen-uni-tables.c       int value = get_bidi_category (ch);
value            1642 maint/gnulib/lib/gen-uni-tables.c       assert (value <= 0x1f);
value            1644 maint/gnulib/lib/gen-uni-tables.c       bidi_category_table_add (&t, ch, value);
value            1722 maint/gnulib/lib/gen-uni-tables.c       uint32_t value = ((unsigned char *) (t.result + level3_offset))[i];
value            1723 maint/gnulib/lib/gen-uni-tables.c       value = level3_packed[j] | (level3_packed[j+1] << 16) | (value << k);
value            1724 maint/gnulib/lib/gen-uni-tables.c       level3_packed[j] = value & 0xffff;
value            1725 maint/gnulib/lib/gen-uni-tables.c       level3_packed[j+1] = value >> 16;
value            1802 maint/gnulib/lib/gen-uni-tables.c       int value = get_decdigit_value (ch);
value            1804 maint/gnulib/lib/gen-uni-tables.c       assert (value >= -1 && value < 10);
value            1806 maint/gnulib/lib/gen-uni-tables.c       if (value >= 0)
value            1810 maint/gnulib/lib/gen-uni-tables.c           fprintf (stream, "    { 0x%04X, %d }", ch, value);
value            1857 maint/gnulib/lib/gen-uni-tables.c       int value = 1 + get_decdigit_value (ch);
value            1859 maint/gnulib/lib/gen-uni-tables.c       assert (value >= 0 && value <= 10);
value            1861 maint/gnulib/lib/gen-uni-tables.c       decdigit_table_add (&t, ch, value);
value            1999 maint/gnulib/lib/gen-uni-tables.c       int value = get_digit_value (ch);
value            2001 maint/gnulib/lib/gen-uni-tables.c       assert (value >= -1 && value < 10);
value            2003 maint/gnulib/lib/gen-uni-tables.c       if (value >= 0)
value            2007 maint/gnulib/lib/gen-uni-tables.c           fprintf (stream, "    { 0x%04X, %d }", ch, value);
value            2054 maint/gnulib/lib/gen-uni-tables.c       int value = 1 + get_digit_value (ch);
value            2056 maint/gnulib/lib/gen-uni-tables.c       assert (value >= 0 && value <= 10);
value            2058 maint/gnulib/lib/gen-uni-tables.c       decdigit_table_add (&t, ch, value);
value            2163 maint/gnulib/lib/gen-uni-tables.c   uc_fraction_t value;
value            2170 maint/gnulib/lib/gen-uni-tables.c       value.numerator = atoi (str);
value            2172 maint/gnulib/lib/gen-uni-tables.c         value.denominator = atoi (strchr (str, '/') + 1);
value            2174 maint/gnulib/lib/gen-uni-tables.c         value.denominator = 1;
value            2178 maint/gnulib/lib/gen-uni-tables.c       value.numerator = 0;
value            2179 maint/gnulib/lib/gen-uni-tables.c       value.denominator = 0;
value            2181 maint/gnulib/lib/gen-uni-tables.c   return value;
value            2213 maint/gnulib/lib/gen-uni-tables.c       uc_fraction_t value = get_numeric_value (ch);
value            2215 maint/gnulib/lib/gen-uni-tables.c       if (value.numerator != 0 || value.denominator != 0)
value            2220 maint/gnulib/lib/gen-uni-tables.c                    ch, value.numerator, value.denominator);
value            2276 maint/gnulib/lib/gen-uni-tables.c       uc_fraction_t value = get_numeric_value (ch);
value            2279 maint/gnulib/lib/gen-uni-tables.c         if (value.numerator == fractions[i].numerator
value            2280 maint/gnulib/lib/gen-uni-tables.c             && value.denominator == fractions[i].denominator)
value            2286 maint/gnulib/lib/gen-uni-tables.c             if (value.denominator < fractions[i].denominator
value            2287 maint/gnulib/lib/gen-uni-tables.c                 || (value.denominator == fractions[i].denominator
value            2288 maint/gnulib/lib/gen-uni-tables.c                     && value.numerator < fractions[i].numerator))
value            2292 maint/gnulib/lib/gen-uni-tables.c           fractions[i] = value;
value            2316 maint/gnulib/lib/gen-uni-tables.c       uc_fraction_t value = get_numeric_value (ch);
value            2319 maint/gnulib/lib/gen-uni-tables.c         if (value.numerator == fractions[i].numerator
value            2320 maint/gnulib/lib/gen-uni-tables.c             && value.denominator == fractions[i].denominator)
value            2402 maint/gnulib/lib/gen-uni-tables.c       uint32_t value = ((unsigned char *) (t.result + level3_offset))[i];
value            2403 maint/gnulib/lib/gen-uni-tables.c       value = level3_packed[j] | (level3_packed[j+1] << 16) | (value << k);
value            2404 maint/gnulib/lib/gen-uni-tables.c       level3_packed[j] = value & 0xffff;
value            2405 maint/gnulib/lib/gen-uni-tables.c       level3_packed[j+1] = value >> 16;
value            2566 maint/gnulib/lib/gen-uni-tables.c       int value = get_mirror_value (ch);
value            2568 maint/gnulib/lib/gen-uni-tables.c       mirror_table_add (&t, ch, value);
value            2789 maint/gnulib/lib/gen-uni-tables.c #define PROP(name,value) \
value            2790 maint/gnulib/lib/gen-uni-tables.c       if (strcmp (propname, name) == 0) propvalue = value; else
value            3996 maint/gnulib/lib/gen-uni-tables.c #define TRY(value,name) else if (strcmp (joining_group_name, name) == 0) joining_group = value;
value            4110 maint/gnulib/lib/gen-uni-tables.c #define TRY(value) if (joining_type == value) return #value;
value            4149 maint/gnulib/lib/gen-uni-tables.c       int value = unicode_joining_type[ch];
value            4151 maint/gnulib/lib/gen-uni-tables.c       if (value != (uint8_t)~(uint8_t)0)
value            4155 maint/gnulib/lib/gen-uni-tables.c           fprintf (stream, "    { 0x%04X, %s }", ch, joining_type_as_c_identifier (value));
value            4210 maint/gnulib/lib/gen-uni-tables.c       uint8_t value = unicode_joining_type[ch];
value            4212 maint/gnulib/lib/gen-uni-tables.c       assert (value == (uint8_t)~(uint8_t)0 || value <= 0x0f);
value            4214 maint/gnulib/lib/gen-uni-tables.c       joining_type_table_add (&t, ch, value);
value            4290 maint/gnulib/lib/gen-uni-tables.c       uint32_t value = ((unsigned char *) (t.result + level3_offset))[i] & 0x0f;
value            4291 maint/gnulib/lib/gen-uni-tables.c       level3_packed[j] |= (value << k);
value            4321 maint/gnulib/lib/gen-uni-tables.c #define TRY(value) if (joining_group == value) return #value;
value            4443 maint/gnulib/lib/gen-uni-tables.c       int value = unicode_joining_group[ch];
value            4445 maint/gnulib/lib/gen-uni-tables.c       if (value != UC_JOINING_GROUP_NONE)
value            4449 maint/gnulib/lib/gen-uni-tables.c           fprintf (stream, "    { 0x%04X, %s }", ch, joining_group_as_c_identifier (value));
value            4504 maint/gnulib/lib/gen-uni-tables.c       uint8_t value = unicode_joining_group[ch];
value            4506 maint/gnulib/lib/gen-uni-tables.c       assert (value <= 0x7f);
value            4508 maint/gnulib/lib/gen-uni-tables.c       joining_group_table_add (&t, ch, value);
value            4586 maint/gnulib/lib/gen-uni-tables.c       uint32_t value = ((unsigned char *) (t.result + level3_offset))[i];
value            4587 maint/gnulib/lib/gen-uni-tables.c       value = level3_packed[j] | (level3_packed[j+1] << 16) | (value << k);
value            4588 maint/gnulib/lib/gen-uni-tables.c       level3_packed[j] = value & 0xffff;
value            4589 maint/gnulib/lib/gen-uni-tables.c       level3_packed[j+1] = value >> 16;
value            6431 maint/gnulib/lib/gen-uni-tables.c       char value = symbolic_width (ch);
value            6432 maint/gnulib/lib/gen-uni-tables.c       if (value != 0) /* skip Cc control characters and unassigned characters */
value            6434 maint/gnulib/lib/gen-uni-tables.c           if (value == interval_value)
value            6449 maint/gnulib/lib/gen-uni-tables.c               interval_value = value;
value            7614 maint/gnulib/lib/gen-uni-tables.c       int value;
value            7637 maint/gnulib/lib/gen-uni-tables.c #define TRY(bit) else if (strcmp (field1, #bit + 4) == 0) value = bit;
value            7678 maint/gnulib/lib/gen-uni-tables.c       else if (strcmp (field1, "LF") == 0) value = LBP_BK;
value            7679 maint/gnulib/lib/gen-uni-tables.c       else if (strcmp (field1, "CR") == 0) value = LBP_BK;
value            7680 maint/gnulib/lib/gen-uni-tables.c       else if (strcmp (field1, "NL") == 0) value = LBP_BK;
value            7681 maint/gnulib/lib/gen-uni-tables.c       else if (strcmp (field1, "SG") == 0) value = LBP_XX;
value            7682 maint/gnulib/lib/gen-uni-tables.c       else if (strcmp (field1, "CJ") == 0) value = LBP_NS;
value            7695 maint/gnulib/lib/gen-uni-tables.c             unicode_org_lbp[i] = value;
value            7700 maint/gnulib/lib/gen-uni-tables.c           unicode_org_lbp[i] = value;
value            7897 maint/gnulib/lib/gen-uni-tables.c       unsigned char value = ((unsigned char *) (t.result + level3_offset))[i];
value            7899 maint/gnulib/lib/gen-uni-tables.c       switch (value)
value            8266 maint/gnulib/lib/gen-uni-tables.c #define PROP(name,value) \
value            8267 maint/gnulib/lib/gen-uni-tables.c       if (strcmp (propname, name) == 0) propvalue = value; else
value            8320 maint/gnulib/lib/gen-uni-tables.c #define PROP(name,value) \
value            8321 maint/gnulib/lib/gen-uni-tables.c           if (propvalue == value) fprintf (stream, " " name); else
value            8476 maint/gnulib/lib/gen-uni-tables.c       unsigned char value = ((unsigned char *) (t.result + level3_offset))[i];
value            8478 maint/gnulib/lib/gen-uni-tables.c       switch (value)
value            8766 maint/gnulib/lib/gen-uni-tables.c       unsigned char value = ((unsigned char *) (t.result + level3_offset))[i];
value            8768 maint/gnulib/lib/gen-uni-tables.c       switch (value)
value            8855 maint/gnulib/lib/gen-uni-tables.c #define PROP(name,value) \
value            8856 maint/gnulib/lib/gen-uni-tables.c       if (strcmp (propname, name) == 0) propvalue = value; else
value            9126 maint/gnulib/lib/gen-uni-tables.c       uint16_t value = ((uint16_t *) (t.result + level3_offset))[i];
value            9129 maint/gnulib/lib/gen-uni-tables.c       fprintf (stream2, " %5d", value == (uint16_t)(-1) ? -1 : value);
value            9419 maint/gnulib/lib/gen-uni-tables.c       unsigned int value = func (ch);
value            9421 maint/gnulib/lib/gen-uni-tables.c       if (value != ch)
value            9425 maint/gnulib/lib/gen-uni-tables.c           fprintf (stream, "    { 0x%04X, 0x%04X }", ch, value);
value            9487 maint/gnulib/lib/gen-uni-tables.c       int value = (int) func (ch) - (int) ch;
value            9489 maint/gnulib/lib/gen-uni-tables.c       mapping_table_add (&t, ch, value);
value             445 maint/gnulib/lib/getloadavg.c     loadavg[elem++] = (double) kn->value.ul / FSCALE;
value             452 maint/gnulib/lib/getloadavg.c           loadavg[elem++] = (double) kn->value.ul / FSCALE;
value             458 maint/gnulib/lib/getloadavg.c                 loadavg[elem++] = (double) kn->value.ul / FSCALE;
value              85 maint/gnulib/lib/getumask.c                     unsigned int value = 0;
value              88 maint/gnulib/lib/getumask.c                       value = 8 * value + (*p - '0');
value              90 maint/gnulib/lib/getumask.c                       mask = value;
value              50 maint/gnulib/lib/gl_anyavltree_list1.h   const void *value;
value              46 maint/gnulib/lib/gl_anyavltree_list2.h   node->value = contents[half1];
value             551 maint/gnulib/lib/gl_anyavltree_list2.h   new_node->value = elt;
value             555 maint/gnulib/lib/gl_anyavltree_list2.h      ? list->base.hashcode_fn (new_node->value)
value             556 maint/gnulib/lib/gl_anyavltree_list2.h      : (size_t)(uintptr_t) new_node->value);
value             619 maint/gnulib/lib/gl_anyavltree_list2.h   new_node->value = elt;
value             623 maint/gnulib/lib/gl_anyavltree_list2.h      ? list->base.hashcode_fn (new_node->value)
value             624 maint/gnulib/lib/gl_anyavltree_list2.h      : (size_t)(uintptr_t) new_node->value);
value             689 maint/gnulib/lib/gl_anyavltree_list2.h   new_node->value = elt;
value             693 maint/gnulib/lib/gl_anyavltree_list2.h      ? list->base.hashcode_fn (new_node->value)
value             694 maint/gnulib/lib/gl_anyavltree_list2.h      : (size_t)(uintptr_t) new_node->value);
value             758 maint/gnulib/lib/gl_anyavltree_list2.h   new_node->value = elt;
value             762 maint/gnulib/lib/gl_anyavltree_list2.h      ? list->base.hashcode_fn (new_node->value)
value             763 maint/gnulib/lib/gl_anyavltree_list2.h      : (size_t)(uintptr_t) new_node->value);
value              30 maint/gnulib/lib/gl_anylinked_list1.h   const void *value;
value             121 maint/gnulib/lib/gl_anylinked_list2.h       node->value = *contents;
value             125 maint/gnulib/lib/gl_anylinked_list2.h          ? list->base.hashcode_fn (node->value)
value             126 maint/gnulib/lib/gl_anylinked_list2.h          : (size_t)(uintptr_t) node->value);
value             176 maint/gnulib/lib/gl_anylinked_list2.h   return node->value;
value             185 maint/gnulib/lib/gl_anylinked_list2.h   if (elt != node->value)
value             195 maint/gnulib/lib/gl_anylinked_list2.h           node->value = elt;
value             212 maint/gnulib/lib/gl_anylinked_list2.h         node->value = elt;
value             215 maint/gnulib/lib/gl_anylinked_list2.h   node->value = elt;
value             273 maint/gnulib/lib/gl_anylinked_list2.h   return node->value;
value             300 maint/gnulib/lib/gl_anylinked_list2.h   if (elt != node->value)
value             310 maint/gnulib/lib/gl_anylinked_list2.h           node->value = elt;
value             327 maint/gnulib/lib/gl_anylinked_list2.h         node->value = elt;
value             330 maint/gnulib/lib/gl_anylinked_list2.h   node->value = elt;
value             364 maint/gnulib/lib/gl_anylinked_list2.h                   ? equals (elt, node->value)
value             365 maint/gnulib/lib/gl_anylinked_list2.h                   : elt == node->value))
value             405 maint/gnulib/lib/gl_anylinked_list2.h                   ? equals (elt, node->value)
value             406 maint/gnulib/lib/gl_anylinked_list2.h                   : elt == node->value))
value             430 maint/gnulib/lib/gl_anylinked_list2.h                       ? equals (elt, node->value)
value             431 maint/gnulib/lib/gl_anylinked_list2.h                       : elt == node->value))
value             474 maint/gnulib/lib/gl_anylinked_list2.h           if (equals (elt, node->value))
value             480 maint/gnulib/lib/gl_anylinked_list2.h           if (elt == node->value)
value             519 maint/gnulib/lib/gl_anylinked_list2.h                   ? equals (elt, node->value)
value             520 maint/gnulib/lib/gl_anylinked_list2.h                   : elt == node->value))
value             534 maint/gnulib/lib/gl_anylinked_list2.h                   ? equals (elt, node->value)
value             535 maint/gnulib/lib/gl_anylinked_list2.h                   : elt == node->value))
value             561 maint/gnulib/lib/gl_anylinked_list2.h                       ? equals (elt, node->value)
value             562 maint/gnulib/lib/gl_anylinked_list2.h                       : elt == node->value))
value             599 maint/gnulib/lib/gl_anylinked_list2.h           if (equals (elt, node->value))
value             607 maint/gnulib/lib/gl_anylinked_list2.h           if (elt == node->value)
value             624 maint/gnulib/lib/gl_anylinked_list2.h   ASYNCSAFE(const void *) node->value = elt;
value             628 maint/gnulib/lib/gl_anylinked_list2.h      ? list->base.hashcode_fn (node->value)
value             629 maint/gnulib/lib/gl_anylinked_list2.h      : (size_t)(uintptr_t) node->value);
value             662 maint/gnulib/lib/gl_anylinked_list2.h   ASYNCSAFE(const void *) node->value = elt;
value             666 maint/gnulib/lib/gl_anylinked_list2.h      ? list->base.hashcode_fn (node->value)
value             667 maint/gnulib/lib/gl_anylinked_list2.h      : (size_t)(uintptr_t) node->value);
value             700 maint/gnulib/lib/gl_anylinked_list2.h   ASYNCSAFE(const void *) new_node->value = elt;
value             704 maint/gnulib/lib/gl_anylinked_list2.h      ? list->base.hashcode_fn (new_node->value)
value             705 maint/gnulib/lib/gl_anylinked_list2.h      : (size_t)(uintptr_t) new_node->value);
value             738 maint/gnulib/lib/gl_anylinked_list2.h   ASYNCSAFE(const void *) new_node->value = elt;
value             742 maint/gnulib/lib/gl_anylinked_list2.h      ? list->base.hashcode_fn (new_node->value)
value             743 maint/gnulib/lib/gl_anylinked_list2.h      : (size_t)(uintptr_t) new_node->value);
value             781 maint/gnulib/lib/gl_anylinked_list2.h   ASYNCSAFE(const void *) new_node->value = elt;
value             785 maint/gnulib/lib/gl_anylinked_list2.h      ? list->base.hashcode_fn (new_node->value)
value             786 maint/gnulib/lib/gl_anylinked_list2.h      : (size_t)(uintptr_t) new_node->value);
value             851 maint/gnulib/lib/gl_anylinked_list2.h     list->base.dispose_fn (node->value);
value             899 maint/gnulib/lib/gl_anylinked_list2.h     list->base.dispose_fn (removed_node->value);
value             925 maint/gnulib/lib/gl_anylinked_list2.h         dispose (node->value);
value            1033 maint/gnulib/lib/gl_anylinked_list2.h       *eltp = node->value;
value            1058 maint/gnulib/lib/gl_anylinked_list2.h       int cmp = compar (node->value, elt);
value            1103 maint/gnulib/lib/gl_anylinked_list2.h           int cmp = compar (node->value, elt);
value            1127 maint/gnulib/lib/gl_anylinked_list2.h       int cmp = compar (node->value, elt);
value            1173 maint/gnulib/lib/gl_anylinked_list2.h           int cmp = compar (node->value, elt);
value            1194 maint/gnulib/lib/gl_anylinked_list2.h     if (compar (node->value, elt) >= 0)
value            1207 maint/gnulib/lib/gl_anylinked_list2.h       int cmp = compar (node->value, elt);
value              55 maint/gnulib/lib/gl_anyrbtree_list1.h   const void *value;
value              52 maint/gnulib/lib/gl_anyrbtree_list2.h   node->value = contents[half1];
value             793 maint/gnulib/lib/gl_anyrbtree_list2.h   new_node->value = elt;
value             797 maint/gnulib/lib/gl_anyrbtree_list2.h      ? list->base.hashcode_fn (new_node->value)
value             798 maint/gnulib/lib/gl_anyrbtree_list2.h      : (size_t)(uintptr_t) new_node->value);
value             859 maint/gnulib/lib/gl_anyrbtree_list2.h   new_node->value = elt;
value             863 maint/gnulib/lib/gl_anyrbtree_list2.h      ? list->base.hashcode_fn (new_node->value)
value             864 maint/gnulib/lib/gl_anyrbtree_list2.h      : (size_t)(uintptr_t) new_node->value);
value             925 maint/gnulib/lib/gl_anyrbtree_list2.h   new_node->value = elt;
value             929 maint/gnulib/lib/gl_anyrbtree_list2.h      ? list->base.hashcode_fn (new_node->value)
value             930 maint/gnulib/lib/gl_anyrbtree_list2.h      : (size_t)(uintptr_t) new_node->value);
value             984 maint/gnulib/lib/gl_anyrbtree_list2.h   new_node->value = elt;
value             988 maint/gnulib/lib/gl_anyrbtree_list2.h      ? list->base.hashcode_fn (new_node->value)
value             989 maint/gnulib/lib/gl_anyrbtree_list2.h      : (size_t)(uintptr_t) new_node->value);
value              66 maint/gnulib/lib/gl_anytree_list2.h   return node->value;
value              74 maint/gnulib/lib/gl_anytree_list2.h   if (elt != node->value)
value              84 maint/gnulib/lib/gl_anytree_list2.h           node->value = elt;
value              97 maint/gnulib/lib/gl_anytree_list2.h         node->value = elt;
value             100 maint/gnulib/lib/gl_anytree_list2.h   node->value = elt;
value             204 maint/gnulib/lib/gl_anytree_list2.h   return node->value;
value             217 maint/gnulib/lib/gl_anytree_list2.h   if (elt != node->value)
value             227 maint/gnulib/lib/gl_anytree_list2.h           node->value = elt;
value             240 maint/gnulib/lib/gl_anytree_list2.h         node->value = elt;
value             243 maint/gnulib/lib/gl_anytree_list2.h   node->value = elt;
value             292 maint/gnulib/lib/gl_anytree_list2.h             if (equals != NULL ? equals (elt, node->value) : elt == node->value)
value             341 maint/gnulib/lib/gl_anytree_list2.h                   if (equals != NULL ? equals (elt, node->value) : elt == node->value)
value             403 maint/gnulib/lib/gl_anytree_list2.h             if (equals != NULL ? equals (elt, node->value) : elt == node->value)
value             452 maint/gnulib/lib/gl_anytree_list2.h                   if (equals != NULL ? equals (elt, node->value) : elt == node->value)
value             501 maint/gnulib/lib/gl_anytree_list2.h     list->base.dispose_fn (node->value);
value             565 maint/gnulib/lib/gl_anytree_list2.h             list->base.dispose_fn (node->value);
value             637 maint/gnulib/lib/gl_anytree_list2.h       *eltp = node->value;
value             675 maint/gnulib/lib/gl_anytree_list2.h       int cmp = compar (node->value, elt);
value             689 maint/gnulib/lib/gl_anytree_list2.h               int cmp2 = compar (node->value, elt);
value             737 maint/gnulib/lib/gl_anytree_list2.h           int cmp = compar (node->value, elt);
value             766 maint/gnulib/lib/gl_anytree_list2.h                       int cmp2 = compar (node->value, elt);
value             799 maint/gnulib/lib/gl_anytree_list2.h       int cmp = compar (node->value, elt);
value             819 maint/gnulib/lib/gl_anytree_list2.h               int cmp2 = compar (node->value, elt);
value             876 maint/gnulib/lib/gl_anytree_list2.h           int cmp = compar (node->value, elt);
value             907 maint/gnulib/lib/gl_anytree_list2.h                       int cmp2 = compar (node->value, elt);
value             942 maint/gnulib/lib/gl_anytree_list2.h       int cmp = compar (node->value, elt);
value              78 maint/gnulib/lib/gl_anytree_omap.h           *valuep = node->value;
value             114 maint/gnulib/lib/gl_anytree_omap.h           *valuep = found->value;
value             122 maint/gnulib/lib/gl_anytree_omap.h gl_tree_nx_getput (gl_omap_t map, const void *key, const void *value,
value             130 maint/gnulib/lib/gl_anytree_omap.h       if (gl_tree_nx_add_first (map, key, value) == NULL)
value             148 maint/gnulib/lib/gl_anytree_omap.h               if (gl_tree_nx_add_after (map, node, key, value) == NULL)
value             158 maint/gnulib/lib/gl_anytree_omap.h               if (gl_tree_nx_add_before (map, node, key, value) == NULL)
value             166 maint/gnulib/lib/gl_anytree_omap.h           *oldvaluep = node->value;
value             167 maint/gnulib/lib/gl_anytree_omap.h           node->value = value;
value             193 maint/gnulib/lib/gl_anytree_omap.h           *oldvaluep = node->value;
value             232 maint/gnulib/lib/gl_anytree_omap.h             map->base.vdispose_fn (node->value);
value             281 maint/gnulib/lib/gl_anytree_omap.h       *valuep = node->value;
value             103 maint/gnulib/lib/gl_anytree_oset.h                  ? compar (node->value, elt)
value             104 maint/gnulib/lib/gl_anytree_oset.h                  : (node->value > elt ? 1 :
value             105 maint/gnulib/lib/gl_anytree_oset.h                     node->value < elt ? -1 : 0));
value             128 maint/gnulib/lib/gl_anytree_oset.h       if (! threshold_fn (node->value, threshold))
value             138 maint/gnulib/lib/gl_anytree_oset.h               if (! threshold_fn (node->value, threshold))
value             146 maint/gnulib/lib/gl_anytree_oset.h           *eltp = found->value;
value             162 maint/gnulib/lib/gl_anytree_oset.h                  ? compar (node->value, elt)
value             163 maint/gnulib/lib/gl_anytree_oset.h                  : (node->value > elt ? 1 :
value             164 maint/gnulib/lib/gl_anytree_oset.h                     node->value < elt ? -1 : 0));
value             195 maint/gnulib/lib/gl_anytree_oset.h                  ? compar (node->value, elt)
value             196 maint/gnulib/lib/gl_anytree_oset.h                  : (node->value > elt ? 1 :
value             197 maint/gnulib/lib/gl_anytree_oset.h                     node->value < elt ? -1 : 0));
value             256 maint/gnulib/lib/gl_anytree_oset.h                 ? (prev_node == NULL || compar (prev_node->value, elt) < 0)
value             257 maint/gnulib/lib/gl_anytree_oset.h                   && (next_node == NULL || compar (next_node->value, elt) > 0)
value             258 maint/gnulib/lib/gl_anytree_oset.h                 : (prev_node == NULL || prev_node->value < elt)
value             259 maint/gnulib/lib/gl_anytree_oset.h                   && (next_node == NULL || next_node->value > elt)))
value             272 maint/gnulib/lib/gl_anytree_oset.h                              ? compar (node->value, elt)
value             273 maint/gnulib/lib/gl_anytree_oset.h                              : (node->value > elt ? 1 :
value             274 maint/gnulib/lib/gl_anytree_oset.h                                 node->value < elt ? -1 : 0));
value             339 maint/gnulib/lib/gl_anytree_oset.h             set->base.dispose_fn (node->value);
value             398 maint/gnulib/lib/gl_anytree_oset.h       if (! threshold_fn (node->value, threshold))
value             408 maint/gnulib/lib/gl_anytree_oset.h               if (! threshold_fn (node->value, threshold))
value             430 maint/gnulib/lib/gl_anytree_oset.h       *eltp = node->value;
value             108 maint/gnulib/lib/gl_anytreehash_list1.h       const void *value = new_node->value;
value             124 maint/gnulib/lib/gl_anytreehash_list1.h                   if (equals != NULL ? equals (value, node->value) : value == node->value)
value             135 maint/gnulib/lib/gl_anytreehash_list1.h                   if (equals != NULL ? equals (value, node->value) : value == node->value)
value             195 maint/gnulib/lib/gl_anytreehash_list1.h       const void *value = old_node->value;
value             220 maint/gnulib/lib/gl_anytreehash_list1.h               if (equals != NULL ? equals (value, node->value) : value == node->value)
value             296 maint/gnulib/lib/gl_anytreehash_list1.h          ? list->base.hashcode_fn (node->value)
value             297 maint/gnulib/lib/gl_anytreehash_list1.h          : (size_t)(uintptr_t) node->value);
value              48 maint/gnulib/lib/gl_anytreehash_list2.h                   if (equals != NULL ? equals (elt, node->value) : elt == node->value)
value              83 maint/gnulib/lib/gl_anytreehash_list2.h                   if (equals != NULL ? equals (elt, node->value) : elt == node->value)
value             108 maint/gnulib/lib/gl_anytreehash_list2.h               if (equals != NULL ? equals (elt, node->value) : elt == node->value)
value             201 maint/gnulib/lib/gl_anytreehash_list2.h               list->base.dispose_fn (node->value);
value              34 maint/gnulib/lib/gl_array_map.c   const void *value;
value             112 maint/gnulib/lib/gl_array_map.c       *valuep = map->pairs[index].value;
value             144 maint/gnulib/lib/gl_array_map.c gl_array_nx_getput (gl_map_t map, const void *key, const void *value,
value             150 maint/gnulib/lib/gl_array_map.c       *oldvaluep = map->pairs[index].value;
value             151 maint/gnulib/lib/gl_array_map.c       map->pairs[index].value = value;
value             164 maint/gnulib/lib/gl_array_map.c       pairs[count].value = value;
value             193 maint/gnulib/lib/gl_array_map.c       *oldvaluep = map->pairs[index].value;
value             219 maint/gnulib/lib/gl_array_map.c                     vdispose (pairs->value);
value             271 maint/gnulib/lib/gl_array_map.c       *valuep = p->value;
value              33 maint/gnulib/lib/gl_array_omap.c   const void *value;
value             118 maint/gnulib/lib/gl_array_omap.c       *valuep = map->pairs[index].value;
value             167 maint/gnulib/lib/gl_array_omap.c               *valuep = map->pairs[low].value;
value             205 maint/gnulib/lib/gl_array_omap.c                     const void *key, const void *value)
value             218 maint/gnulib/lib/gl_array_omap.c   pairs[position].value = value;
value             224 maint/gnulib/lib/gl_array_omap.c gl_array_nx_getput (gl_omap_t map, const void *key, const void *value,
value             253 maint/gnulib/lib/gl_array_omap.c               *oldvaluep = map->pairs[mid].value;
value             254 maint/gnulib/lib/gl_array_omap.c               map->pairs[mid].value = value;
value             260 maint/gnulib/lib/gl_array_omap.c   return gl_array_nx_add_at (map, low, key, value);
value             286 maint/gnulib/lib/gl_array_omap.c       *oldvaluep = map->pairs[index].value;
value             312 maint/gnulib/lib/gl_array_omap.c                     vdispose (pairs->value);
value             364 maint/gnulib/lib/gl_array_omap.c       *valuep = p->value;
value              35 maint/gnulib/lib/gl_avltree_omap.c   const void *value;
value              37 maint/gnulib/lib/gl_avltree_omap.c   const void *key, const void *value
value              40 maint/gnulib/lib/gl_avltree_omap.c   node->value = value;
value              34 maint/gnulib/lib/gl_avltree_oset.c   const void *value;
value              38 maint/gnulib/lib/gl_avltree_oset.c   node->value = elt;
value              41 maint/gnulib/lib/gl_avltree_oset.c     container->base.dispose_fn (node->value);
value              37 maint/gnulib/lib/gl_hash_map.c   const void *value;
value             118 maint/gnulib/lib/gl_hash_map.c         *valuep = node->value;
value             125 maint/gnulib/lib/gl_hash_map.c gl_hash_nx_getput (gl_map_t map, const void *key, const void *value,
value             147 maint/gnulib/lib/gl_hash_map.c           *oldvaluep = node->value;
value             148 maint/gnulib/lib/gl_hash_map.c           node->value = value;
value             161 maint/gnulib/lib/gl_hash_map.c   node->value = value;
value             199 maint/gnulib/lib/gl_hash_map.c           *oldvaluep = node->value;
value             237 maint/gnulib/lib/gl_hash_map.c                 vdispose (((gl_list_node_t) node)->value);
value             283 maint/gnulib/lib/gl_hash_map.c       *valuep = node->value;
value             302 maint/gnulib/lib/gl_hash_map.c                   *valuep = node->value;
value              36 maint/gnulib/lib/gl_hash_set.c   const void *value;
value             112 maint/gnulib/lib/gl_hash_set.c             ? equals (elt, node->value)
value             113 maint/gnulib/lib/gl_hash_set.c             : elt == node->value))
value             137 maint/gnulib/lib/gl_hash_set.c               ? equals (elt, node->value)
value             138 maint/gnulib/lib/gl_hash_set.c               : elt == node->value))
value             149 maint/gnulib/lib/gl_hash_set.c   node->value = elt;
value             184 maint/gnulib/lib/gl_hash_set.c               ? equals (elt, node->value)
value             185 maint/gnulib/lib/gl_hash_set.c               : elt == node->value))
value             194 maint/gnulib/lib/gl_hash_set.c             set->base.dispose_fn (node->value);
value             222 maint/gnulib/lib/gl_hash_set.c                 dispose (((gl_list_node_t) node)->value);
value             264 maint/gnulib/lib/gl_hash_set.c       *eltp = node->value;
value             282 maint/gnulib/lib/gl_hash_set.c                   *eltp = node->value;
value              39 maint/gnulib/lib/gl_linkedhash_map.c   const void *value;
value             143 maint/gnulib/lib/gl_linkedhash_map.c         *valuep = node->value;
value             150 maint/gnulib/lib/gl_linkedhash_map.c gl_linkedhash_nx_getput (gl_map_t map, const void *key, const void *value,
value             172 maint/gnulib/lib/gl_linkedhash_map.c           *oldvaluep = node->value;
value             173 maint/gnulib/lib/gl_linkedhash_map.c           node->value = value;
value             186 maint/gnulib/lib/gl_linkedhash_map.c   ASYNCSAFE(const void *) node->value = value;
value             228 maint/gnulib/lib/gl_linkedhash_map.c           *oldvaluep = node->value;
value             264 maint/gnulib/lib/gl_linkedhash_map.c         vdispose (node->value);
value             305 maint/gnulib/lib/gl_linkedhash_map.c       *valuep = node->value;
value              38 maint/gnulib/lib/gl_linkedhash_set.c   const void *value;
value             137 maint/gnulib/lib/gl_linkedhash_set.c             ? equals (elt, node->value)
value             138 maint/gnulib/lib/gl_linkedhash_set.c             : elt == node->value))
value             162 maint/gnulib/lib/gl_linkedhash_set.c               ? equals (elt, node->value)
value             163 maint/gnulib/lib/gl_linkedhash_set.c               : elt == node->value))
value             174 maint/gnulib/lib/gl_linkedhash_set.c   ASYNCSAFE(const void *) node->value = elt;
value             213 maint/gnulib/lib/gl_linkedhash_set.c               ? equals (elt, node->value)
value             214 maint/gnulib/lib/gl_linkedhash_set.c               : elt == node->value))
value             230 maint/gnulib/lib/gl_linkedhash_set.c             set->base.dispose_fn (node->value);
value             249 maint/gnulib/lib/gl_linkedhash_set.c         dispose (node->value);
value             286 maint/gnulib/lib/gl_linkedhash_set.c       *eltp = node->value;
value              94 maint/gnulib/lib/gl_map.h typedef void (*gl_mapvalue_dispose_fn) (const void *value);
value             149 maint/gnulib/lib/gl_map.h extern bool gl_map_put (gl_map_t map, const void *key, const void *value);
value             152 maint/gnulib/lib/gl_map.h extern int gl_map_nx_put (gl_map_t map, const void *key, const void *value);
value             160 maint/gnulib/lib/gl_map.h extern bool gl_map_getput (gl_map_t map, const void *key, const void *value,
value             164 maint/gnulib/lib/gl_map.h extern int gl_map_nx_getput (gl_map_t map, const void *key, const void *value,
value             239 maint/gnulib/lib/gl_map.h   int (*nx_getput) (gl_map_t map, const void *key, const void *value,
value             289 maint/gnulib/lib/gl_map.h gl_map_nx_getput (gl_map_t map, const void *key, const void *value,
value             293 maint/gnulib/lib/gl_map.h          ->nx_getput (map, key, value, oldvaluep);
value             334 maint/gnulib/lib/gl_map.h   const void *value = NULL;
value             335 maint/gnulib/lib/gl_map.h   gl_map_search (map, key, &value);
value             336 maint/gnulib/lib/gl_map.h   return value;
value             340 maint/gnulib/lib/gl_map.h gl_map_nx_put (gl_map_t map, const void *key, const void *value)
value             343 maint/gnulib/lib/gl_map.h   int result = gl_map_nx_getput (map, key, value, &oldvalue);
value              89 maint/gnulib/lib/gl_map.hh   bool search (KEYTYPE * key, VALUETYPE *& value) const
value              90 maint/gnulib/lib/gl_map.hh     { return gl_map_search (_ptr, key, &value); }
value              99 maint/gnulib/lib/gl_map.hh   bool put (KEYTYPE * key, VALUETYPE * value)
value             100 maint/gnulib/lib/gl_map.hh     { return gl_map_put (_ptr, key, value); }
value             107 maint/gnulib/lib/gl_map.hh   bool getput (KEYTYPE * key, VALUETYPE * value, VALUETYPE *& oldvalue)
value             108 maint/gnulib/lib/gl_map.hh     { return gl_map_getput (_ptr, key, value, &oldvalue); }
value             147 maint/gnulib/lib/gl_map.hh     bool next (KEYTYPE *& key, VALUETYPE *& value)
value             155 maint/gnulib/lib/gl_map.hh             value = static_cast<VALUETYPE *>(next_value);
value              92 maint/gnulib/lib/gl_omap.h typedef void (*gl_mapvalue_dispose_fn) (const void *value);
value             159 maint/gnulib/lib/gl_omap.h extern bool gl_omap_put (gl_omap_t map, const void *key, const void *value);
value             162 maint/gnulib/lib/gl_omap.h extern int gl_omap_nx_put (gl_omap_t map, const void *key, const void *value);
value             170 maint/gnulib/lib/gl_omap.h extern bool gl_omap_getput (gl_omap_t map, const void *key, const void *value,
value             174 maint/gnulib/lib/gl_omap.h extern int gl_omap_nx_getput (gl_omap_t map, const void *key, const void *value,
value             249 maint/gnulib/lib/gl_omap.h   int (*nx_getput) (gl_omap_t map, const void *key, const void *value,
value             307 maint/gnulib/lib/gl_omap.h gl_omap_nx_getput (gl_omap_t map, const void *key, const void *value,
value             311 maint/gnulib/lib/gl_omap.h          ->nx_getput (map, key, value, oldvaluep);
value             352 maint/gnulib/lib/gl_omap.h   const void *value = NULL;
value             353 maint/gnulib/lib/gl_omap.h   gl_omap_search (map, key, &value);
value             354 maint/gnulib/lib/gl_omap.h   return value;
value             358 maint/gnulib/lib/gl_omap.h gl_omap_nx_put (gl_omap_t map, const void *key, const void *value)
value             361 maint/gnulib/lib/gl_omap.h   int result = gl_omap_nx_getput (map, key, value, &oldvalue);
value              86 maint/gnulib/lib/gl_omap.hh   bool search (KEYTYPE * key, VALUETYPE *& value) const
value              87 maint/gnulib/lib/gl_omap.hh     { return gl_omap_search (_ptr, key, &value); }
value              97 maint/gnulib/lib/gl_omap.hh                        KEYTYPE *& key, VALUETYPE *& value) const
value              98 maint/gnulib/lib/gl_omap.hh   { return gl_omap_search_atleast (_ptr, reinterpret_cast<gl_mapkey_threshold_fn>(threshold_fn), threshold, &key, &value); }
value             107 maint/gnulib/lib/gl_omap.hh   bool put (KEYTYPE * key, VALUETYPE * value)
value             108 maint/gnulib/lib/gl_omap.hh     { return gl_omap_put (_ptr, key, value); }
value             115 maint/gnulib/lib/gl_omap.hh   bool getput (KEYTYPE * key, VALUETYPE * value, VALUETYPE *& oldvalue)
value             116 maint/gnulib/lib/gl_omap.hh     { return gl_omap_getput (_ptr, key, value, &oldvalue); }
value             155 maint/gnulib/lib/gl_omap.hh     bool next (KEYTYPE *& key, VALUETYPE *& value)
value             163 maint/gnulib/lib/gl_omap.hh             value = static_cast<VALUETYPE *>(next_value);
value              35 maint/gnulib/lib/gl_rbtree_omap.c   const void *value;
value              37 maint/gnulib/lib/gl_rbtree_omap.c   const void *key, const void *value
value              40 maint/gnulib/lib/gl_rbtree_omap.c   node->value = value;
value              34 maint/gnulib/lib/gl_rbtree_oset.c   const void *value;
value              38 maint/gnulib/lib/gl_rbtree_oset.c   node->value = elt;
value              41 maint/gnulib/lib/gl_rbtree_oset.c     container->base.dispose_fn (node->value);
value              48 maint/gnulib/lib/gl_xmap.h extern bool gl_map_put (gl_map_t map, const void *key, const void *value);
value              49 maint/gnulib/lib/gl_xmap.h extern bool gl_map_getput (gl_map_t map, const void *key, const void *value,
value              72 maint/gnulib/lib/gl_xmap.h gl_map_put (gl_map_t map, const void *key, const void *value)
value              74 maint/gnulib/lib/gl_xmap.h   int result = gl_map_nx_put (map, key, value);
value              81 maint/gnulib/lib/gl_xmap.h gl_map_getput (gl_map_t map, const void *key, const void *value,
value              84 maint/gnulib/lib/gl_xmap.h   int result = gl_map_nx_getput (map, key, value, oldvaluep);
value              47 maint/gnulib/lib/gl_xomap.h extern bool gl_omap_put (gl_omap_t map, const void *key, const void *value);
value              48 maint/gnulib/lib/gl_xomap.h extern bool gl_omap_getput (gl_omap_t map, const void *key, const void *value,
value              69 maint/gnulib/lib/gl_xomap.h gl_omap_put (gl_omap_t map, const void *key, const void *value)
value              71 maint/gnulib/lib/gl_xomap.h   int result = gl_omap_nx_put (map, key, value);
value              78 maint/gnulib/lib/gl_xomap.h gl_omap_getput (gl_omap_t map, const void *key, const void *value,
value              81 maint/gnulib/lib/gl_xomap.h   int result = gl_omap_nx_getput (map, key, value, oldvaluep);
value             362 maint/gnulib/lib/hash.c   size_t value = 0;
value             366 maint/gnulib/lib/hash.c     value = HASH_ONE_CHAR (value, ch);
value             367 maint/gnulib/lib/hash.c   return value % n_buckets;
value             382 maint/gnulib/lib/hash.c   size_t value = 0;
value             386 maint/gnulib/lib/hash.c     value = (value * 31 + ch) % n_buckets;
value             387 maint/gnulib/lib/hash.c   return value;
value              54 maint/gnulib/lib/human.c adjust_value (int inexact_style, long double value)
value              60 maint/gnulib/lib/human.c   if (inexact_style != human_round_to_nearest && value < UINTMAX_MAX)
value              62 maint/gnulib/lib/human.c       uintmax_t u = value;
value              63 maint/gnulib/lib/human.c       value = u + (inexact_style == human_ceiling && u != value);
value              66 maint/gnulib/lib/human.c   return value;
value              60 maint/gnulib/lib/integer_length.c       typedef union { double value; unsigned int word[NWORDS]; }
value              73 maint/gnulib/lib/integer_length.c               m.value = x;
value              95 maint/gnulib/lib/integer_length.c               m.value = m.value - TWO_DBL_MANT_DIG;
value              80 maint/gnulib/lib/isnan.c typedef union { DOUBLE value; unsigned int word[NWORDS]; } memory_double;
value             109 maint/gnulib/lib/isnan.c   m.value = x;
value             145 maint/gnulib/lib/isnan.c   nan.value = zero / zero;
value             156 maint/gnulib/lib/isnan.c     m.value = x;
value             160 maint/gnulib/lib/isnan.c       return (memcmp (&m.value, &plus_inf, SIZE) != 0
value             161 maint/gnulib/lib/isnan.c               && memcmp (&m.value, &minus_inf, SIZE) != 0);
value             177 maint/gnulib/lib/isnan.c       memset (&m1.value, 0, SIZE);
value             178 maint/gnulib/lib/isnan.c       memset (&m2.value, 0, SIZE);
value             179 maint/gnulib/lib/isnan.c       m1.value = x;
value             180 maint/gnulib/lib/isnan.c       m2.value = x + (x ? 0.0L : -0.0L);
value             181 maint/gnulib/lib/isnan.c       if (memcmp (&m1.value, &m2.value, SIZE) != 0)
value            3396 maint/gnulib/lib/localename.c         CFTypeRef value =
value            3399 maint/gnulib/lib/localename.c         if (value != NULL && CFGetTypeID (value) == CFStringGetTypeID ())
value            3401 maint/gnulib/lib/localename.c             CFStringRef name = (CFStringRef)value;
value             141 maint/gnulib/lib/math.in.h #define _GL_WARN_REAL_FLOATING_IMPL(func, value) \
value             142 maint/gnulib/lib/math.in.h   (sizeof (value) == sizeof (float) ? rpl_ ## func ## f (value)     \
value             143 maint/gnulib/lib/math.in.h    : sizeof (value) == sizeof (double) ? rpl_ ## func ## d (value)  \
value             144 maint/gnulib/lib/math.in.h    : rpl_ ## func ## l (value))
value             103 maint/gnulib/lib/modechange.c   mode_t value;                 /* Bits to add/remove.  */
value             118 maint/gnulib/lib/modechange.c   p->value = new_mode;
value             207 maint/gnulib/lib/modechange.c           mode_t value;
value             230 maint/gnulib/lib/modechange.c                 value = octal_to_mode (octal_mode);
value             238 maint/gnulib/lib/modechange.c               value = S_IRWXU;
value             244 maint/gnulib/lib/modechange.c               value = S_IRWXG;
value             250 maint/gnulib/lib/modechange.c               value = S_IRWXO;
value             255 maint/gnulib/lib/modechange.c               value = 0;
value             262 maint/gnulib/lib/modechange.c                     value |= S_IRUSR | S_IRGRP | S_IROTH;
value             265 maint/gnulib/lib/modechange.c                     value |= S_IWUSR | S_IWGRP | S_IWOTH;
value             268 maint/gnulib/lib/modechange.c                     value |= S_IXUSR | S_IXGRP | S_IXOTH;
value             275 maint/gnulib/lib/modechange.c                     value |= S_ISUID | S_ISGID;
value             279 maint/gnulib/lib/modechange.c                     value |= S_ISVTX;
value             291 maint/gnulib/lib/modechange.c           change->value = value;
value             293 maint/gnulib/lib/modechange.c             (mentioned ? mentioned : affected ? affected & value : value);
value             353 maint/gnulib/lib/modechange.c       mode_t value = changes->value;
value             362 maint/gnulib/lib/modechange.c           value &= newmode;
value             365 maint/gnulib/lib/modechange.c           value |= ((value & (S_IRUSR | S_IRGRP | S_IROTH)
value             367 maint/gnulib/lib/modechange.c                     | (value & (S_IWUSR | S_IWGRP | S_IWOTH)
value             369 maint/gnulib/lib/modechange.c                     | (value & (S_IXUSR | S_IXGRP | S_IXOTH)
value             377 maint/gnulib/lib/modechange.c             value |= S_IXUSR | S_IXGRP | S_IXOTH;
value             384 maint/gnulib/lib/modechange.c       value &= (affected ? affected : ~umask_value) & ~ omit_change;
value             395 maint/gnulib/lib/modechange.c             newmode = (newmode & preserved) | value;
value             400 maint/gnulib/lib/modechange.c           mode_bits |= value;
value             401 maint/gnulib/lib/modechange.c           newmode |= value;
value             405 maint/gnulib/lib/modechange.c           mode_bits |= value;
value             406 maint/gnulib/lib/modechange.c           newmode &= ~value;
value              73 maint/gnulib/lib/nonblocking.c set_nonblocking_flag (int desc, bool value)
value              90 maint/gnulib/lib/nonblocking.c               if (value)
value              96 maint/gnulib/lib/nonblocking.c               if (!value)
value             108 maint/gnulib/lib/nonblocking.c           int v = value;
value             116 maint/gnulib/lib/nonblocking.c       if (!value)
value             147 maint/gnulib/lib/nonblocking.c set_nonblocking_flag (int desc, bool value)
value             154 maint/gnulib/lib/nonblocking.c   if (((fcntl_flags & O_NONBLOCK) != 0) == value)
value             156 maint/gnulib/lib/nonblocking.c   if (value)
value              55 maint/gnulib/lib/nonblocking.h extern int set_nonblocking_flag (int desc, bool value);
value             361 maint/gnulib/lib/nproc.c       unsigned long int value = strtoul (threads, &endptr, 10);
value             368 maint/gnulib/lib/nproc.c             return value;
value             372 maint/gnulib/lib/nproc.c             return value;
value              52 maint/gnulib/lib/omp-init.c       unsigned long int value = strtoul (threads, &endptr, 10);
value              59 maint/gnulib/lib/omp-init.c             return value;
value              63 maint/gnulib/lib/omp-init.c             return value;
value             142 maint/gnulib/lib/parse-datetime.y   intmax_t value;
value             151 maint/gnulib/lib/parse-datetime.y   int value;
value             276 maint/gnulib/lib/parse-datetime.y           pc->day = text_int.value % 100;
value             277 maint/gnulib/lib/parse-datetime.y           pc->month = (text_int.value / 100) % 100;
value             278 maint/gnulib/lib/parse-datetime.y           pc->year.value = text_int.value / 10000;
value             286 maint/gnulib/lib/parse-datetime.y               pc->hour = text_int.value;
value             291 maint/gnulib/lib/parse-datetime.y               pc->hour = text_int.value / 100;
value             292 maint/gnulib/lib/parse-datetime.y               pc->minutes = text_int.value % 100;
value             446 maint/gnulib/lib/parse-datetime.y               pc->year.value, pc->month, pc->day);
value             455 maint/gnulib/lib/parse-datetime.y       fprintf (stderr, _("year: %04"PRIdMAX), pc->year.value);
value             846 maint/gnulib/lib/parse-datetime.y         if (INT_SUBTRACT_WRAPV (0, $3.value, &pc->year.value)) YYABORT;
value             854 maint/gnulib/lib/parse-datetime.y         if (INT_SUBTRACT_WRAPV (0, $3.value, &pc->year.value)) YYABORT;
value            1216 maint/gnulib/lib/parse-datetime.y     s.value *= 100;
value            1219 maint/gnulib/lib/parse-datetime.y     n_minutes = (s.value / 100) * 60 + s.value % 100;
value            1222 maint/gnulib/lib/parse-datetime.y       overflow |= INT_MULTIPLY_WRAPV (s.value, 60, &n_minutes);
value            1271 maint/gnulib/lib/parse-datetime.y   intmax_t year = textyear.value;
value            1281 maint/gnulib/lib/parse-datetime.y                     textyear.value, year);
value            1439 maint/gnulib/lib/parse-datetime.y           time_t value = 0;
value            1442 maint/gnulib/lib/parse-datetime.y               if (INT_MULTIPLY_WRAPV (value, 10, &value))
value            1444 maint/gnulib/lib/parse-datetime.y               if (INT_ADD_WRAPV (value, sign < 0 ? '0' - c : c - '0', &value))
value            1452 maint/gnulib/lib/parse-datetime.y               time_t s = value;
value            1494 maint/gnulib/lib/parse-datetime.y               lvalp->textintval.value = value;
value            1523 maint/gnulib/lib/parse-datetime.y           lvalp->intval = tp->value;
value            1807 maint/gnulib/lib/parse-datetime.y   if (INT_ADD_WRAPV (tmp.tm_year, TM_YEAR_BASE, &pc.year.value))
value            1844 maint/gnulib/lib/parse-datetime.y   pc.local_time_zone_table[0].value = tmp.tm_isdst;
value            1858 maint/gnulib/lib/parse-datetime.y             && probe_tm.tm_isdst != pc.local_time_zone_table[0].value)
value            1863 maint/gnulib/lib/parse-datetime.y                 pc.local_time_zone_table[1].value = probe_tm.tm_isdst;
value            1881 maint/gnulib/lib/parse-datetime.y         pc.local_time_zone_table[i].value = i;
value            1897 maint/gnulib/lib/parse-datetime.y       pc.local_time_zone_table[0].value = -1;
value             108 maint/gnulib/lib/pthread-thread.c pthread_exit (void *value)
value             110 maint/gnulib/lib/pthread-thread.c   glwthread_thread_exit (value);
value             172 maint/gnulib/lib/pthread-thread.c pthread_exit (void *value)
value              40 maint/gnulib/lib/pthread-tss.c pthread_setspecific (pthread_key_t key, const void *value)
value              42 maint/gnulib/lib/pthread-tss.c   return glwthread_tls_set (key, (void *) value);
value              75 maint/gnulib/lib/pthread-tss.c pthread_setspecific (pthread_key_t key, const void *value)
value              77 maint/gnulib/lib/pthread-tss.c   *key = (void *) value;
value             724 maint/gnulib/lib/pthread.in.h _GL_FUNCDECL_RPL (pthread_exit, _Noreturn void, (void *value));
value             725 maint/gnulib/lib/pthread.in.h _GL_CXXALIAS_RPL (pthread_exit, void, (void *value));
value             728 maint/gnulib/lib/pthread.in.h _GL_FUNCDECL_SYS (pthread_exit, _Noreturn void, (void *value));
value             731 maint/gnulib/lib/pthread.in.h _GL_CXXALIAS_SYS_CAST (pthread_exit, void, (void *value));
value            1757 maint/gnulib/lib/pthread.in.h                   (pthread_key_t key, const void *value));
value            1759 maint/gnulib/lib/pthread.in.h                   (pthread_key_t key, const void *value));
value            1763 maint/gnulib/lib/pthread.in.h                   (pthread_key_t key, const void *value));
value            1766 maint/gnulib/lib/pthread.in.h                   (pthread_key_t key, const void *value));
value             164 maint/gnulib/lib/relocwrapper.c   char *value;
value             176 maint/gnulib/lib/relocwrapper.c   value = (char *) malloc (total);
value             177 maint/gnulib/lib/relocwrapper.c   if (value == NULL)
value             182 maint/gnulib/lib/relocwrapper.c   p = value;
value             195 maint/gnulib/lib/relocwrapper.c   if (setenv (LIBPATHVAR, value, 1) < 0)
value              86 maint/gnulib/lib/setenv.c     void *value = tfind (Str, &known_values, (compar_fn_t) strcmp);           \
value              87 maint/gnulib/lib/setenv.c     value != NULL ? *(char **) value : NULL;                                  \
value             113 maint/gnulib/lib/setenv.c __add_to_environ (const char *name, const char *value, const char *combined,
value             119 maint/gnulib/lib/setenv.c   const size_t vallen = value != NULL ? strlen (value) + 1 : 0;
value             170 maint/gnulib/lib/setenv.c                      value, vallen);
value             181 maint/gnulib/lib/setenv.c           memcpy (&new_value[namelen + 1], value, vallen);
value             204 maint/gnulib/lib/setenv.c               memcpy (&new_environ[size][namelen + 1], value, vallen);
value             238 maint/gnulib/lib/setenv.c                      value, vallen);
value             249 maint/gnulib/lib/setenv.c           memcpy (&new_value[namelen + 1], value, vallen);
value             272 maint/gnulib/lib/setenv.c               memcpy (&np[namelen + 1], value, vallen);
value             291 maint/gnulib/lib/setenv.c setenv (const char *name, const char *value, int replace)
value             299 maint/gnulib/lib/setenv.c   return __add_to_environ (name, value, NULL, replace);
value             359 maint/gnulib/lib/setenv.c rpl_setenv (const char *name, const char *value, int replace)
value             369 maint/gnulib/lib/setenv.c   result = setenv (name, value, replace);
value             370 maint/gnulib/lib/setenv.c   if (result == 0 && replace && *value == '=')
value             373 maint/gnulib/lib/setenv.c       if (!STREQ (tmp, value))
value             376 maint/gnulib/lib/setenv.c           size_t len = strlen (value);
value             380 maint/gnulib/lib/setenv.c           memcpy (tmp + 1, value, len + 1);
value              42 maint/gnulib/lib/signbitd.c   union { double value; unsigned int word[NWORDS]; } m;
value              43 maint/gnulib/lib/signbitd.c   m.value = arg;
value              42 maint/gnulib/lib/signbitf.c   union { float value; unsigned int word[NWORDS]; } m;
value              43 maint/gnulib/lib/signbitf.c   m.value = arg;
value              42 maint/gnulib/lib/signbitl.c   union { long double value; unsigned int word[NWORDS]; } m;
value              43 maint/gnulib/lib/signbitl.c   m.value = arg;
value             290 maint/gnulib/lib/stackvma.c   uintptr_t value = 0;
value             296 maint/gnulib/lib/stackvma.c         value = (value << 4) + (c - '0');
value             298 maint/gnulib/lib/stackvma.c         value = (value << 4) + (c - 'A' + 10);
value             300 maint/gnulib/lib/stackvma.c         value = (value << 4) + (c - 'a' + 10);
value             308 maint/gnulib/lib/stackvma.c   *valuep = value;
value            1607 maint/gnulib/lib/stackvma.c     unsigned int value = getpid ();
value            1609 maint/gnulib/lib/stackvma.c       *--fname = (value % 10) + '0';
value            1610 maint/gnulib/lib/stackvma.c     while ((value = value / 10) > 0);
value            1718 maint/gnulib/lib/stackvma.c     unsigned int value = getpid ();
value            1720 maint/gnulib/lib/stackvma.c       *--fname = (value % 10) + '0';
value            1721 maint/gnulib/lib/stackvma.c     while ((value = value / 10) > 0);
value            1235 maint/gnulib/lib/stdlib.in.h                   (const char *name, const char *value, int replace)
value            1238 maint/gnulib/lib/stdlib.in.h                   (const char *name, const char *value, int replace));
value            1242 maint/gnulib/lib/stdlib.in.h                   (const char *name, const char *value, int replace)
value            1246 maint/gnulib/lib/stdlib.in.h                   (const char *name, const char *value, int replace));
value             277 maint/gnulib/lib/strtod.c       long int value = strtol (s + 1, &end, 10);
value             287 maint/gnulib/lib/strtod.c              ? (value < LONG_MIN - exponent ? LONG_MIN : exponent + value)
value             288 maint/gnulib/lib/strtod.c              : (LONG_MAX - exponent < value ? LONG_MAX : exponent + value));
value              55 maint/gnulib/lib/tss.c tss_set (tss_t key, void *value)
value              57 maint/gnulib/lib/tss.c   int err = glwthread_tls_set (key, value);
value              90 maint/gnulib/lib/tss.c tss_set (tss_t key, void *value)
value              92 maint/gnulib/lib/tss.c   int err = pthread_setspecific (key, value);
value             111 maint/gnulib/lib/unictype/3level.h CONCAT(TABLE,_add) (struct TABLE *t, uint32_t wc, ELEMENT value)
value             118 maint/gnulib/lib/unictype/3level.h   if (value == CONCAT(TABLE,_get) (t, wc))
value             172 maint/gnulib/lib/unictype/3level.h   t->level3[index3] = value;
value             179 maint/gnulib/lib/unictype/3level.h                         void (*fn) (uint32_t wc, ELEMENT value))
value             655 maint/gnulib/lib/vasnprintf.c             union { double value; unsigned int word[NWORDS]; } m;
value             658 maint/gnulib/lib/vasnprintf.c             m.value = msd;
value             310 maint/gnulib/lib/vma-iter.c   unsigned long value = 0;
value             316 maint/gnulib/lib/vma-iter.c         value = (value << 4) + (c - '0');
value             318 maint/gnulib/lib/vma-iter.c         value = (value << 4) + (c - 'A' + 10);
value             320 maint/gnulib/lib/vma-iter.c         value = (value << 4) + (c - 'a' + 10);
value             328 maint/gnulib/lib/vma-iter.c   *valuep = value;
value             518 maint/gnulib/lib/vma-iter.c     unsigned int value = getpid ();
value             520 maint/gnulib/lib/vma-iter.c       *--fname = (value % 10) + '0';
value             521 maint/gnulib/lib/vma-iter.c     while ((value = value / 10) > 0);
value             919 maint/gnulib/lib/vma-iter.c     unsigned int value = getpid ();
value             921 maint/gnulib/lib/vma-iter.c       *--fname = (value % 10) + '0';
value             922 maint/gnulib/lib/vma-iter.c     while ((value = value / 10) > 0);
value            1044 maint/gnulib/lib/vma-iter.c     unsigned int value = getpid ();
value            1046 maint/gnulib/lib/vma-iter.c       *--fname = (value % 10) + '0';
value            1047 maint/gnulib/lib/vma-iter.c     while ((value = value / 10) > 0);
value            1163 maint/gnulib/lib/vma-iter.c     unsigned int value = getpid ();
value            1165 maint/gnulib/lib/vma-iter.c       *--fname = (value % 10) + '0';
value            1166 maint/gnulib/lib/vma-iter.c     while ((value = value / 10) > 0);
value              37 maint/gnulib/lib/windows-tls.c glwthread_tls_set (glwthread_tls_key_t key, void *value)
value              39 maint/gnulib/lib/windows-tls.c   if (!TlsSetValue (key, value))
value              33 maint/gnulib/lib/windows-tls.h extern int glwthread_tls_set (glwthread_tls_key_t key, void *value);
value              34 maint/gnulib/lib/xsetenv.c xsetenv (const char *name, const char *value, int replace)
value              36 maint/gnulib/lib/xsetenv.c   if (setenv (name, value, replace) < 0)
value              27 maint/gnulib/lib/xsetenv.h extern void xsetenv (const char *name, const char *value, int replace);
value              51 maint/gnulib/tests/atomic-int-gnulib.h   volatile int value;
value              60 maint/gnulib/tests/atomic-int-gnulib.h   return ai->value;
value              65 maint/gnulib/tests/atomic-int-gnulib.h   ai->value = new_value;
value             151 maint/gnulib/tests/atomic-int-gnulib.h   int value;
value             162 maint/gnulib/tests/atomic-int-gnulib.h   int ret = ai->value;
value             170 maint/gnulib/tests/atomic-int-gnulib.h   ai->value = new_value;
value              51 maint/gnulib/tests/atomic-int-isoc.h   volatile int value;
value              60 maint/gnulib/tests/atomic-int-isoc.h   return ai->value;
value              65 maint/gnulib/tests/atomic-int-isoc.h   ai->value = new_value;
value             151 maint/gnulib/tests/atomic-int-isoc.h   int value;
value             162 maint/gnulib/tests/atomic-int-isoc.h   int ret = ai->value;
value             170 maint/gnulib/tests/atomic-int-isoc.h   ai->value = new_value;
value              51 maint/gnulib/tests/atomic-int-posix.h   volatile int value;
value              60 maint/gnulib/tests/atomic-int-posix.h   return ai->value;
value              65 maint/gnulib/tests/atomic-int-posix.h   ai->value = new_value;
value             151 maint/gnulib/tests/atomic-int-posix.h   int value;
value             167 maint/gnulib/tests/atomic-int-posix.h   int ret = ai->value;
value             175 maint/gnulib/tests/atomic-int-posix.h   ai->value = new_value;
value              36 maint/gnulib/tests/locale.c   const char *value = getenv (variable);
value              37 maint/gnulib/tests/locale.c   return (value != NULL ? value : "");
value              43 maint/gnulib/tests/locale.c   const char *value = defaulted_getenv (variable);
value              44 maint/gnulib/tests/locale.c   if (value[0] != '\0' && defaulted_getenv ("LC_ALL")[0] == '\0')
value              46 maint/gnulib/tests/locale.c     printf ("%s=%s\n", variable, value);
value              67 maint/gnulib/tests/test-array_map.c   const void *value;
value              96 maint/gnulib/tests/test-array_map.c       pairs_of_map1[i].value = value1;
value             106 maint/gnulib/tests/test-array_map.c       ASSERT (pairs_of_map1[i].value == gl_list_get_at (values, i));
value             148 maint/gnulib/tests/test-array_map.c         const char *value = RANDOM_OBJECT ();
value             149 maint/gnulib/tests/test-array_map.c         bool added = gl_map_nx_put (map1, key, value);
value             156 maint/gnulib/tests/test-array_map.c             gl_list_add_at (values, index, value);
value             159 maint/gnulib/tests/test-array_map.c           gl_list_set_at (values, index, value);
value             181 maint/gnulib/tests/test-array_map.c               const char *value = RANDOM_OBJECT ();
value             182 maint/gnulib/tests/test-array_map.c               bool added = gl_map_nx_put (map1, key, value);
value             190 maint/gnulib/tests/test-array_map.c                   gl_list_add_at (values, index, value);
value             193 maint/gnulib/tests/test-array_map.c                 gl_list_set_at (values, index, value);
value             106 maint/gnulib/tests/test-array_omap.c         const char *value = RANDOM_OBJECT ();
value             107 maint/gnulib/tests/test-array_omap.c         bool added = gl_omap_nx_put (map1, key, value);
value             114 maint/gnulib/tests/test-array_omap.c             gl_list_add_at (values, index, value);
value             117 maint/gnulib/tests/test-array_omap.c           gl_list_set_at (values, index, value);
value             139 maint/gnulib/tests/test-array_omap.c               const char *value = RANDOM_OBJECT ();
value             140 maint/gnulib/tests/test-array_omap.c               bool added = gl_omap_nx_put (map1, key, value);
value             148 maint/gnulib/tests/test-array_omap.c                   gl_list_add_at (values, index, value);
value             151 maint/gnulib/tests/test-array_omap.c                 gl_list_set_at (values, index, value);
value             130 maint/gnulib/tests/test-asyncsafe-spin2.c       int i1, i2, value;
value             138 maint/gnulib/tests/test-asyncsafe-spin2.c       value = ((unsigned int) rand () >> 3) % 10;
value             139 maint/gnulib/tests/test-asyncsafe-spin2.c       account[i1] += value;
value             140 maint/gnulib/tests/test-asyncsafe-spin2.c       account[i2] -= value;
value             100 maint/gnulib/tests/test-avltree_omap.c         const char *value = RANDOM_OBJECT ();
value             101 maint/gnulib/tests/test-avltree_omap.c         ASSERT (gl_omap_nx_put (map1, key, value) == gl_omap_nx_put (map2, key, value));
value             119 maint/gnulib/tests/test-avltree_omap.c               const char *value = RANDOM_OBJECT ();
value             120 maint/gnulib/tests/test-avltree_omap.c               ASSERT (gl_omap_nx_put (map1, key, value) == gl_omap_nx_put (map2, key, value));
value              74 maint/gnulib/tests/test-cloexec.c   int value = set_binary_mode (fd, O_BINARY);
value              75 maint/gnulib/tests/test-cloexec.c   set_binary_mode (fd, value);
value              76 maint/gnulib/tests/test-cloexec.c   return mode == value;
value              48 maint/gnulib/tests/test-count-leading-zeros.c       TYPE value =                                               \
value              61 maint/gnulib/tests/test-count-leading-zeros.c         if (value & (ONE << j))                                  \
value              63 maint/gnulib/tests/test-count-leading-zeros.c       ASSERT (count == FUNC (value));                            \
value              48 maint/gnulib/tests/test-count-one-bits.c       TYPE value =                                        \
value              61 maint/gnulib/tests/test-count-one-bits.c         count += (value & (ONE << j)) != 0;               \
value              62 maint/gnulib/tests/test-count-one-bits.c       ASSERT (count == FUNC (value));                     \
value              48 maint/gnulib/tests/test-count-trailing-zeros.c       TYPE value =                                            \
value              61 maint/gnulib/tests/test-count-trailing-zeros.c         if (value & (ONE << j))                               \
value              63 maint/gnulib/tests/test-count-trailing-zeros.c       ASSERT (count == FUNC (value));                         \
value             103 maint/gnulib/tests/test-dup-safer.c   int value = set_binary_mode (fd, O_BINARY);
value             104 maint/gnulib/tests/test-dup-safer.c   set_binary_mode (fd, value);
value             105 maint/gnulib/tests/test-dup-safer.c   return mode == value;
value             104 maint/gnulib/tests/test-dup2.c   int value = set_binary_mode (fd, O_BINARY);
value             105 maint/gnulib/tests/test-dup2.c   set_binary_mode (fd, value);
value             106 maint/gnulib/tests/test-dup2.c   return mode == value;
value              97 maint/gnulib/tests/test-fcntl.c   int value = set_binary_mode (fd, O_BINARY);
value              98 maint/gnulib/tests/test-fcntl.c   set_binary_mode (fd, value);
value              99 maint/gnulib/tests/test-fcntl.c   return mode == value;
value             113 maint/gnulib/tests/test-fcntl.c   int value;
value             126 maint/gnulib/tests/test-fcntl.c       i = s->value;
value              37 maint/gnulib/tests/test-getsockopt.c     int value;
value              38 maint/gnulib/tests/test-getsockopt.c     socklen_t value_len = sizeof (value);
value              41 maint/gnulib/tests/test-getsockopt.c     ASSERT (getsockopt (-1, SOL_SOCKET, SO_REUSEADDR, &value, &value_len)
value              46 maint/gnulib/tests/test-getsockopt.c     int value;
value              47 maint/gnulib/tests/test-getsockopt.c     socklen_t value_len = sizeof (value);
value              51 maint/gnulib/tests/test-getsockopt.c     ASSERT (getsockopt (99, SOL_SOCKET, SO_REUSEADDR, &value, &value_len)
value              67 maint/gnulib/tests/test-hash_map.c   const void *value;
value              99 maint/gnulib/tests/test-hash_map.c       pairs_of_map1[i].value = value1;
value             101 maint/gnulib/tests/test-hash_map.c       pairs_of_map2[i].value = value2;
value             116 maint/gnulib/tests/test-hash_map.c       ASSERT (pairs_of_map1[i].value == pairs_of_map2[i].value);
value             158 maint/gnulib/tests/test-hash_map.c         const char *value = RANDOM_OBJECT ();
value             159 maint/gnulib/tests/test-hash_map.c         ASSERT (gl_map_nx_put (map1, key, value) == gl_map_nx_put (map2, key, value));
value             177 maint/gnulib/tests/test-hash_map.c               const char *value = RANDOM_OBJECT ();
value             178 maint/gnulib/tests/test-hash_map.c               ASSERT (gl_map_nx_put (map1, key, value) == gl_map_nx_put (map2, key, value));
value              36 maint/gnulib/tests/test-ioctl.c     int value;
value              38 maint/gnulib/tests/test-ioctl.c     ASSERT (ioctl (-1, FIONREAD, &value) == -1);
value              42 maint/gnulib/tests/test-ioctl.c     int value;
value              45 maint/gnulib/tests/test-ioctl.c     ASSERT (ioctl (99, FIONREAD, &value) == -1);
value              64 maint/gnulib/tests/test-isfinite.c     typedef union { float value; unsigned int word[NWORDS]; } memory_float;
value              66 maint/gnulib/tests/test-isfinite.c     m.value = zerof / zerof;
value              77 maint/gnulib/tests/test-isfinite.c     ASSERT (!isfinite (m.value));
value             108 maint/gnulib/tests/test-isfinite.c     typedef union { double value; unsigned int word[NWORDS]; } memory_double;
value             110 maint/gnulib/tests/test-isfinite.c     m.value = zerod / zerod;
value             119 maint/gnulib/tests/test-isfinite.c     ASSERT (!isfinite (m.value));
value             130 maint/gnulib/tests/test-isfinite.c   typedef union { unsigned int word[NWORDS]; long double value; }
value             165 maint/gnulib/tests/test-isfinite.c     m.value = zerol / zerol;
value             174 maint/gnulib/tests/test-isfinite.c     ASSERT (!isfinite (m.value));
value             194 maint/gnulib/tests/test-isfinite.c     ASSERT (!isfinite (x.value));
value             200 maint/gnulib/tests/test-isfinite.c     ASSERT (!isfinite (x.value));
value             206 maint/gnulib/tests/test-isfinite.c     ASSERT (isfinite (x.value) || !isfinite (x.value));
value             211 maint/gnulib/tests/test-isfinite.c     ASSERT (isfinite (x.value) || !isfinite (x.value));
value             216 maint/gnulib/tests/test-isfinite.c     ASSERT (isfinite (x.value) || !isfinite (x.value));
value             221 maint/gnulib/tests/test-isfinite.c     ASSERT (isfinite (x.value) || !isfinite (x.value));
value             226 maint/gnulib/tests/test-isfinite.c     ASSERT (isfinite (x.value) || !isfinite (x.value));
value              66 maint/gnulib/tests/test-isinf.c     typedef union { float value; unsigned int word[NWORDS]; } memory_float;
value              68 maint/gnulib/tests/test-isinf.c     m.value = zerof / zerof;
value              79 maint/gnulib/tests/test-isinf.c     ASSERT (!isinf (m.value));
value             112 maint/gnulib/tests/test-isinf.c     typedef union { double value; unsigned int word[NWORDS]; } memory_double;
value             114 maint/gnulib/tests/test-isinf.c     m.value = zerod / zerod;
value             123 maint/gnulib/tests/test-isinf.c     ASSERT (!isinf (m.value));
value             134 maint/gnulib/tests/test-isinf.c   typedef union { unsigned int word[NWORDS]; long double value; }
value             171 maint/gnulib/tests/test-isinf.c     m.value = zerol / zerol;
value             180 maint/gnulib/tests/test-isinf.c     ASSERT (!isinf (m.value));
value             200 maint/gnulib/tests/test-isinf.c     ASSERT (!isinf (x.value));
value             206 maint/gnulib/tests/test-isinf.c     ASSERT (!isinf (x.value));
value             212 maint/gnulib/tests/test-isinf.c     ASSERT (isinf (x.value) || !isinf (x.value));
value             217 maint/gnulib/tests/test-isinf.c     ASSERT (isinf (x.value) || !isinf (x.value));
value             222 maint/gnulib/tests/test-isinf.c     ASSERT (isinf (x.value) || !isinf (x.value));
value             227 maint/gnulib/tests/test-isinf.c     ASSERT (isinf (x.value) || !isinf (x.value));
value             232 maint/gnulib/tests/test-isinf.c     ASSERT (isinf (x.value) || !isinf (x.value));
value              59 maint/gnulib/tests/test-isnan.c     typedef union { float value; unsigned int word[NWORDSF]; } memory_float;
value              61 maint/gnulib/tests/test-isnan.c     m.value = NaNf ();
value              72 maint/gnulib/tests/test-isnan.c     ASSERT (isnan (m.value));
value              99 maint/gnulib/tests/test-isnan.c     typedef union { double value; unsigned int word[NWORDSD]; } memory_double;
value             101 maint/gnulib/tests/test-isnan.c     m.value = NaNd ();
value             110 maint/gnulib/tests/test-isnan.c     ASSERT (isnan (m.value));
value             120 maint/gnulib/tests/test-isnan.c   typedef union { unsigned int word[NWORDSL]; long double value; }
value             152 maint/gnulib/tests/test-isnan.c     m.value = NaNl ();
value             161 maint/gnulib/tests/test-isnan.c     ASSERT (isnan (m.value));
value             181 maint/gnulib/tests/test-isnan.c     ASSERT (isnan (x.value));
value             187 maint/gnulib/tests/test-isnan.c     ASSERT (isnan (x.value));
value             193 maint/gnulib/tests/test-isnan.c     ASSERT (isnan (x.value) || !isnan (x.value));
value             198 maint/gnulib/tests/test-isnan.c     ASSERT (isnan (x.value) || !isnan (x.value));
value             203 maint/gnulib/tests/test-isnan.c     ASSERT (isnan (x.value) || !isnan (x.value));
value             208 maint/gnulib/tests/test-isnan.c     ASSERT (isnan (x.value) || !isnan (x.value));
value             213 maint/gnulib/tests/test-isnan.c     ASSERT (isnan (x.value) || !isnan (x.value));
value              48 maint/gnulib/tests/test-isnand.h     typedef union { double value; unsigned int word[NWORDS]; } memory_double;
value              50 maint/gnulib/tests/test-isnand.h     m.value = NaNd ();
value              59 maint/gnulib/tests/test-isnand.h     ASSERT (isnand (m.value));
value              48 maint/gnulib/tests/test-isnanf.h     typedef union { float value; unsigned int word[NWORDS]; } memory_float;
value              50 maint/gnulib/tests/test-isnanf.h     m.value = NaNf ();
value              61 maint/gnulib/tests/test-isnanf.h     ASSERT (isnanf (m.value));
value              32 maint/gnulib/tests/test-isnanl.h   typedef union { unsigned int word[NWORDS]; long double value; }
value              64 maint/gnulib/tests/test-isnanl.h     m.value = NaNl ();
value              73 maint/gnulib/tests/test-isnanl.h     ASSERT (isnanl (m.value));
value              93 maint/gnulib/tests/test-isnanl.h     ASSERT (isnanl (x.value));
value              99 maint/gnulib/tests/test-isnanl.h     ASSERT (isnanl (x.value));
value             105 maint/gnulib/tests/test-isnanl.h     ASSERT (isnanl (x.value) || !isnanl (x.value));
value             110 maint/gnulib/tests/test-isnanl.h     ASSERT (isnanl (x.value) || !isnanl (x.value));
value             115 maint/gnulib/tests/test-isnanl.h     ASSERT (isnanl (x.value) || !isnanl (x.value));
value             120 maint/gnulib/tests/test-isnanl.h     ASSERT (isnanl (x.value) || !isnanl (x.value));
value             125 maint/gnulib/tests/test-isnanl.h     ASSERT (isnanl (x.value) || !isnanl (x.value));
value              67 maint/gnulib/tests/test-linkedhash_map.c   const void *value;
value              99 maint/gnulib/tests/test-linkedhash_map.c       pairs_of_map1[i].value = value1;
value             101 maint/gnulib/tests/test-linkedhash_map.c       pairs_of_map2[i].value = value2;
value             116 maint/gnulib/tests/test-linkedhash_map.c       ASSERT (pairs_of_map1[i].value == pairs_of_map2[i].value);
value             158 maint/gnulib/tests/test-linkedhash_map.c         const char *value = RANDOM_OBJECT ();
value             159 maint/gnulib/tests/test-linkedhash_map.c         ASSERT (gl_map_nx_put (map1, key, value) == gl_map_nx_put (map2, key, value));
value             177 maint/gnulib/tests/test-linkedhash_map.c               const char *value = RANDOM_OBJECT ();
value             178 maint/gnulib/tests/test-linkedhash_map.c               ASSERT (gl_map_nx_put (map1, key, value) == gl_map_nx_put (map2, key, value));
value             152 maint/gnulib/tests/test-lock.c       int i1, i2, value;
value             160 maint/gnulib/tests/test-lock.c       value = ((unsigned int) rand () >> 3) % 10;
value             161 maint/gnulib/tests/test-lock.c       account[i1] += value;
value             162 maint/gnulib/tests/test-lock.c       account[i2] -= value;
value             243 maint/gnulib/tests/test-lock.c       int i1, i2, value;
value             251 maint/gnulib/tests/test-lock.c       value = ((unsigned int) rand () >> 3) % 10;
value             252 maint/gnulib/tests/test-lock.c       account[i1] += value;
value             253 maint/gnulib/tests/test-lock.c       account[i2] -= value;
value             326 maint/gnulib/tests/test-lock.c   int i1, i2, value;
value             334 maint/gnulib/tests/test-lock.c   value = ((unsigned int) rand () >> 3) % 10;
value             335 maint/gnulib/tests/test-lock.c   account[i1] += value;
value             336 maint/gnulib/tests/test-lock.c   account[i2] -= value;
value             127 maint/gnulib/tests/test-mtx.c       int i1, i2, value;
value             135 maint/gnulib/tests/test-mtx.c       value = ((unsigned int) rand () >> 3) % 10;
value             136 maint/gnulib/tests/test-mtx.c       account[i1] += value;
value             137 maint/gnulib/tests/test-mtx.c       account[i2] -= value;
value             216 maint/gnulib/tests/test-mtx.c   int i1, i2, value;
value             224 maint/gnulib/tests/test-mtx.c   value = ((unsigned int) rand () >> 3) % 10;
value             225 maint/gnulib/tests/test-mtx.c   account[i1] += value;
value             226 maint/gnulib/tests/test-mtx.c   account[i2] -= value;
value              71 maint/gnulib/tests/test-nl_langinfo-mt.c       const char *value = nl_langinfo (CODESET);
value              72 maint/gnulib/tests/test-nl_langinfo-mt.c       if (strcmp (expected1, value) != 0)
value              89 maint/gnulib/tests/test-nl_langinfo-mt.c       const char *value = nl_langinfo (PM_STR);
value              90 maint/gnulib/tests/test-nl_langinfo-mt.c       if (strcmp (expected2, value) != 0)
value             107 maint/gnulib/tests/test-nl_langinfo-mt.c       const char *value = nl_langinfo (DAY_2);
value             108 maint/gnulib/tests/test-nl_langinfo-mt.c       if (strcmp (expected3, value) != 0)
value             125 maint/gnulib/tests/test-nl_langinfo-mt.c       const char *value = nl_langinfo (ALTMON_2);
value             126 maint/gnulib/tests/test-nl_langinfo-mt.c       if (strcmp (expected4, value) != 0)
value             143 maint/gnulib/tests/test-nl_langinfo-mt.c       const char *value = nl_langinfo (CRNCYSTR);
value             144 maint/gnulib/tests/test-nl_langinfo-mt.c       if (strcmp (expected5, value) != 0)
value             161 maint/gnulib/tests/test-nl_langinfo-mt.c       const char *value = nl_langinfo (RADIXCHAR);
value             162 maint/gnulib/tests/test-nl_langinfo-mt.c       if (strcmp (expected6, value) != 0)
value              97 maint/gnulib/tests/test-nonblocking-socket-main.c     int value;
value              98 maint/gnulib/tests/test-nonblocking-socket-main.c     socklen_t value_len = sizeof (value);
value              99 maint/gnulib/tests/test-nonblocking-socket-main.c     if (getsockopt (server_socket, SOL_SOCKET, SO_SNDBUF, &value, &value_len) >= 0)
value             100 maint/gnulib/tests/test-nonblocking-socket-main.c       fprintf (stderr, "SO_SNDBUF = %d\n", value);
value             105 maint/gnulib/tests/test-nonblocking-socket-main.c     int value;
value             106 maint/gnulib/tests/test-nonblocking-socket-main.c     socklen_t value_len = sizeof (value);
value             107 maint/gnulib/tests/test-nonblocking-socket-main.c     if (getsockopt (server_socket, SOL_SOCKET, SO_RCVBUF, &value, &value_len) >= 0)
value             108 maint/gnulib/tests/test-nonblocking-socket-main.c       fprintf (stderr, "SO_RCVBUF = %d\n", value);
value             127 maint/gnulib/tests/test-pthread-mutex.c       int i1, i2, value;
value             135 maint/gnulib/tests/test-pthread-mutex.c       value = ((unsigned int) rand () >> 3) % 10;
value             136 maint/gnulib/tests/test-pthread-mutex.c       account[i1] += value;
value             137 maint/gnulib/tests/test-pthread-mutex.c       account[i2] -= value;
value             215 maint/gnulib/tests/test-pthread-mutex.c   int i1, i2, value;
value             223 maint/gnulib/tests/test-pthread-mutex.c   value = ((unsigned int) rand () >> 3) % 10;
value             224 maint/gnulib/tests/test-pthread-mutex.c   account[i1] += value;
value             225 maint/gnulib/tests/test-pthread-mutex.c   account[i2] -= value;
value             121 maint/gnulib/tests/test-pthread-rwlock.c       int i1, i2, value;
value             129 maint/gnulib/tests/test-pthread-rwlock.c       value = ((unsigned int) rand () >> 3) % 10;
value             130 maint/gnulib/tests/test-pthread-rwlock.c       account[i1] += value;
value             131 maint/gnulib/tests/test-pthread-rwlock.c       account[i2] -= value;
value             119 maint/gnulib/tests/test-pthread-spin.c       int i1, i2, value;
value             127 maint/gnulib/tests/test-pthread-spin.c       value = ((unsigned int) rand () >> 3) % 10;
value             128 maint/gnulib/tests/test-pthread-spin.c       account[i1] += value;
value             129 maint/gnulib/tests/test-pthread-spin.c       account[i2] -= value;
value             213 maint/gnulib/tests/test-pthread-tss.c inc_sum (uintptr_t value)
value             216 maint/gnulib/tests/test-pthread-tss.c   sum += value;
value             221 maint/gnulib/tests/test-pthread-tss.c destructor0 (void *value)
value             223 maint/gnulib/tests/test-pthread-tss.c   if ((((uintptr_t) value - 1) % 10) != 0)
value             225 maint/gnulib/tests/test-pthread-tss.c   inc_sum ((uintptr_t) value);
value             229 maint/gnulib/tests/test-pthread-tss.c destructor1 (void *value)
value             231 maint/gnulib/tests/test-pthread-tss.c   if ((((uintptr_t) value - 1) % 10) != 1)
value             233 maint/gnulib/tests/test-pthread-tss.c   inc_sum ((uintptr_t) value);
value             237 maint/gnulib/tests/test-pthread-tss.c destructor2 (void *value)
value             239 maint/gnulib/tests/test-pthread-tss.c   if ((((uintptr_t) value - 1) % 10) != 2)
value             241 maint/gnulib/tests/test-pthread-tss.c   inc_sum ((uintptr_t) value);
value             245 maint/gnulib/tests/test-pthread-tss.c destructor3 (void *value)
value             247 maint/gnulib/tests/test-pthread-tss.c   if ((((uintptr_t) value - 1) % 10) != 3)
value             249 maint/gnulib/tests/test-pthread-tss.c   inc_sum ((uintptr_t) value);
value             253 maint/gnulib/tests/test-pthread-tss.c destructor4 (void *value)
value             255 maint/gnulib/tests/test-pthread-tss.c   if ((((uintptr_t) value - 1) % 10) != 4)
value             257 maint/gnulib/tests/test-pthread-tss.c   inc_sum ((uintptr_t) value);
value             261 maint/gnulib/tests/test-pthread-tss.c destructor5 (void *value)
value             263 maint/gnulib/tests/test-pthread-tss.c   if ((((uintptr_t) value - 1) % 10) != 5)
value             265 maint/gnulib/tests/test-pthread-tss.c   inc_sum ((uintptr_t) value);
value             269 maint/gnulib/tests/test-pthread-tss.c destructor6 (void *value)
value             271 maint/gnulib/tests/test-pthread-tss.c   if ((((uintptr_t) value - 1) % 10) != 6)
value             273 maint/gnulib/tests/test-pthread-tss.c   inc_sum ((uintptr_t) value);
value             277 maint/gnulib/tests/test-pthread-tss.c destructor7 (void *value)
value             279 maint/gnulib/tests/test-pthread-tss.c   if ((((uintptr_t) value - 1) % 10) != 7)
value             281 maint/gnulib/tests/test-pthread-tss.c   inc_sum ((uintptr_t) value);
value             285 maint/gnulib/tests/test-pthread-tss.c destructor8 (void *value)
value             287 maint/gnulib/tests/test-pthread-tss.c   if ((((uintptr_t) value - 1) % 10) != 8)
value             289 maint/gnulib/tests/test-pthread-tss.c   inc_sum ((uintptr_t) value);
value             293 maint/gnulib/tests/test-pthread-tss.c destructor9 (void *value)
value             295 maint/gnulib/tests/test-pthread-tss.c   if ((((uintptr_t) value - 1) % 10) != 9)
value             297 maint/gnulib/tests/test-pthread-tss.c   inc_sum ((uintptr_t) value);
value             100 maint/gnulib/tests/test-rbtree_omap.c         const char *value = RANDOM_OBJECT ();
value             101 maint/gnulib/tests/test-rbtree_omap.c         ASSERT (gl_omap_nx_put (map1, key, value) == gl_omap_nx_put (map2, key, value));
value             119 maint/gnulib/tests/test-rbtree_omap.c               const char *value = RANDOM_OBJECT ();
value             120 maint/gnulib/tests/test-rbtree_omap.c               ASSERT (gl_omap_nx_put (map1, key, value) == gl_omap_nx_put (map2, key, value));
value              37 maint/gnulib/tests/test-setsockopt.c     int value = 1;
value              40 maint/gnulib/tests/test-setsockopt.c     ASSERT (setsockopt (-1, SOL_SOCKET, SO_REUSEADDR, &value, sizeof (value))
value              45 maint/gnulib/tests/test-setsockopt.c     int value = 1;
value              49 maint/gnulib/tests/test-setsockopt.c     ASSERT (setsockopt (99, SOL_SOCKET, SO_REUSEADDR, &value, sizeof (value))
value              65 maint/gnulib/tests/test-signbit.c     typedef union { float value; unsigned int word[NWORDS]; } memory_float;
value              67 maint/gnulib/tests/test-signbit.c     m.value = zerof / zerof;
value              78 maint/gnulib/tests/test-signbit.c     (void) signbit (m.value);
value             110 maint/gnulib/tests/test-signbit.c     typedef union { double value; unsigned int word[NWORDS]; } memory_double;
value             112 maint/gnulib/tests/test-signbit.c     m.value = zerod / zerod;
value             121 maint/gnulib/tests/test-signbit.c     (void) signbit (m.value);
value             153 maint/gnulib/tests/test-signbit.c     typedef union { long double value; unsigned int word[NWORDS]; } memory_long_double;
value             165 maint/gnulib/tests/test-signbit.c     m.value = zerol / zerol;
value             174 maint/gnulib/tests/test-signbit.c     (void) signbit (m.value);
value             439 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value             442 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%La %d", x.value, 33, 44, 55);
value             450 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value             453 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%La %d", x.value, 33, 44, 55);
value             461 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value             464 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%La %d", x.value, 33, 44, 55);
value             469 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value             472 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%La %d", x.value, 33, 44, 55);
value             477 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value             480 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%La %d", x.value, 33, 44, 55);
value             485 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value             488 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%La %d", x.value, 33, 44, 55);
value             493 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value             496 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%La %d", x.value, 33, 44, 55);
value             701 maint/gnulib/tests/test-snprintf-posix.h     static struct { double value; const char *string; } data[] =
value             782 maint/gnulib/tests/test-snprintf-posix.h           my_snprintf (result, sizeof (result), "%f", data[k].value);
value             937 maint/gnulib/tests/test-snprintf-posix.h     static struct { long double value; const char *string; } data[] =
value            1018 maint/gnulib/tests/test-snprintf-posix.h           my_snprintf (result, sizeof (result), "%Lf", data[k].value);
value            1072 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1075 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%Lf %d", x.value, 33, 44, 55);
value            1083 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1086 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%Lf %d", x.value, 33, 44, 55);
value            1094 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1097 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%Lf %d", x.value, 33, 44, 55);
value            1102 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1105 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%Lf %d", x.value, 33, 44, 55);
value            1110 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1113 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%Lf %d", x.value, 33, 44, 55);
value            1118 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1121 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%Lf %d", x.value, 33, 44, 55);
value            1126 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1129 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%Lf %d", x.value, 33, 44, 55);
value            1437 maint/gnulib/tests/test-snprintf-posix.h     static struct { double value; const char *string; } data[] =
value            1518 maint/gnulib/tests/test-snprintf-posix.h           my_snprintf (result, sizeof (result), "%e", data[k].value);
value            1704 maint/gnulib/tests/test-snprintf-posix.h     static struct { long double value; const char *string; } data[] =
value            1785 maint/gnulib/tests/test-snprintf-posix.h           my_snprintf (result, sizeof (result), "%Le", data[k].value);
value            1850 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1853 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%Le %d", x.value, 33, 44, 55);
value            1861 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1864 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%Le %d", x.value, 33, 44, 55);
value            1872 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1875 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%Le %d", x.value, 33, 44, 55);
value            1880 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1883 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%Le %d", x.value, 33, 44, 55);
value            1888 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1891 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%Le %d", x.value, 33, 44, 55);
value            1896 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1899 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%Le %d", x.value, 33, 44, 55);
value            1904 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1907 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%Le %d", x.value, 33, 44, 55);
value            2036 maint/gnulib/tests/test-snprintf-posix.h     static struct { double value; const char *string; } data[] =
value            2117 maint/gnulib/tests/test-snprintf-posix.h           my_snprintf (result, sizeof (result), "%g", data[k].value);
value            2291 maint/gnulib/tests/test-snprintf-posix.h     static struct { long double value; const char *string; } data[] =
value            2372 maint/gnulib/tests/test-snprintf-posix.h           my_snprintf (result, sizeof (result), "%Lg", data[k].value);
value            2435 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            2438 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%Lg %d", x.value, 33, 44, 55);
value            2446 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            2449 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%Lg %d", x.value, 33, 44, 55);
value            2457 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            2460 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%Lg %d", x.value, 33, 44, 55);
value            2465 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            2468 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%Lg %d", x.value, 33, 44, 55);
value            2473 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            2476 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%Lg %d", x.value, 33, 44, 55);
value            2481 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            2484 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%Lg %d", x.value, 33, 44, 55);
value            2489 maint/gnulib/tests/test-snprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            2492 maint/gnulib/tests/test-snprintf-posix.h       my_snprintf (result, sizeof (result), "%Lg %d", x.value, 33, 44, 55);
value             425 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value             428 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%La %d", x.value, 33, 44, 55);
value             436 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value             439 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%La %d", x.value, 33, 44, 55);
value             447 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value             450 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%La %d", x.value, 33, 44, 55);
value             455 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value             458 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%La %d", x.value, 33, 44, 55);
value             463 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value             466 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%La %d", x.value, 33, 44, 55);
value             471 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value             474 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%La %d", x.value, 33, 44, 55);
value             479 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value             482 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%La %d", x.value, 33, 44, 55);
value             687 maint/gnulib/tests/test-sprintf-posix.h     static struct { double value; const char *string; } data[] =
value             768 maint/gnulib/tests/test-sprintf-posix.h           my_sprintf (result, "%f", data[k].value);
value             923 maint/gnulib/tests/test-sprintf-posix.h     static struct { long double value; const char *string; } data[] =
value            1004 maint/gnulib/tests/test-sprintf-posix.h           my_sprintf (result, "%Lf", data[k].value);
value            1058 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1061 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%Lf %d", x.value, 33, 44, 55);
value            1069 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1072 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%Lf %d", x.value, 33, 44, 55);
value            1080 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1083 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%Lf %d", x.value, 33, 44, 55);
value            1088 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1091 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%Lf %d", x.value, 33, 44, 55);
value            1096 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1099 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%Lf %d", x.value, 33, 44, 55);
value            1104 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1107 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%Lf %d", x.value, 33, 44, 55);
value            1112 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1115 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%Lf %d", x.value, 33, 44, 55);
value            1423 maint/gnulib/tests/test-sprintf-posix.h     static struct { double value; const char *string; } data[] =
value            1504 maint/gnulib/tests/test-sprintf-posix.h           my_sprintf (result, "%e", data[k].value);
value            1690 maint/gnulib/tests/test-sprintf-posix.h     static struct { long double value; const char *string; } data[] =
value            1771 maint/gnulib/tests/test-sprintf-posix.h           my_sprintf (result, "%Le", data[k].value);
value            1836 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1839 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%Le %d", x.value, 33, 44, 55);
value            1847 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1850 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%Le %d", x.value, 33, 44, 55);
value            1858 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1861 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%Le %d", x.value, 33, 44, 55);
value            1866 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1869 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%Le %d", x.value, 33, 44, 55);
value            1874 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1877 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%Le %d", x.value, 33, 44, 55);
value            1882 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1885 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%Le %d", x.value, 33, 44, 55);
value            1890 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            1893 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%Le %d", x.value, 33, 44, 55);
value            2022 maint/gnulib/tests/test-sprintf-posix.h     static struct { double value; const char *string; } data[] =
value            2103 maint/gnulib/tests/test-sprintf-posix.h           my_sprintf (result, "%g", data[k].value);
value            2277 maint/gnulib/tests/test-sprintf-posix.h     static struct { long double value; const char *string; } data[] =
value            2358 maint/gnulib/tests/test-sprintf-posix.h           my_sprintf (result, "%Lg", data[k].value);
value            2421 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            2424 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%La %d", x.value, 33, 44, 55);
value            2432 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            2435 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%La %d", x.value, 33, 44, 55);
value            2443 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            2446 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%Lg %d", x.value, 33, 44, 55);
value            2451 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            2454 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%Lg %d", x.value, 33, 44, 55);
value            2459 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            2462 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%Lg %d", x.value, 33, 44, 55);
value            2467 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            2470 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%Lg %d", x.value, 33, 44, 55);
value            2475 maint/gnulib/tests/test-sprintf-posix.h     static union { unsigned int word[4]; long double value; } x =
value            2478 maint/gnulib/tests/test-sprintf-posix.h       my_sprintf (result, "%Lg %d", x.value, 33, 44, 55);
value             201 maint/gnulib/tests/test-tls.c inc_sum (uintptr_t value)
value             204 maint/gnulib/tests/test-tls.c   sum += value;
value             209 maint/gnulib/tests/test-tls.c destructor0 (void *value)
value             211 maint/gnulib/tests/test-tls.c   if ((((uintptr_t) value - 1) % 10) != 0)
value             213 maint/gnulib/tests/test-tls.c   inc_sum ((uintptr_t) value);
value             217 maint/gnulib/tests/test-tls.c destructor1 (void *value)
value             219 maint/gnulib/tests/test-tls.c   if ((((uintptr_t) value - 1) % 10) != 1)
value             221 maint/gnulib/tests/test-tls.c   inc_sum ((uintptr_t) value);
value             225 maint/gnulib/tests/test-tls.c destructor2 (void *value)
value             227 maint/gnulib/tests/test-tls.c   if ((((uintptr_t) value - 1) % 10) != 2)
value             229 maint/gnulib/tests/test-tls.c   inc_sum ((uintptr_t) value);
value             233 maint/gnulib/tests/test-tls.c destructor3 (void *value)
value             235 maint/gnulib/tests/test-tls.c   if ((((uintptr_t) value - 1) % 10) != 3)
value             237 maint/gnulib/tests/test-tls.c   inc_sum ((uintptr_t) value);
value             241 maint/gnulib/tests/test-tls.c destructor4 (void *value)
value             243 maint/gnulib/tests/test-tls.c   if ((((uintptr_t) value - 1) % 10) != 4)
value             245 maint/gnulib/tests/test-tls.c   inc_sum ((uintptr_t) value);
value             249 maint/gnulib/tests/test-tls.c destructor5 (void *value)
value             251 maint/gnulib/tests/test-tls.c   if ((((uintptr_t) value - 1) % 10) != 5)
value             253 maint/gnulib/tests/test-tls.c   inc_sum ((uintptr_t) value);
value             257 maint/gnulib/tests/test-tls.c destructor6 (void *value)
value             259 maint/gnulib/tests/test-tls.c   if ((((uintptr_t) value - 1) % 10) != 6)
value             261 maint/gnulib/tests/test-tls.c   inc_sum ((uintptr_t) value);
value             265 maint/gnulib/tests/test-tls.c destructor7 (void *value)
value             267 maint/gnulib/tests/test-tls.c   if ((((uintptr_t) value - 1) % 10) != 7)
value             269 maint/gnulib/tests/test-tls.c   inc_sum ((uintptr_t) value);
value             273 maint/gnulib/tests/test-tls.c destructor8 (void *value)
value             275 maint/gnulib/tests/test-tls.c   if ((((uintptr_t) value - 1) % 10) != 8)
value             277 maint/gnulib/tests/test-tls.c   inc_sum ((uintptr_t) value);
value             281 maint/gnulib/tests/test-tls.c destructor9 (void *value)
value             283 maint/gnulib/tests/test-tls.c   if ((((uintptr_t) value - 1) % 10) != 9)
value             285 maint/gnulib/tests/test-tls.c   inc_sum ((uintptr_t) value);
value             202 maint/gnulib/tests/test-tss.c inc_sum (uintptr_t value)
value             205 maint/gnulib/tests/test-tss.c   sum += value;
value             210 maint/gnulib/tests/test-tss.c destructor0 (void *value)
value             212 maint/gnulib/tests/test-tss.c   if ((((uintptr_t) value - 1) % 10) != 0)
value             214 maint/gnulib/tests/test-tss.c   inc_sum ((uintptr_t) value);
value             218 maint/gnulib/tests/test-tss.c destructor1 (void *value)
value             220 maint/gnulib/tests/test-tss.c   if ((((uintptr_t) value - 1) % 10) != 1)
value             222 maint/gnulib/tests/test-tss.c   inc_sum ((uintptr_t) value);
value             226 maint/gnulib/tests/test-tss.c destructor2 (void *value)
value             228 maint/gnulib/tests/test-tss.c   if ((((uintptr_t) value - 1) % 10) != 2)
value             230 maint/gnulib/tests/test-tss.c   inc_sum ((uintptr_t) value);
value             234 maint/gnulib/tests/test-tss.c destructor3 (void *value)
value             236 maint/gnulib/tests/test-tss.c   if ((((uintptr_t) value - 1) % 10) != 3)
value             238 maint/gnulib/tests/test-tss.c   inc_sum ((uintptr_t) value);
value             242 maint/gnulib/tests/test-tss.c destructor4 (void *value)
value             244 maint/gnulib/tests/test-tss.c   if ((((uintptr_t) value - 1) % 10) != 4)
value             246 maint/gnulib/tests/test-tss.c   inc_sum ((uintptr_t) value);
value             250 maint/gnulib/tests/test-tss.c destructor5 (void *value)
value             252 maint/gnulib/tests/test-tss.c   if ((((uintptr_t) value - 1) % 10) != 5)
value             254 maint/gnulib/tests/test-tss.c   inc_sum ((uintptr_t) value);
value             258 maint/gnulib/tests/test-tss.c destructor6 (void *value)
value             260 maint/gnulib/tests/test-tss.c   if ((((uintptr_t) value - 1) % 10) != 6)
value             262 maint/gnulib/tests/test-tss.c   inc_sum ((uintptr_t) value);
value             266 maint/gnulib/tests/test-tss.c destructor7 (void *value)
value             268 maint/gnulib/tests/test-tss.c   if ((((uintptr_t) value - 1) % 10) != 7)
value             270 maint/gnulib/tests/test-tss.c   inc_sum ((uintptr_t) value);
value             274 maint/gnulib/tests/test-tss.c destructor8 (void *value)
value             276 maint/gnulib/tests/test-tss.c   if ((((uintptr_t) value - 1) % 10) != 8)
value             278 maint/gnulib/tests/test-tss.c   inc_sum ((uintptr_t) value);
value             282 maint/gnulib/tests/test-tss.c destructor9 (void *value)
value             284 maint/gnulib/tests/test-tss.c   if ((((uintptr_t) value - 1) % 10) != 9)
value             286 maint/gnulib/tests/test-tss.c   inc_sum ((uintptr_t) value);
value             566 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value             570 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%La %d", x.value, 33, 44, 55);
value             580 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value             584 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%La %d", x.value, 33, 44, 55);
value             594 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value             598 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%La %d", x.value, 33, 44, 55);
value             605 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value             609 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%La %d", x.value, 33, 44, 55);
value             616 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value             620 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%La %d", x.value, 33, 44, 55);
value             627 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value             631 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%La %d", x.value, 33, 44, 55);
value             638 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value             642 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%La %d", x.value, 33, 44, 55);
value             909 maint/gnulib/tests/test-vasnprintf-posix.c     static struct { double value; const char *string; } data[] =
value             991 maint/gnulib/tests/test-vasnprintf-posix.c           my_asnprintf (NULL, &length, "%f", data[k].value);
value            1208 maint/gnulib/tests/test-vasnprintf-posix.c     static struct { long double value; const char *string; } data[] =
value            1290 maint/gnulib/tests/test-vasnprintf-posix.c           my_asnprintf (NULL, &length, "%Lf", data[k].value);
value            1364 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            1368 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%Lf %d", x.value, 33, 44, 55);
value            1378 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            1382 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%Lf %d", x.value, 33, 44, 55);
value            1392 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            1396 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%Lf %d", x.value, 33, 44, 55);
value            1403 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            1407 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%Lf %d", x.value, 33, 44, 55);
value            1414 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            1418 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%Lf %d", x.value, 33, 44, 55);
value            1425 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            1429 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%Lf %d", x.value, 33, 44, 55);
value            1436 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            1440 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%Lf %d", x.value, 33, 44, 55);
value            1870 maint/gnulib/tests/test-vasnprintf-posix.c     static struct { double value; const char *string; } data[] =
value            1952 maint/gnulib/tests/test-vasnprintf-posix.c           my_asnprintf (NULL, &length, "%e", data[k].value);
value            2203 maint/gnulib/tests/test-vasnprintf-posix.c     static struct { long double value; const char *string; } data[] =
value            2285 maint/gnulib/tests/test-vasnprintf-posix.c           my_asnprintf (NULL, &length, "%Le", data[k].value);
value            2370 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            2374 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%Le %d", x.value, 33, 44, 55);
value            2382 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            2386 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%Le %d", x.value, 33, 44, 55);
value            2394 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            2398 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%Le %d", x.value, 33, 44, 55);
value            2405 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            2409 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%Le %d", x.value, 33, 44, 55);
value            2416 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            2420 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%Le %d", x.value, 33, 44, 55);
value            2427 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            2431 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%Le %d", x.value, 33, 44, 55);
value            2438 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            2442 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%Le %d", x.value, 33, 44, 55);
value            2618 maint/gnulib/tests/test-vasnprintf-posix.c     static struct { double value; const char *string; } data[] =
value            2700 maint/gnulib/tests/test-vasnprintf-posix.c           my_asnprintf (NULL, &length, "%g", data[k].value);
value            2939 maint/gnulib/tests/test-vasnprintf-posix.c     static struct { long double value; const char *string; } data[] =
value            3021 maint/gnulib/tests/test-vasnprintf-posix.c           my_asnprintf (NULL, &length, "%Lg", data[k].value);
value            3104 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            3108 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%Lg %d", x.value, 33, 44, 55);
value            3118 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            3122 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%Lg %d", x.value, 33, 44, 55);
value            3132 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            3136 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%Lg %d", x.value, 33, 44, 55);
value            3143 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            3147 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%Lg %d", x.value, 33, 44, 55);
value            3154 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            3158 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%Lg %d", x.value, 33, 44, 55);
value            3165 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            3169 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%Lg %d", x.value, 33, 44, 55);
value            3176 maint/gnulib/tests/test-vasnprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            3180 maint/gnulib/tests/test-vasnprintf-posix.c       my_asnprintf (NULL, &length, "%Lg %d", x.value, 33, 44, 55);
value             547 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value             551 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%La %d", x.value, 33, 44, 55);
value             561 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value             565 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%La %d", x.value, 33, 44, 55);
value             575 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value             579 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%La %d", x.value, 33, 44, 55);
value             586 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value             590 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%La %d", x.value, 33, 44, 55);
value             597 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value             601 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%La %d", x.value, 33, 44, 55);
value             608 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value             612 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%La %d", x.value, 33, 44, 55);
value             619 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value             623 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%La %d", x.value, 33, 44, 55);
value             890 maint/gnulib/tests/test-vasprintf-posix.c     static struct { double value; const char *string; } data[] =
value             972 maint/gnulib/tests/test-vasprintf-posix.c           my_asprintf (&result, "%f", data[k].value);
value            1189 maint/gnulib/tests/test-vasprintf-posix.c     static struct { long double value; const char *string; } data[] =
value            1271 maint/gnulib/tests/test-vasprintf-posix.c           my_asprintf (&result, "%Lf", data[k].value);
value            1345 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            1349 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%Lf %d", x.value, 33, 44, 55);
value            1359 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            1363 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%Lf %d", x.value, 33, 44, 55);
value            1373 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            1377 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%Lf %d", x.value, 33, 44, 55);
value            1384 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            1388 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%Lf %d", x.value, 33, 44, 55);
value            1395 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            1399 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%Lf %d", x.value, 33, 44, 55);
value            1406 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            1410 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%Lf %d", x.value, 33, 44, 55);
value            1417 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            1421 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%Lf %d", x.value, 33, 44, 55);
value            1851 maint/gnulib/tests/test-vasprintf-posix.c     static struct { double value; const char *string; } data[] =
value            1933 maint/gnulib/tests/test-vasprintf-posix.c           my_asprintf (&result, "%e", data[k].value);
value            2184 maint/gnulib/tests/test-vasprintf-posix.c     static struct { long double value; const char *string; } data[] =
value            2266 maint/gnulib/tests/test-vasprintf-posix.c           my_asprintf (&result, "%Le", data[k].value);
value            2351 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            2355 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%Le %d", x.value, 33, 44, 55);
value            2365 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            2369 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%Le %d", x.value, 33, 44, 55);
value            2379 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            2383 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%Le %d", x.value, 33, 44, 55);
value            2390 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            2394 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%Le %d", x.value, 33, 44, 55);
value            2401 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            2405 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%Le %d", x.value, 33, 44, 55);
value            2412 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            2416 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%Le %d", x.value, 33, 44, 55);
value            2423 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            2427 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%Le %d", x.value, 33, 44, 55);
value            2603 maint/gnulib/tests/test-vasprintf-posix.c     static struct { double value; const char *string; } data[] =
value            2685 maint/gnulib/tests/test-vasprintf-posix.c           my_asprintf (&result, "%g", data[k].value);
value            2924 maint/gnulib/tests/test-vasprintf-posix.c     static struct { long double value; const char *string; } data[] =
value            3006 maint/gnulib/tests/test-vasprintf-posix.c           my_asprintf (&result, "%Lg", data[k].value);
value            3089 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            3093 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%Lg %d", x.value, 33, 44, 55);
value            3103 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            3107 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%Lg %d", x.value, 33, 44, 55);
value            3117 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            3121 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%Lg %d", x.value, 33, 44, 55);
value            3128 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            3132 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%Lg %d", x.value, 33, 44, 55);
value            3139 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            3143 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%Lg %d", x.value, 33, 44, 55);
value            3150 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            3154 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%Lg %d", x.value, 33, 44, 55);
value            3161 maint/gnulib/tests/test-vasprintf-posix.c     static union { unsigned int word[4]; long double value; } x =
value            3165 maint/gnulib/tests/test-vasprintf-posix.c       my_asprintf (&result, "%Lg %d", x.value, 33, 44, 55);
value              26 maint/gnulib/tests/unicase/test-mapping-part1.h typedef struct { ucs4_t ch; ucs4_t value; } pair_t;
value              30 maint/gnulib/tests/unicase/test-mapping-part2.h       ASSERT (MAP (c) == mapping[i].value);
value              25 maint/gnulib/tests/unictype/test-decdigit.c static const struct { unsigned int ch; int value; } mapping[] =
value              42 maint/gnulib/tests/unictype/test-decdigit.c       ASSERT (uc_decimal_value (c) == mapping[i].value);
value              25 maint/gnulib/tests/unictype/test-digit.c static const struct { unsigned int ch; int value; } mapping[] =
value              42 maint/gnulib/tests/unictype/test-digit.c       ASSERT (uc_digit_value (c) == mapping[i].value);
value              27 maint/gnulib/tests/unictype/test-joininggroup_of.c typedef struct { ucs4_t ch; int value; } pair_t;
value              45 maint/gnulib/tests/unictype/test-joininggroup_of.c       ASSERT (uc_joining_group (c) == mapping[i].value);
value              27 maint/gnulib/tests/unictype/test-joiningtype_of.c typedef struct { ucs4_t ch; int value; } pair_t;
value              46 maint/gnulib/tests/unictype/test-joiningtype_of.c       ASSERT (uc_joining_type (c) == mapping[i].value);
value              35 maint/gnulib/tests/unictype/test-numeric.c   uc_fraction_t value;
value              43 maint/gnulib/tests/unictype/test-numeric.c           value = uc_numeric_value (c);
value              44 maint/gnulib/tests/unictype/test-numeric.c           ASSERT (value.numerator == 0 && value.denominator == 0);
value              47 maint/gnulib/tests/unictype/test-numeric.c       value = uc_numeric_value (c);
value              48 maint/gnulib/tests/unictype/test-numeric.c       ASSERT (value.numerator == mapping[i].numerator
value              49 maint/gnulib/tests/unictype/test-numeric.c               && value.denominator == mapping[i].denominator);
value              54 maint/gnulib/tests/unictype/test-numeric.c       value = uc_numeric_value (c);
value              55 maint/gnulib/tests/unictype/test-numeric.c       ASSERT (value.numerator == 0 && value.denominator == 0);
value              54 tools/crm_attribute.c     char *value = va_arg(args, char *);
value              58 tools/crm_attribute.c         pcmk__formatted_printf(out, "%s\n", value);
value              64 tools/crm_attribute.c                   value ? value : "(null)");
value             771 tools/crm_resource.c     char *value = NULL;
value             773 tools/crm_resource.c     if (pcmk__scan_nvpair(optarg, &name, &value) != 2) {
value             779 tools/crm_resource.c     g_hash_table_replace(options.cmdline_params, name, value);
value            1596 tools/crm_resource.c             char *value = calloc(1, strlen(*s));
value            1597 tools/crm_resource.c             int rc = sscanf(*s, "%[^=]=%s", name, value);
value            1600 tools/crm_resource.c                 g_hash_table_replace(options.override_params, name, value);
value            1607 tools/crm_resource.c                 free(value);
value             138 tools/crm_resource_print.c     const char *value = NULL;
value             141 tools/crm_resource_print.c         value = g_hash_table_lookup(params, attr);
value             143 tools/crm_resource_print.c     if (value != NULL) {
value             145 tools/crm_resource_print.c         out->list_item(out, attr, "%s", value);
value             236 tools/crm_resource_print.c     const char *value = NULL;
value             239 tools/crm_resource_print.c         value = g_hash_table_lookup(params, attr);
value             241 tools/crm_resource_print.c     if (value != NULL) {
value             242 tools/crm_resource_print.c         pcmk__formatted_printf(out, "%s\n", value);
value             255 tools/crm_resource_print.c     const char *value = va_arg(args, const char *);
value             259 tools/crm_resource_print.c                        name, value);
value             262 tools/crm_resource_print.c                        rsc_name, name, value);
value             273 tools/crm_resource_print.c     const char *value = va_arg(args, const char *);
value             277 tools/crm_resource_print.c                                                    "value", value,
value             293 tools/crm_resource_print.c     const char *value = crm_element_value(rsc->xml, attr);
value             295 tools/crm_resource_print.c     if (value != NULL) {
value             297 tools/crm_resource_print.c         out->list_item(out, attr, "%s", value);
value             310 tools/crm_resource_print.c     const char *value = crm_element_value(rsc->xml, attr);
value             312 tools/crm_resource_print.c     if (value != NULL) {
value             313 tools/crm_resource_print.c         pcmk__formatted_printf(out, "%s\n", value);
value             341 tools/crm_resource_print.c         const char *value = NULL;
value             346 tools/crm_resource_print.c         while (g_hash_table_iter_next(&iter, (gpointer *) &name, (gpointer *) &value)) {
value             347 tools/crm_resource_print.c             out->message(out, "override", rsc_name, name, value);
value             414 tools/crm_resource_print.c         const char *value = NULL;
value             419 tools/crm_resource_print.c         while (g_hash_table_iter_next(&iter, (gpointer *) &name, (gpointer *) &value)) {
value             420 tools/crm_resource_print.c             out->message(out, "override", rsc_name, name, value);
value             107 tools/crm_resource_runtime.c                    const char *attr_id, const char *attr_name, char **value)
value             115 tools/crm_resource_runtime.c     if(value) {
value             116 tools/crm_resource_runtime.c         *value = NULL;
value             179 tools/crm_resource_runtime.c     } else if(value) {
value             180 tools/crm_resource_runtime.c         pcmk__str_update(value, crm_element_value(xml_search, attr));
value             944 tools/crm_resource_runtime.c     char *value = NULL;
value             951 tools/crm_resource_runtime.c         while (g_hash_table_iter_next(&iter, (gpointer *) & key, (gpointer *) & value)) {
value             952 tools/crm_resource_runtime.c             g_hash_table_insert(combined, strdup(key), strdup(value));
value             960 tools/crm_resource_runtime.c         while (g_hash_table_iter_next(&iter, (gpointer *) & key, (gpointer *) & value)) {
value             963 tools/crm_resource_runtime.c             g_hash_table_insert(combined, crm_name, strdup(value));
value            1215 tools/crm_resource_runtime.c         const char *value = g_hash_table_lookup(stop->meta, XML_ATTR_TIMEOUT);
value            1218 tools/crm_resource_runtime.c         if ((pcmk__scan_ll(value, &result_ll, -1LL) == pcmk_rc_ok)
value            1799 tools/crm_resource_runtime.c         char *value = NULL;
value            1803 tools/crm_resource_runtime.c                                       (gpointer *) &value)) {
value            1804 tools/crm_resource_runtime.c             g_hash_table_replace(params, strdup(name), strdup(value));
value             292 tools/crm_ticket.c         const char *value = NULL;
value             298 tools/crm_ticket.c         while (g_hash_table_iter_next(&iter, (void **)&name, (void **)&value)) {
value             306 tools/crm_ticket.c                 pcmk__scan_ll(value, &time_ll, 0);
value             309 tools/crm_ticket.c                 fprintf(stdout, "%s", value);
value             546 tools/crm_ticket.c     const char *value = NULL;
value             553 tools/crm_ticket.c     if (g_hash_table_lookup_extended(attr_set, "granted", NULL, (gpointer *) & value)) {
value             554 tools/crm_ticket.c         if (crm_is_true(value)) {
value             588 tools/crm_ticket.c     char *value = NULL;
value             621 tools/crm_ticket.c     while (g_hash_table_iter_next(&hash_iter, (gpointer *) & key, (gpointer *) & value)) {
value             622 tools/crm_ticket.c         crm_xml_add(ticket_state_xml, key, value);
value             626 tools/crm_ticket.c             && crm_is_true(value)) {
value             864 tools/crm_ticket.c         const char *value = NULL;
value             873 tools/crm_ticket.c         rc = get_ticket_state_attr(options.ticket_id, options.get_attr_name, &value, data_set);
value             875 tools/crm_ticket.c             fprintf(stdout, "%s\n", value);
value              83 tools/ipmiservicelogd.c                                           unsigned int raw_value, double value, void *cb_data,
value             349 tools/ipmiservicelogd.c                                double value, void *cb_data, ipmi_event_t * event)
value             275 tools/stonith_admin.c     char *value = NULL;
value             281 tools/stonith_admin.c     rc = pcmk__scan_nvpair(optarg, &name, &value);
value             288 tools/stonith_admin.c         crm_info("Got: '%s'='%s'", name, value);
value             289 tools/stonith_admin.c         options.params = stonith_key_value_add(options.params, name, value);
value             293 tools/stonith_admin.c     free(value);