| /netbsd-src/external/ibm-public/postfix/dist/src/util/ |
| H A D | htable.h | 27 typedef struct HTABLE { struct 33 } HTABLE; argument 35 extern HTABLE *htable_create(ssize_t); 36 extern HTABLE_INFO *htable_enter(HTABLE *, const char *, void *); 37 extern HTABLE_INFO *htable_locate(HTABLE *, const char *); 38 extern void *htable_find(HTABLE *, const char *); 39 extern void htable_delete(HTABLE *, const char *, void (*) (void *)); 40 extern void htable_free(HTABLE *, void (*) (void *)); 41 extern void htable_walk(HTABLE *, void (*) (HTABLE_INFO *, void *), void *); 42 extern HTABLE_INFO **htable_list(HTABLE *); [all …]
|
| H A D | htable.c | 180 static void htable_size(HTABLE *table, size_t size) in htable_size() 196 HTABLE *htable_create(ssize_t size) in htable_create() 198 HTABLE *table; in htable_create() 200 table = (HTABLE *) mymalloc(sizeof(HTABLE)); in htable_create() 208 static void htable_grow(HTABLE *table) in htable_grow() 229 HTABLE_INFO *htable_enter(HTABLE *table, const char *key, void *value) in htable_enter() 244 void *htable_find(HTABLE *table, const char *key) in htable_find() 259 HTABLE_INFO *htable_locate(HTABLE *table, const char *key) in htable_locate() 274 void htable_delete(HTABLE *table, const char *key, void (*free_fn) (void *)) in htable_delete() 304 void htable_free(HTABLE *table, void (*free_fn) (void *)) in htable_free() [all …]
|
| H A D | attr.h | 69 #define SEND_ATTR_HASH(val) ATTR_TYPE_HASH, CHECK_CPTR(ATTR, HTABLE, (val)) 79 #define RECV_ATTR_HASH(val) ATTR_TYPE_HASH, CHECK_PTR(ATTR, HTABLE, (val)) 95 CHECK_PTR_HELPER_DCL(ATTR, HTABLE); 99 CHECK_CPTR_HELPER_DCL(ATTR, HTABLE);
|
| H A D | listen.h | 35 extern int WARN_UNUSED_RESULT recv_pass_attr(int, HTABLE **, int, ssize_t); 37 extern int pass_accept_attr(int, HTABLE **);
|
| H A D | mac_expand.c | 265 static HTABLE *mac_exp_ext_table; 751 HTABLE *table = (HTABLE *) context; in lookup() 788 HTABLE *table; in main()
|
| H A D | attr_print_plain.c | 181 ht_info_list = htable_list(va_arg(ap, HTABLE *)); in attr_vprint_plain() 222 HTABLE *table = htable_create(1); in main()
|
| H A D | attr_scan0.c | 284 HTABLE *hash_table; in attr_vscan0() 335 hash_table = va_arg(ap, HTABLE *); in attr_vscan0() 532 HTABLE *table = htable_create(1); in main()
|
| H A D | attr_print0.c | 185 ht_info_list = htable_list(va_arg(ap, HTABLE *)); in attr_vprint0() 226 HTABLE *table = htable_create(1); in main()
|
| H A D | attr_scan64.c | 287 HTABLE *hash_table; in attr_vscan64() 338 hash_table = va_arg(ap, HTABLE *); in attr_vscan64() 601 HTABLE *table = htable_create(1); in main()
|
| H A D | attr_scan_plain.c | 300 HTABLE *hash_table; in attr_vscan_plain() 351 hash_table = va_arg(ap, HTABLE *); in attr_vscan_plain() 579 HTABLE *table = htable_create(1); in main()
|
| H A D | attr_print64.c | 223 ht_info_list = htable_list(va_arg(ap, HTABLE *)); in attr_vprint64() 267 HTABLE *table = htable_create(1); in main()
|
| H A D | recv_pass_attr.c | 64 int recv_pass_attr(int fd, HTABLE **attr, int timeout, ssize_t bufsize) in recv_pass_attr()
|
| H A D | nvtable.h | 22 typedef struct HTABLE NVTABLE;
|
| /netbsd-src/external/ibm-public/postfix/dist/src/local/ |
| H A D | forward.c | 98 static HTABLE *forward_dt; 222 HTABLE *table_snd; in forward_append() 237 if ((table_snd = (HTABLE *) htable_find(forward_dt, attr.delivered)) == 0) { in forward_append() 357 HTABLE *table_snd; in forward_finish() 375 table_snd = (HTABLE *) dt[0]->value; in forward_finish()
|
| /netbsd-src/external/ibm-public/postfix/dist/src/master/ |
| H A D | event_server.c | 377 HTABLE *attr = (HTABLE *) vstream_context(stream); in event_server_execute() 400 static void event_server_wakeup(int fd, HTABLE *attr) in event_server_wakeup() 474 event_server_wakeup(fd, (HTABLE *) 0); in event_server_accept_local() 486 HTABLE *attr = 0; in event_server_accept_pass() 549 event_server_wakeup(fd, (HTABLE *) 0); in event_server_accept_inet()
|
| H A D | multi_server.c | 260 static void (*multi_server_post_accept) (VSTREAM *, char *, char **, HTABLE *); 379 static void multi_server_wakeup(int fd, HTABLE *attr) in multi_server_wakeup() 458 multi_server_wakeup(fd, (HTABLE *) 0); in multi_server_accept_local() 470 HTABLE *attr = 0; in multi_server_accept_pass() 533 multi_server_wakeup(fd, (HTABLE *) 0); in multi_server_accept_inet()
|
| H A D | single_server.c | 277 static void single_server_wakeup(int fd, HTABLE *attr) in single_server_wakeup() 351 single_server_wakeup(fd, (HTABLE *) 0); in single_server_accept_local() 363 HTABLE *attr = 0; in single_server_accept_pass() 424 single_server_wakeup(fd, (HTABLE *) 0); in single_server_accept_inet()
|
| /netbsd-src/external/ibm-public/postfix/dist/src/milter/ |
| H A D | milter.h | 93 extern struct HTABLE *milter_macro_defaults_create(const char *); 112 struct HTABLE *macro_defaults; 137 struct HTABLE *);
|
| H A D | milter.c | 276 HTABLE *milter_macro_defaults_create(const char *macro_defaults) in milter_macro_defaults_create() 281 HTABLE *table = 0; in milter_macro_defaults_create() 655 HTABLE *macro_defaults) in milter_new() 862 #define NO_MACRO_DEFLTS ((HTABLE *) 0) in milter_receive()
|
| /netbsd-src/external/ibm-public/postfix/dist/src/qmgr/ |
| H A D | qmgr.h | 116 extern struct HTABLE *qmgr_transport_byname; /* transport by name */ 190 struct HTABLE *queue_byname; /* queues indexed by domain */ 192 struct HTABLE *job_byname; /* jobs indexed by queue id */ 422 struct HTABLE *peer_byname; /* message job peers, indexed by
|
| /netbsd-src/external/ibm-public/postfix/dist/src/showq/ |
| H A D | showq.c | 158 HTABLE *); 175 HTABLE *dup_filter = 0; in showq_report() 314 DSN_BUF *dsn_buf, HTABLE *dup_filter) in showq_reasons()
|
| /netbsd-src/external/ibm-public/postfix/dist/src/global/ |
| H A D | compat_level.c | 333 HTABLE *table = (HTABLE *) context; in lookup() 345 HTABLE *table; in test_expand()
|
| H A D | been_here.h | 27 struct HTABLE *table;
|
| /netbsd-src/external/ibm-public/postfix/dist/src/postconf/ |
| H A D | postconf.h | 93 #define PCF_PARAM_TABLE HTABLE 127 HTABLE *valid_names; /* null, or "valid" parameter names */
|
| H A D | postconf_user.c | 90 static HTABLE *pcf_rest_class_table; 321 static void pcf_scan_default_parameter_values(HTABLE *valid_params, in pcf_scan_default_parameter_values()
|