| /netbsd-src/external/ibm-public/postfix/dist/src/tls/ |
| H A D | tls_client.c | 209 TLScontext->serverid, TLScontext->cache_type); in load_clnt_session() 216 if (TLScontext->cache_type == 0) in load_clnt_session() 224 if (tls_mgr_lookup(TLScontext->cache_type, TLScontext->serverid, in load_clnt_session() 231 TLScontext->serverid, TLScontext->cache_type); in load_clnt_session() 264 if (TLScontext->cache_type == 0) in new_client_session_cb() 271 TLScontext->serverid, TLScontext->cache_type); in new_client_session_cb() 278 tls_mgr_update(TLScontext->cache_type, TLScontext->serverid, in new_client_session_cb() 298 if (TLScontext->cache_type == 0 || TLScontext->serverid == 0) in uncache_session() 305 tls_mgr_delete(TLScontext->cache_type, TLScontext->serverid); in uncache_session() 823 if (tls_mgr_policy(props->cache_type, &cachable, in tls_client_init() [all …]
|
| H A D | tls_mgr.c | 221 int tls_mgr_policy(const char *cache_type, int *cachable, int *timeout) in tls_mgr_policy() argument 237 SEND_ATTR_STR(TLS_MGR_ATTR_CACHE_TYPE, cache_type), in tls_mgr_policy() 250 int tls_mgr_lookup(const char *cache_type, const char *cache_id, in tls_mgr_lookup() argument 267 SEND_ATTR_STR(TLS_MGR_ATTR_CACHE_TYPE, cache_type), in tls_mgr_lookup() 280 int tls_mgr_update(const char *cache_type, const char *cache_id, in tls_mgr_update() argument 297 SEND_ATTR_STR(TLS_MGR_ATTR_CACHE_TYPE, cache_type), in tls_mgr_update() 310 int tls_mgr_delete(const char *cache_type, const char *cache_id) in tls_mgr_delete() argument 326 SEND_ATTR_STR(TLS_MGR_ATTR_CACHE_TYPE, cache_type), in tls_mgr_delete()
|
| H A D | tls_server.c | 211 STR(cache_id), TLScontext->cache_type); in get_server_session_cb() 216 if (tls_mgr_lookup(TLScontext->cache_type, STR(cache_id), in get_server_session_cb() 222 TLScontext->cache_type); in get_server_session_cb() 245 if (TLScontext->cache_type == 0) in uncache_session() 253 STR(cache_id), TLScontext->cache_type); in uncache_session() 255 tls_mgr_delete(TLScontext->cache_type, STR(cache_id)); in uncache_session() 278 STR(cache_id), TLScontext->cache_type); in new_server_session_cb() 285 tls_mgr_update(TLScontext->cache_type, STR(cache_id), in new_server_session_cb() 521 if (tls_mgr_policy(props->cache_type, &cachable, in tls_server_init() 781 app_ctx->cache_type = mystrdup(props->cache_type); in tls_server_init() [all …]
|
| H A D | tls_proxy_server_scan.c | 96 VSTRING *cache_type = vstring_alloc(25); in tls_proxy_server_init_scan() local 120 RECV_ATTR_STR(TLS_ATTR_CACHE_TYPE, cache_type), in tls_proxy_server_init_scan() 141 props->cache_type = vstring_export(cache_type); in tls_proxy_server_init_scan() 171 myfree((void *) props->cache_type); in tls_proxy_server_init_free()
|
| H A D | tls_proxy_client_scan.c | 232 myfree((void *) props->cache_type); in tls_proxy_client_init_free() 256 VSTRING *cache_type = vstring_alloc(25); in tls_proxy_client_init_scan() local 279 RECV_ATTR_STR(TLS_ATTR_CACHE_TYPE, cache_type), in tls_proxy_client_init_scan() 294 props->cache_type = vstring_export(cache_type); in tls_proxy_client_init_scan()
|
| H A D | tls.h | 247 char *cache_type; /* tlsmgr(8) cache type if enabled */ member 315 char *cache_type; member 459 const char *cache_type; member 527 const char *cache_type; member
|
| H A D | tls_proxy_server_print.c | 81 STRING_OR_EMPTY(props->cache_type)), in tls_proxy_server_init_print()
|
| H A D | tls_misc.c | 1242 app_ctx->cache_type = 0; in tls_alloc_app_context() 1259 if (app_ctx->cache_type) in tls_free_app_context() 1260 myfree(app_ctx->cache_type); in tls_free_app_context() 1282 TLScontext->cache_type = 0; in tls_alloc_sess_context()
|
| H A D | tls_proxy_client_print.c | 157 STRING_OR_EMPTY(props->cache_type)), in tls_proxy_client_init_print()
|
| /netbsd-src/external/ibm-public/postfix/dist/src/tlsmgr/ |
| H A D | tlsmgr.c | 604 static VSTRING *cache_type = 0; in tlsmgr_service() local 626 cache_type = vstring_alloc(10); in tlsmgr_service() 644 RECV_ATTR_STR(TLS_MGR_ATTR_CACHE_TYPE, cache_type), in tlsmgr_service() 648 if (strcmp(ent->cache_label, STR(cache_type)) == 0) in tlsmgr_service() 652 STR(cache_type), TLS_MGR_REQ_LOOKUP); in tlsmgr_service() 678 RECV_ATTR_STR(TLS_MGR_ATTR_CACHE_TYPE, cache_type), in tlsmgr_service() 683 if (strcmp(ent->cache_label, STR(cache_type)) == 0) in tlsmgr_service() 687 STR(cache_type), TLS_MGR_REQ_UPDATE); in tlsmgr_service() 705 RECV_ATTR_STR(TLS_MGR_ATTR_CACHE_TYPE, cache_type), in tlsmgr_service() 709 if (strcmp(ent->cache_label, STR(cache_type)) == 0) in tlsmgr_service() [all …]
|
| /netbsd-src/external/ibm-public/postfix/dist/src/global/ |
| H A D | scache.c | 187 struct cache_type { struct 192 static struct cache_type cache_types[] = { argument 202 static void cache_type(ARGV *argv) in cache_type() function 204 struct cache_type *cp; in cache_type() 326 "cache_type", cache_type, 0,
|
| H A D | scache_multi.ref | 4 >>> cache_type multi
|
| H A D | scache_multi.in | 4 cache_type multi
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/amd/amdkfd/ |
| H A D | kfd_crat.c | 334 props->cache_type |= HSA_CACHE_TYPE_DATA; in kfd_parse_subtype_cache() 336 props->cache_type |= HSA_CACHE_TYPE_INSTRUCTION; in kfd_parse_subtype_cache() 338 props->cache_type |= HSA_CACHE_TYPE_CPU; in kfd_parse_subtype_cache() 340 props->cache_type |= HSA_CACHE_TYPE_HSACU; in kfd_parse_subtype_cache() 555 int cache_type, unsigned int cu_processor_id, in fill_in_pcache() argument 568 ((1 << pcache_info[cache_type].num_cu_shared) - 1); in fill_in_pcache() 579 pcache->flags = pcache_info[cache_type].flags; in fill_in_pcache() 582 pcache->cache_level = pcache_info[cache_type].cache_level; in fill_in_pcache() 583 pcache->cache_size = pcache_info[cache_type].cache_size; in fill_in_pcache()
|
| H A D | kfd_topology.h | 129 uint32_t cache_type; member
|
| H A D | kfd_topology.c | 357 sysfs_show_32bit_prop(buffer, "type", cache->cache_type); in kfd_cache_show() 378 static struct kobj_type cache_type = { variable 701 ret = kobject_init_and_add(cache->kobj, &cache_type, in kfd_build_sysfs_node_entry()
|
| /netbsd-src/sys/arch/aarch64/aarch64/ |
| H A D | cpufunc.c | 77 cunit->cache_type = cachetype; in extract_cacheunit() 202 if ((cinfo[0].icache.cache_type == CACHE_TYPE_VIVT || in aarch64_parsecacheinfo() 203 cinfo[0].icache.cache_type == CACHE_TYPE_VIPT) && in aarch64_parsecacheinfo() 264 switch (cunit->cache_type) { in prt_cache()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | pointer-query.h | 164 struct cache_type struct 203 cache_type var_cache;
|
| /netbsd-src/sys/arch/aarch64/include/ |
| H A D | cpu.h | 79 u_int cache_type; member
|
| /netbsd-src/sys/arch/arm/arm32/ |
| H A D | cpu.c | 631 wtnames[info->cache_type], in print_cache_info() 651 wtnames[info->cache_type], in print_cache_info()
|
| /netbsd-src/sys/arch/arm/include/ |
| H A D | cpu.h | 186 uint8_t cache_type; member
|
| /netbsd-src/sys/arch/arm/arm/ |
| H A D | cpufunc.c | 1428 arm_pcache.cache_type = CPU_CT_CTYPE_WB14; in get_cachetype_cp15() 1456 arm_pcache.cache_type = CPU_CT_CTYPE(ctype); in get_cachetype_cp15() 1567 arm_pcache.cache_type = cachetab[i].ct_pcache_type; in get_cachetype_table() 2892 arm_scache.cache_type = CPU_CT_CTYPE_WT; in pj4bv7_setup() 3522 arm_scache.cache_type = CPU_CT_CTYPE_WB2; in sheeva_setup() 3524 arm_scache.cache_type = CPU_CT_CTYPE_WT; in sheeva_setup()
|
| /netbsd-src/external/bsd/ntp/dist/tests/libntp/ |
| H A D | authkeys.c | 47 cache_type = 0; in setUp()
|
| /netbsd-src/sys/arch/arm/cortex/ |
| H A D | pl310.c | 267 info->cache_type = __SHIFTOUT(cfg, CACHE_TYPE_CTYPE); in arml2cc_init()
|
| /netbsd-src/external/ibm-public/postfix/dist/src/smtp/ |
| H A D | smtp.c | 1529 cache_type = LMTP_SMTP_SUFFIX(TLS_MGR_SCACHE), in pre_init()
|