/src/sys/external/isc/libsodium/dist/msvc-scripts/ |
Makefile.am | 4 sodium.props
|
/src/sys/external/isc/libsodium/dist/builds/ |
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...] |
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...] |
/src/lib/libossaudio/ |
oss_caps.c | 38 int props, caps; local in function:_oss_get_caps 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/sys/modules/examples/properties/ |
properties.c | 39 handle_props(prop_dictionary_t props) 44 if (props != NULL) { 45 str = prop_dictionary_get(props, "msg");
|
/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 in function:drvctl_search 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/sys/modules/panic/ |
panic.c | 61 prop_dictionary_t props = opaque; local in function:panic_modcmd 65 if (props) 66 prop_dictionary_get_string(props, "how", &how);
|
/src/sbin/modload/ |
main.c | 66 prop_dictionary_t ext_props, props; local in function:main 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/tests/modules/k_helper3/ |
k_helper3.c | 62 prop_dictionary_t props; local in function:load 67 props = prop_dictionary_create(); 68 propsstr = prop_dictionary_externalize(props); 70 prop_object_release(props);
|
/src/sys/external/bsd/drm2/dist/drm/amd/amdkfd/ |
kfd_crat.c | 207 struct kfd_mem_properties *props; local in function:find_subtype_mem 209 list_for_each_entry(props, &dev->mem_props, list) { 210 if (props->heap_type == heap_type 211 && props->flags == flags 212 && props->width == width) 213 return props; 224 struct kfd_mem_properties *props; local in function:kfd_parse_subtype_mem 262 props = find_subtype_mem(heap_type, flags, width, dev); 263 if (props) { 264 props->size_in_bytes += size_in_bytes 293 struct kfd_cache_properties *props; local in function:kfd_parse_subtype_cache 359 struct kfd_iolink_properties *props = NULL, *props2; local in function:kfd_parse_subtype_iolink [all...] |
kfd_iommu.c | 345 struct kfd_perf_properties *props; local in function:kfd_iommu_add_perf_counters 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/tests/modules/ |
t_modctl.c | 269 load(prop_dictionary_t props, bool fatal, const char *fmt, ...) 277 if (props == NULL) { 278 props = prop_dictionary_create(); 279 propsstr = prop_dictionary_externalize(props); 281 prop_object_release(props); 283 propsstr = prop_dictionary_externalize(props); 389 prop_dictionary_t props; local in function:ATF_TC_BODY 392 props = prop_dictionary_create(); 393 load(props, true, "%s/k_helper/k_helper.kmod", 395 prop_object_release(props); 458 prop_dictionary_t props; local in function:ATF_TC_BODY [all...] |
/src/usr.sbin/envstat/ |
config_yacc.y | 76 device : STRING LBRACE props RBRACE 80 props : sensor label 81 | props sensor 83 | props devprop
|
/src/sbin/gpt/ |
backup.c | 207 prop_dictionary_t props, type_dict; local in function:backup 213 props = prop_dictionary_create(); 214 PROP_ERR(props); 216 PROP_ERR(prop_dictionary_set_int(props, "sector_size", 238 rc = prop_dictionary_set_and_rel(props, "MBR", 246 rc = prop_dictionary_set_and_rel(props, "GPT_HDR", 253 rc = prop_dictionary_set_and_rel(props, "GPT_TBL", 260 propext = prop_dictionary_externalize(props); 262 prop_object_release(props); 275 if (props) [all...] |
/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 in function:nouveau_backlight_init [all...] |
/src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv04/ |
nouveau_dispnv04_overlay.c | 54 } props; member in struct:nouveau_plane 255 if (property == nv_plane->props.colorkey) 257 else if (property == nv_plane->props.contrast) 259 else if (property == nv_plane->props.brightness) 261 else if (property == nv_plane->props.hue) 263 else if (property == nv_plane->props.saturation) 310 plane->props.colorkey = drm_property_create_range( 312 plane->props.contrast = drm_property_create_range( 314 plane->props.brightness = drm_property_create_range( 316 plane->props.hue = drm_property_create_range [all...] |
/src/sys/dev/ |
midi_if.h | 39 int props; member in struct:midi_info
|
/src/tests/modules/k_helper/ |
k_helper.c | 127 k_helper_init(prop_dictionary_t props) 131 p = prop_dictionary_get(props, "prop_str"); 148 p = prop_dictionary_get(props, "prop_int"); 160 p = prop_dictionary_get(props, "prop_recurse");
|
/src/sys/arch/arm/marvell/ |
mvsocpmu.c | 155 sysmon_envsys_lim_t *limits, uint32_t *props) 163 *props = (PROP_WARNMIN | PROP_WARNMAX | PROP_DRIVER_LIMITS); 168 sysmon_envsys_lim_t *limits, uint32_t *props) 176 props = &sc->sc_defprops; 180 if (*props & PROP_WARNMIN) { 184 if (*props & PROP_WARNMAX) { 199 if (*props & (PROP_WARNMIN | PROP_WARNMAX)) 200 *props |= PROP_DRIVER_LIMITS; 202 *props &= ~PROP_DRIVER_LIMITS;
|
/src/sys/arch/sparc64/sparc64/ |
ofw_patch.c | 60 prop_dictionary_t props = device_properties(busdev); local in function:create_i2c_dict 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); 358 prop_dictionary_t props = device_properties(dev); local in function:set_hw_props 361 device_is_a(dev, "adm1026hm") && props != NULL) { 362 prop_dictionary_set_uint8(props, "fan_div2", 0x55); 363 prop_dictionary_set_bool(props, "multi_read", true); 369 prop_dictionary_t props = device_properties(dev); local in function:set_hw_props 371 device_is_a(dev, "adm1026hm") && props != NULL) [all...] |
/src/sys/external/bsd/drm2/dist/drm/ |
drm_blend.c | 266 static const struct drm_prop_enum_list props[] = { local in function:drm_plane_create_rotation_property 281 props, ARRAY_SIZE(props), 567 static const struct drm_prop_enum_list props[] = { local in function:drm_plane_create_blend_mode_property 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/dev/sysmon/ |
swsensor.c | 144 sysmon_envsys_lim_t *limits, uint32_t *props) 147 *props = PROP_CRITMIN | PROP_DRIVER_LIMITS; 153 sysmon_envsys_lim_t *limits, uint32_t *props) 158 props = &sw_sensor_defprops; 160 if (*props & PROP_CRITMIN) 168 if ((*props & PROP_LIMITS) == PROP_CRITMIN) 169 *props |= PROP_DRIVER_LIMITS; 171 *props &= ~PROP_DRIVER_LIMITS;
|
sysmon_envsys_events.c | 120 uint32_t props, int crittype, int powertype) 149 DPRINTF(("%s: units %d props 0x%04x upropset 0x%04x max_val %d" 150 " edata-flags 0x%04x\n", __func__, edata->units, props, 153 if (props) 158 if ((props & PROP_CAP_LIMITS) && 161 (props & PROP_VAL_LIMITS) || 163 props = 0; 165 if ((props & PROP_VAL_LIMITS) && (edata->upropset & PROP_CAP_LIMITS)) 166 props = 0; 190 if (props & edata->upropset & (PROP_CRITMAX | PROP_BATTMAX)) 508 uint32_t props; local in function:sme_event_drvadd 703 uint32_t props = 0; local in function:sme_update_limits [all...] |
/src/sys/dev/i2c/ |
sdtemp.c | 429 sysmon_envsys_lim_t *limits, uint32_t *props) 434 *props = 0; 440 *props |= PROP_WARNMIN; 444 *props |= PROP_WARNMAX; 448 *props |= PROP_CRITMAX; 451 if (*props != 0) 452 *props |= PROP_DRIVER_LIMITS; 458 sysmon_envsys_lim_t *limits, uint32_t *props) 465 props = &sc->sc_defprops; 470 if (*props & PROP_WARNMIN) [all...] |
adm1021.c | 493 sysmon_envsys_lim_t *limits, uint32_t *props) 499 *props &= ~(PROP_CRITMAX | PROP_CRITMIN); 512 *props |= PROP_CRITMAX; 527 *props |= PROP_CRITMIN; 543 sysmon_envsys_lim_t *limits, uint32_t *props) 549 *props &= ~(PROP_CRITMAX | PROP_CRITMIN); 562 *props |= PROP_CRITMAX; 581 *props |= PROP_CRITMIN; 608 sysmon_envsys_lim_t *limits, uint32_t *props) 614 *props &= ~(PROP_WARNMAX | PROP_CRITMAX | PROP_WARNMIN) [all...] |