Searched refs:event_io_map (Results 1 – 3 of 3) sorted by relevance
/external/libevent/ |
D | evmap.c | 109 HT_PROTOTYPE(event_io_map, event_map_entry, map_node, hashsocket, eqsocket) in HT_PROTOTYPE() argument 110 HT_GENERATE(event_io_map, event_map_entry, map_node, hashsocket, eqsocket, in HT_PROTOTYPE() 117 ent_ = HT_FIND(event_io_map, map, &key_); \ in HT_PROTOTYPE() 125 HT_FIND_OR_INSERT_(event_io_map, map_node, hashsocket, map, \ 141 void evmap_io_initmap_(struct event_io_map *ctx) 143 HT_INIT(event_io_map, ctx); 146 void evmap_io_clear_(struct event_io_map *ctx) in evmap_io_clear_() 149 for (ent = HT_START(event_io_map, ctx); ent; ent = next) { in evmap_io_clear_() 151 next = HT_NEXT_RMV(event_io_map, ctx, ent); in evmap_io_clear_() 154 HT_CLEAR(event_io_map, ctx); /* remove all storage held by the ctx. */ in evmap_io_clear_() [all …]
|
D | evmap-internal.h | 42 void evmap_io_initmap_(struct event_io_map* ctx); 49 void evmap_io_clear_(struct event_io_map* ctx); 91 void *evmap_io_get_fdinfo_(struct event_io_map *ctx, evutil_socket_t fd);
|
D | event-internal.h | 142 HT_HEAD(event_io_map, event_map_entry); 144 #define event_io_map event_signal_map macro 282 struct event_io_map io;
|