| /src/lib/libossaudio/ |
| oss_caps.c | 38 int props, caps; local 41 if (ioctl(fd, AUDIO_GETPROPS, &props) < 0) 50 nchannels = (props & AUDIO_PROP_PLAYBACK) ? 66 if (props & AUDIO_PROP_FULLDUPLEX) 68 if (props & AUDIO_PROP_MMAP) 70 if (props & AUDIO_PROP_CAPTURE) 72 if (props & AUDIO_PROP_PLAYBACK)
|
| /src/external/ibm-public/postfix/dist/src/tls/ |
| tls_proxy_server_print.c | 69 const TLS_SERVER_INIT_PROPS *props = (const TLS_SERVER_INIT_PROPS *) ptr; local 76 STRING_OR_EMPTY(props->log_param)), 78 STRING_OR_EMPTY(props->log_level)), 79 SEND_ATTR_INT(TLS_ATTR_VERIFYDEPTH, props->verifydepth), 81 STRING_OR_EMPTY(props->cache_type)), 82 SEND_ATTR_INT(TLS_ATTR_SET_SESSID, props->set_sessid), 84 STRING_OR_EMPTY(props->chain_files)), 86 STRING_OR_EMPTY(props->cert_file)), 88 STRING_OR_EMPTY(props->key_file)), 90 STRING_OR_EMPTY(props->dcert_file)) 122 const TLS_SERVER_START_PROPS *props = (const TLS_SERVER_START_PROPS *) ptr; local [all...] |
| tls_proxy_client_print.c | 146 const TLS_CLIENT_INIT_PROPS *props = (const TLS_CLIENT_INIT_PROPS *) ptr; local 156 STRING_OR_EMPTY(props->log_param)), 158 STRING_OR_EMPTY(props->log_level)), 159 SEND_ATTR_INT(TLS_ATTR_VERIFYDEPTH, props->verifydepth), 161 STRING_OR_EMPTY(props->cache_type)), 163 STRING_OR_EMPTY(props->chain_files)), 165 STRING_OR_EMPTY(props->cert_file)), 167 STRING_OR_EMPTY(props->key_file)), 169 STRING_OR_EMPTY(props->dcert_file)), 171 STRING_OR_EMPTY(props->dkey_file)) 311 const TLS_CLIENT_START_PROPS *props = (const TLS_CLIENT_START_PROPS *) ptr; local [all...] |
| tls_proxy_server_scan.c | 91 TLS_SERVER_INIT_PROPS *props local 92 = (TLS_SERVER_INIT_PROPS *) mymalloc(sizeof(*props)); 115 memset(props, 0, sizeof(*props)); 119 RECV_ATTR_INT(TLS_ATTR_VERIFYDEPTH, &props->verifydepth), 121 RECV_ATTR_INT(TLS_ATTR_SET_SESSID, &props->set_sessid), 135 RECV_ATTR_INT(TLS_ATTR_ASK_CCERT, &props->ask_ccert), 139 props->log_param = vstring_export(log_param); 140 props->log_level = vstring_export(log_level); 141 props->cache_type = vstring_export(cache_type) 194 TLS_SERVER_START_PROPS *props local [all...] |
| /src/sys/modules/panic/ |
| panic.c | 61 prop_dictionary_t props = opaque; local 65 if (props) 66 prop_dictionary_get_string(props, "how", &how);
|
| /src/usr.sbin/envstat/ |
| config_yacc.y | 76 device : STRING LBRACE props RBRACE 80 props : sensor label 81 | props sensor 83 | props devprop
|
| /src/external/cddl/osnet/dist/lib/pyzfs/common/ |
| userspace.py | 42 props = { variable 51 (field, isgroup) = props[prop] 108 (field, isgroup) = props[prop] 217 for prop in props.keys():
|
| /src/tests/modules/k_helper3/ |
| k_helper3.c | 62 prop_dictionary_t props; local 67 props = prop_dictionary_create(); 68 propsstr = prop_dictionary_externalize(props); 70 prop_object_release(props);
|
| /src/crypto/external/apache2/openssl/dist/crypto/ffc/ |
| ffc_backend.c | 102 const char *props = NULL; local 110 props = p1->data; 112 ossl_ffc_set_digest(ffc, prm->data, props);
|
| /src/crypto/external/bsd/openssl/dist/crypto/ffc/ |
| ffc_backend.c | 106 const char *props = NULL; local 114 props = p1->data; 116 if (!ossl_ffc_set_digest(ffc, prm->data, props))
|
| /src/external/public-domain/xz/dist/src/liblzma/common/ |
| microlzma_encoder.c | 20 uint8_t props; member in struct:__anon366 70 out[out_start] = (uint8_t)(~coder->props); 113 if (lzma_lzma_lclppb_encode(options, &coder->props))
|
| /src/tests/lib/libossaudio/ |
| t_ossaudio.c | 398 int caps, props, fmts; local 411 if (ioctl(fd, AUDIO_GETPROPS, &props) < 0) 415 !(props & AUDIO_PROP_FULLDUPLEX)); 418 !(props & AUDIO_PROP_MMAP)); 421 !(props & AUDIO_PROP_CAPTURE)); 424 !(props & AUDIO_PROP_PLAYBACK));
|
| /src/usr.bin/audiocfg/ |
| drvctl.c | 55 drvctl_get_properties(int fd, const char *devnode, prop_dictionary_t *props) 85 if (props) { 90 *props = prop_dictionary_copy(result_data); 112 prop_dictionary_t props = NULL; local 115 rv = drvctl_get_properties(fd, laa.l_childname[i], &props); 116 if (rv == false || props == NULL) 118 rv = prop_dictionary_get_string(props, 121 rv = prop_dictionary_get_uint32(props, 127 prop_object_release(props);
|
| /src/external/bsd/iscsi/dist/src/initiator/ |
| libkmod.c | 184 prop_dictionary_t props; local 188 props = prop_dictionary_create(); 190 propsstr = prop_dictionary_externalize(props); 207 prop_object_release(props);
|
| /src/sbin/gpt/ |
| backup.c | 210 prop_dictionary_t props, type_dict; local 216 props = prop_dictionary_create(); 217 PROP_ERR(props); 219 PROP_ERR(prop_dictionary_set_int(props, "sector_size", 241 rc = prop_dictionary_set_and_rel(props, "MBR", 249 rc = prop_dictionary_set_and_rel(props, "GPT_HDR", 256 rc = prop_dictionary_set_and_rel(props, "GPT_TBL", 263 propext = prop_dictionary_externalize(props); 265 prop_object_release(props); 278 if (props) [all...] |
| restore.c | 183 prop_dictionary_t props, gpt_dict, mbr_dict, type_dict; local 212 props = prop_dictionary_internalize_from_file( 214 if (props == NULL) { 219 propnum = prop_dictionary_get(props, "sector_size"); 223 prop_object_release(props); 227 gpt_dict = prop_dictionary_get(props, "GPT_HDR"); 235 prop_object_release(props); 253 type_dict = prop_dictionary_get(props, "GPT_TBL"); 306 type_dict = prop_dictionary_get(props, "MBR"); 386 prop_object_release(props); [all...] |
| /src/sbin/modload/ |
| main.c | 66 prop_dictionary_t ext_props, props; local 81 props = prop_dictionary_create(); 91 parse_param(props, optarg, parse_bool_param); 108 parse_param(props, optarg, parse_int_param); 121 parse_param(props, optarg, parse_string_param); 133 propsstr = prop_dictionary_externalize(props); 147 merge_dicts(ext_props, props); 177 prop_object_release(props); 183 parse_bool_param(prop_dictionary_t props, const char *name, 202 if (!prop_dictionary_set_bool(props, name, boolvalue) [all...] |
| /src/sys/arch/sparc64/sparc64/ |
| ofw_patch.c | 60 prop_dictionary_t props = device_properties(busdev); local 63 cfg = prop_dictionary_get(props, "i2c-child-devices"); 67 prop_dictionary_set(props, "i2c-child-devices", cfg); 68 prop_dictionary_set_bool(props, "i2c-indirect-config", false); 385 prop_dictionary_t props = device_properties(dev); local 386 prop_dictionary_set_uint8(props, "fan_div2", 0x55); 389 prop_dictionary_set_uint8(props,
|
| /src/sys/dev/ |
| midi_if.h | 39 int props; member in struct:midi_info
|
| /src/sys/external/bsd/drm2/dist/drm/amd/amdkfd/ |
| kfd_iommu.c | 345 struct kfd_perf_properties *props; local 353 props = kfd_alloc_struct(props); 354 if (!props) 356 strcpy(props->block_name, "iommu"); 357 props->max_concurrent = amd_iommu_pc_get_max_banks(0) * 359 list_add_tail(&props->list, &kdev->perf_props);
|
| /src/sys/external/bsd/drm2/dist/drm/i915/selftests/ |
| i915_perf.c | 26 struct perf_open_properties props = { local 44 if (i915_oa_stream_init(stream, ¶m, &props)) {
|
| /src/external/bsd/kyua-cli/dist/engine/ |
| test_case.cpp | 79 config::properties_map props; local 82 props = user_config.all_properties(F("test_suites.%s") % test_suite, 91 props["unprivileged-user"] = user.name; 98 props["has.cleanup"] = "true"; 100 props["has.cleanup"] = "false"; 102 return props;
|
| /src/sys/external/bsd/drm2/dist/drm/ |
| drm_blend.c | 266 static const struct drm_prop_enum_list props[] = { local 281 props, ARRAY_SIZE(props), 567 static const struct drm_prop_enum_list props[] = { local 587 for (i = 0; i < ARRAY_SIZE(props); i++) { 590 if (!(BIT(props[i].type) & supported_modes)) 593 ret = drm_property_add_enum(prop, props[i].type, 594 props[i].name);
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/ |
| nouveau_backlight.c | 88 int val = bd->props.brightness; 105 struct backlight_properties *props, 114 props->type = BACKLIGHT_RAW; 115 props->max_brightness = 31; 143 u32 val = (bd->props.brightness * div) / 100; 184 val = (bd->props.brightness * div) / 100; 204 struct backlight_properties *props, 220 props->type = BACKLIGHT_RAW; 221 props->max_brightness = 100; 234 struct backlight_properties props = {0} local [all...] |
| /src/sys/kern/ |
| sys_module.c | 62 char *props; local 84 props = kmem_alloc(propslen, KM_SLEEP); 85 error = copyinstr(ml_props, props, propslen, NULL); 89 dict = prop_dictionary_internalize(props); 96 props = NULL; 106 if (props != NULL) { 107 kmem_free(props, propslen);
|