| /netbsd-src/external/ibm-public/postfix/dist/src/tls/ |
| H A D | tls_proxy_server_scan.c | 91 TLS_SERVER_INIT_PROPS *props in tls_proxy_server_init_scan() local 92 = (TLS_SERVER_INIT_PROPS *) mymalloc(sizeof(*props)); in tls_proxy_server_init_scan() 115 memset(props, 0, sizeof(*props)); in tls_proxy_server_init_scan() 119 RECV_ATTR_INT(TLS_ATTR_VERIFYDEPTH, &props->verifydepth), in tls_proxy_server_init_scan() 121 RECV_ATTR_INT(TLS_ATTR_SET_SESSID, &props->set_sessid), in tls_proxy_server_init_scan() 135 RECV_ATTR_INT(TLS_ATTR_ASK_CCERT, &props->ask_ccert), in tls_proxy_server_init_scan() 139 props->log_param = vstring_export(log_param); in tls_proxy_server_init_scan() 140 props->log_level = vstring_export(log_level); in tls_proxy_server_init_scan() 141 props->cache_type = vstring_export(cache_type); in tls_proxy_server_init_scan() 142 props->chain_files = vstring_export(chain_files); in tls_proxy_server_init_scan() [all …]
|
| H A D | tls_proxy_client_scan.c | 228 void tls_proxy_client_init_free(TLS_CLIENT_INIT_PROPS *props) in tls_proxy_client_init_free() argument 230 myfree((void *) props->log_param); in tls_proxy_client_init_free() 231 myfree((void *) props->log_level); in tls_proxy_client_init_free() 232 myfree((void *) props->cache_type); in tls_proxy_client_init_free() 233 myfree((void *) props->chain_files); in tls_proxy_client_init_free() 234 myfree((void *) props->cert_file); in tls_proxy_client_init_free() 235 myfree((void *) props->key_file); in tls_proxy_client_init_free() 236 myfree((void *) props->dcert_file); in tls_proxy_client_init_free() 237 myfree((void *) props->dkey_file); in tls_proxy_client_init_free() 238 myfree((void *) props->eccert_file); in tls_proxy_client_init_free() [all …]
|
| H A D | tls_client.c | 311 const TLS_CLIENT_START_PROPS *props) in verify_extract_name() argument 373 "look for details earlier in the log", props->namaddr); in verify_extract_name() 380 const TLS_CLIENT_START_PROPS *props) in add_namechecks() argument 389 for (i = 0; i < props->matchargv->argc; ++i) { in add_namechecks() 390 const char *name = props->matchargv->argv[i]; in add_namechecks() 395 name = props->nexthop; in add_namechecks() 397 name = props->nexthop; in add_namechecks() 400 name = props->host; in add_namechecks() 492 const TLS_CLIENT_START_PROPS *props) in tls_auth_enable() argument 496 if (props->sni && *props->sni) { in tls_auth_enable() [all …]
|
| H A D | tls.h | 500 #define TLS_CLIENT_INIT_ARGS(props, a1, a2, a3, a4, a5, a6, a7, a8, a9, \ argument 502 (((props)->a1), ((props)->a2), ((props)->a3), \ 503 ((props)->a4), ((props)->a5), ((props)->a6), ((props)->a7), \ 504 ((props)->a8), ((props)->a9), ((props)->a10), ((props)->a11), \ 505 ((props)->a12), ((props)->a13), ((props)->a14), (props)) 507 #define TLS_CLIENT_INIT(props, a1, a2, a3, a4, a5, a6, a7, a8, a9, \ argument 509 tls_client_init(TLS_CLIENT_INIT_ARGS(props, a1, a2, a3, a4, a5, \ 512 #define TLS_CLIENT_START(props, a1, a2, a3, a4, a5, a6, a7, a8, a9, \ argument 514 tls_client_start((((props)->a1), ((props)->a2), ((props)->a3), \ 515 ((props)->a4), ((props)->a5), ((props)->a6), ((props)->a7), \ [all …]
|
| H A D | tls_proxy_server_print.c | 69 const TLS_SERVER_INIT_PROPS *props = (const TLS_SERVER_INIT_PROPS *) ptr; in tls_proxy_server_init_print() local 76 STRING_OR_EMPTY(props->log_param)), in tls_proxy_server_init_print() 78 STRING_OR_EMPTY(props->log_level)), in tls_proxy_server_init_print() 79 SEND_ATTR_INT(TLS_ATTR_VERIFYDEPTH, props->verifydepth), in tls_proxy_server_init_print() 81 STRING_OR_EMPTY(props->cache_type)), in tls_proxy_server_init_print() 82 SEND_ATTR_INT(TLS_ATTR_SET_SESSID, props->set_sessid), in tls_proxy_server_init_print() 84 STRING_OR_EMPTY(props->chain_files)), in tls_proxy_server_init_print() 86 STRING_OR_EMPTY(props->cert_file)), in tls_proxy_server_init_print() 88 STRING_OR_EMPTY(props->key_file)), in tls_proxy_server_init_print() 90 STRING_OR_EMPTY(props->dcert_file)), in tls_proxy_server_init_print() [all …]
|
| H A D | tls_proxy.h | 103 #define TLS_PROXY_CLIENT_INIT_PROPS(props, a1, a2, a3, a4, a5, a6, a7, a8, \ argument 105 (((props)->a1), ((props)->a2), ((props)->a3), \ 106 ((props)->a4), ((props)->a5), ((props)->a6), ((props)->a7), \ 107 ((props)->a8), ((props)->a9), ((props)->a10), ((props)->a11), \ 108 ((props)->a12), ((props)->a13), ((props)->a14)) 110 #define TLS_PROXY_CLIENT_START_PROPS(props, a1, a2, a3, a4, a5, a6, a7, a8, \ argument 112 (((props)->a1), ((props)->a2), ((props)->a3), \ 113 ((props)->a4), ((props)->a5), ((props)->a6), ((props)->a7), \ 114 ((props)->a8), ((props)->a9), ((props)->a10), ((props)->a11), \ 115 ((props)->a12), ((props)->a13), ((props)->a14))
|
| H A D | tls_proxy_client_print.c | 142 const TLS_CLIENT_INIT_PROPS *props = (const TLS_CLIENT_INIT_PROPS *) ptr; in tls_proxy_client_init_print() local 152 STRING_OR_EMPTY(props->log_param)), in tls_proxy_client_init_print() 154 STRING_OR_EMPTY(props->log_level)), in tls_proxy_client_init_print() 155 SEND_ATTR_INT(TLS_ATTR_VERIFYDEPTH, props->verifydepth), in tls_proxy_client_init_print() 157 STRING_OR_EMPTY(props->cache_type)), in tls_proxy_client_init_print() 159 STRING_OR_EMPTY(props->chain_files)), in tls_proxy_client_init_print() 161 STRING_OR_EMPTY(props->cert_file)), in tls_proxy_client_init_print() 163 STRING_OR_EMPTY(props->key_file)), in tls_proxy_client_init_print() 165 STRING_OR_EMPTY(props->dcert_file)), in tls_proxy_client_init_print() 167 STRING_OR_EMPTY(props->dkey_file)), in tls_proxy_client_init_print() [all …]
|
| H A D | tls_server.c | 390 TLS_APPL_STATE *tls_server_init(const TLS_SERVER_INIT_PROPS *props) in tls_server_init() argument 409 log_mask = tls_log_mask(props->log_param, props->log_level); in tls_server_init() 434 protomask = tls_proto_mask_lims(props->protocols, &min_proto, &max_proto); in tls_server_init() 438 props->protocols); in tls_server_init() 459 if (!tls_validate_digest(props->mdalg)) { in tls_server_init() 508 SSL_CTX_set_verify_depth(server_ctx, props->verifydepth + 1); in tls_server_init() 509 SSL_CTX_set_verify_depth(sni_ctx, props->verifydepth + 1); in tls_server_init() 521 if (tls_mgr_policy(props->cache_type, &cachable, in tls_server_init() 634 props->CAfile, props->CApath) < 0) { in tls_server_init() 662 props->chain_files, in tls_server_init() [all …]
|
| /netbsd-src/sys/external/isc/libsodium/dist/builds/ |
| H A D | Makefile.am | 4 msvc/properties/Common.props \ 5 msvc/properties/Debug.props \ 6 msvc/properties/DebugDEXE.props \ 7 msvc/properties/DebugDLL.props \ 8 msvc/properties/DebugLEXE.props \ 9 msvc/properties/DebugLIB.props \ 10 msvc/properties/DebugLTCG.props \ 11 msvc/properties/DebugSEXE.props \ 12 msvc/properties/DLL.props \ 13 msvc/properties/EXE.props \ [all …]
|
| H A D | Makefile.in | 293 msvc/properties/Common.props \ 294 msvc/properties/Debug.props \ 295 msvc/properties/DebugDEXE.props \ 296 msvc/properties/DebugDLL.props \ 297 msvc/properties/DebugLEXE.props \ 298 msvc/properties/DebugLIB.props \ 299 msvc/properties/DebugLTCG.props \ 300 msvc/properties/DebugSEXE.props \ 301 msvc/properties/DLL.props \ 302 msvc/properties/EXE.props \ [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/ARCMigrate/ |
| H A D | TransProperties.cpp | 85 PropsTy &props = AtProps[Loc]; in collectProperties() local 86 props.push_back(Prop); in collectProperties() 120 PropsTy &props = findAtLoc->second; in doTransform() local 121 for (PropsTy::iterator I = props.begin(), E = props.end(); I != E; ++I) { in doTransform() 133 PropsTy &props = I->second; in doTransform() local 134 if (!getPropertyType(props)->isObjCRetainableType()) in doTransform() 136 if (hasIvarWithExplicitARCOwnership(props)) in doTransform() 140 rewriteProperty(props, atLoc); in doTransform() 146 PropsTy &props, SourceLocation atLoc, in doPropAction() argument 149 for (PropsTy::iterator I = props.begin(), E = props.end(); I != E; ++I) in doPropAction() [all …]
|
| /netbsd-src/external/bsd/kyua-cli/dist/engine/ |
| H A D | metadata.cpp | 509 config::tree props; member 515 props(props_) in impl() 527 return props == other.props; in operator ==() 535 engine::metadata::metadata(const utils::config::tree& props) : in metadata() argument 536 _pimpl(new impl(props)) in metadata() 553 return _pimpl->props.lookup< config::strings_set_node >( in allowed_architectures() 564 return _pimpl->props.lookup< config::strings_set_node >("allowed_platforms"); in allowed_platforms() 574 return _pimpl->props.all_properties("custom", true); in custom() 584 return _pimpl->props.lookup< config::string_node >("description"); in description() 594 return _pimpl->props.lookup< config::bool_node >("has_cleanup"); in has_cleanup() [all …]
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/amd/amdkfd/ |
| H A D | kfd_crat.c | 207 struct kfd_mem_properties *props; in find_subtype_mem() local 209 list_for_each_entry(props, &dev->mem_props, list) { in find_subtype_mem() 210 if (props->heap_type == heap_type in find_subtype_mem() 211 && props->flags == flags in find_subtype_mem() 212 && props->width == width) in find_subtype_mem() 213 return props; in find_subtype_mem() 224 struct kfd_mem_properties *props; in kfd_parse_subtype_mem() local 262 props = find_subtype_mem(heap_type, flags, width, dev); in kfd_parse_subtype_mem() 263 if (props) { in kfd_parse_subtype_mem() 264 props->size_in_bytes += size_in_bytes; in kfd_parse_subtype_mem() [all …]
|
| /netbsd-src/sbin/modload/ |
| H A D | main.c | 66 prop_dictionary_t ext_props, props; in main() local 81 props = prop_dictionary_create(); in main() 91 parse_param(props, optarg, parse_bool_param); in main() 108 parse_param(props, optarg, parse_int_param); in main() 121 parse_param(props, optarg, parse_string_param); in main() 133 propsstr = prop_dictionary_externalize(props); in main() 147 merge_dicts(ext_props, props); in main() 177 prop_object_release(props); in main() 183 parse_bool_param(prop_dictionary_t props, const char *name, in parse_bool_param() argument 202 if (!prop_dictionary_set_bool(props, name, boolvalue)) in parse_bool_param() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | opt-read.awk | 84 props = $2 85 name = opt_args_non_empty("Name", props) 86 type = opt_args_non_empty("Type", props) 87 unknown_error = opt_args("UnknownError", props) 96 props = $2 97 enum_name = opt_args_non_empty("Enum", props) 98 string = opt_args_non_empty("String", props) 99 value = opt_args_non_empty("Value", props) 100 set = opt_args("Set", props) 103 test_flag("Canonical", props, "| CL_ENUM_CANONICAL") \ [all …]
|
| /netbsd-src/external/bsd/wpa/dist/wpa_supplicant/examples/ |
| H A D | wpas-dbus-new-getall.py | 12 props = wpas_obj.GetAll("fi.w1.wpa_supplicant1", 15 print(props) 25 props = if_obj.GetAll("fi.w1.wpa_supplicant1.Interface", 29 print(props) 31 props = if_obj.GetAll("fi.w1.wpa_supplicant1.Interface.WPS", 35 print(props) 41 props = bss_obj.GetAll("fi.w1.wpa_supplicant1.BSS", 45 print(props) 51 props = net_obj.GetAll("fi.w1.wpa_supplicant1.Network", 55 print(props)
|
| /netbsd-src/tests/modules/ |
| H A D | t_modctl.c | 269 load(prop_dictionary_t props, bool fatal, const char *fmt, ...) in load() argument 277 if (props == NULL) { in load() 278 props = prop_dictionary_create(); in load() 279 propsstr = prop_dictionary_externalize(props); in load() 281 prop_object_release(props); in load() 283 propsstr = prop_dictionary_externalize(props); in load() 389 prop_dictionary_t props; in ATF_TC_BODY() local 392 props = prop_dictionary_create(); in ATF_TC_BODY() 393 load(props, true, "%s/k_helper/k_helper.kmod", in ATF_TC_BODY() 395 prop_object_release(props); in ATF_TC_BODY() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | opt-read.awk | 83 props = $2 84 name = opt_args("Name", props) 85 type = opt_args("Type", props) 86 unknown_error = opt_args("UnknownError", props) 95 props = $2 96 enum_name = opt_args("Enum", props) 97 string = opt_args("String", props) 98 value = opt_args("Value", props) 101 test_flag("Canonical", props, "| CL_ENUM_CANONICAL") \ 102 test_flag("DriverOnly", props, "| CL_ENUM_DRIVER_ONLY")
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv04/ |
| H A D | nouveau_dispnv04_overlay.c | 54 } props; member 255 if (property == nv_plane->props.colorkey) in nv_set_property() 257 else if (property == nv_plane->props.contrast) in nv_set_property() 259 else if (property == nv_plane->props.brightness) in nv_set_property() 261 else if (property == nv_plane->props.hue) in nv_set_property() 263 else if (property == nv_plane->props.saturation) in nv_set_property() 310 plane->props.colorkey = drm_property_create_range( in nv10_overlay_init() 312 plane->props.contrast = drm_property_create_range( in nv10_overlay_init() 314 plane->props.brightness = drm_property_create_range( in nv10_overlay_init() 316 plane->props.hue = drm_property_create_range( in nv10_overlay_init() [all …]
|
| /netbsd-src/lib/libossaudio/ |
| H A D | oss_caps.c | 38 int props, caps; in _oss_get_caps() local 41 if (ioctl(fd, AUDIO_GETPROPS, &props) < 0) in _oss_get_caps() 50 nchannels = (props & AUDIO_PROP_PLAYBACK) ? in _oss_get_caps() 66 if (props & AUDIO_PROP_FULLDUPLEX) in _oss_get_caps() 68 if (props & AUDIO_PROP_MMAP) in _oss_get_caps() 70 if (props & AUDIO_PROP_CAPTURE) in _oss_get_caps() 72 if (props & AUDIO_PROP_PLAYBACK) in _oss_get_caps()
|
| /netbsd-src/usr.bin/audiocfg/ |
| H A D | drvctl.c | 55 drvctl_get_properties(int fd, const char *devnode, prop_dictionary_t *props) in drvctl_get_properties() argument 85 if (props) { in drvctl_get_properties() 90 *props = prop_dictionary_copy(result_data); in drvctl_get_properties() 112 prop_dictionary_t props = NULL; in drvctl_search() local 115 rv = drvctl_get_properties(fd, laa.l_childname[i], &props); in drvctl_search() 116 if (rv == false || props == NULL) in drvctl_search() 118 rv = prop_dictionary_get_string(props, in drvctl_search() 121 rv = prop_dictionary_get_uint32(props, in drvctl_search() 127 prop_object_release(props); in drvctl_search()
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/nouveau/ |
| H A D | nouveau_backlight.c | 88 int val = bd->props.brightness; in nv40_set_intensity() 105 struct backlight_properties *props, in nv40_backlight_init() argument 114 props->type = BACKLIGHT_RAW; in nv40_backlight_init() 115 props->max_brightness = 31; in nv40_backlight_init() 143 u32 val = (bd->props.brightness * div) / 100; in nv50_set_intensity() 184 val = (bd->props.brightness * div) / 100; in nva3_set_intensity() 204 struct backlight_properties *props, in nv50_backlight_init() argument 220 props->type = BACKLIGHT_RAW; in nv50_backlight_init() 221 props->max_brightness = 100; in nv50_backlight_init() 234 struct backlight_properties props = {0}; in nouveau_backlight_init() local [all …]
|
| /netbsd-src/external/cddl/osnet/dist/lib/libzfs_core/common/ |
| H A D | libzfs_core.c | 221 lzc_create(const char *fsname, enum lzc_dataset_type type, nvlist_t *props) argument 226 if (props != NULL) 227 fnvlist_add_nvlist(args, "props", props); 235 nvlist_t *props) argument 240 if (props != NULL) 241 fnvlist_add_nvlist(args, "props", props); 263 lzc_snapshot(nvlist_t *snaps, nvlist_t *props, nvlist_t **errlist) argument 281 if (props != NULL) 282 fnvlist_add_nvlist(args, "props", props); 599 recv_impl(const char *snapname, nvlist_t *props, const char *origin, argument [all …]
|
| /netbsd-src/sys/dev/sysmon/ |
| H A D | sysmon_envsys_events.c | 120 uint32_t props, int crittype, int powertype) in sme_event_register() argument 150 " edata-flags 0x%04x\n", __func__, edata->units, props, in sme_event_register() 153 if (props) in sme_event_register() 158 if ((props & PROP_CAP_LIMITS) && in sme_event_register() 161 (props & PROP_VAL_LIMITS) || in sme_event_register() 163 props = 0; in sme_event_register() 165 if ((props & PROP_VAL_LIMITS) && (edata->upropset & PROP_CAP_LIMITS)) in sme_event_register() 166 props = 0; in sme_event_register() 190 if (props & edata->upropset & (PROP_CRITMAX | PROP_BATTMAX)) { in sme_event_register() 194 props &= ~(PROP_CRITMAX | PROP_BATTMAX); in sme_event_register() [all …]
|
| /netbsd-src/sbin/gpt/ |
| H A D | backup.c | 206 prop_dictionary_t props, type_dict; in backup() local 212 props = prop_dictionary_create(); in backup() 213 PROP_ERR(props); in backup() 215 PROP_ERR(prop_dictionary_set_int(props, "sector_size", in backup() 237 rc = prop_dictionary_set_and_rel(props, "MBR", in backup() 245 rc = prop_dictionary_set_and_rel(props, "GPT_HDR", in backup() 252 rc = prop_dictionary_set_and_rel(props, "GPT_TBL", in backup() 259 propext = prop_dictionary_externalize(props); in backup() 261 prop_object_release(props); in backup() 274 if (props) in backup() [all …]
|