MCPcopy Create free account
hub / github.com/ClusterLabs/pacemaker / g_hash_table_iter_init

Function g_hash_table_iter_init

include/portability.h:120–128  ·  view source on GitHub ↗

Since: 2.16 */

Source from the content-addressed store, hash-verified

118
119/* Since: 2.16 */
120static inline void
121g_hash_table_iter_init(GHashTableIter * iter, GHashTable * hash_table)
122{
123 iter->hash = hash_table;
124 iter->nth = 0;
125 iter->lpc = 0;
126 iter->key = NULL;
127 iter->value = NULL;
128}
129
130static inline gboolean
131g_hash_table_iter_next(GHashTableIter * iter, gpointer * key, gpointer * value)

Callers 15

generate_resource_paramsFunction · 0.85
print_ticketFunction · 0.85
print_ticket_listFunction · 0.85
generate_paramsFunction · 0.85
send_cmd_complete_notifyFunction · 0.85
lrmd_rsc_execute_stonithFunction · 0.85
merge_duplicatesFunction · 0.85
stonith_fence_historyFunction · 0.85
device_has_duplicateFunction · 0.85

Calls

no outgoing calls

Tested by 1

generate_paramsFunction · 0.68