Symbol: dict
common/dist/zlib/examples/gzlog.c
612
ssize_t dict;
common/dist/zlib/examples/gzlog.c
631
dict = read(fd, buf, DICT);
common/dist/zlib/examples/gzlog.c
633
if (dict < 0) {
common/dist/zlib/examples/gzlog.c
637
if (dict)
common/dist/zlib/examples/gzlog.c
638
deflateSetDictionary(&strm, buf, (uint)dict);
common/dist/zlib/examples/zran.c
109
next->dict = out - beg > WINSIZE ? WINSIZE : (unsigned)(out - beg);
common/dist/zlib/examples/zran.c
110
next->window = malloc(next->dict);
common/dist/zlib/examples/zran.c
114
unsigned copy = recent > next->dict ? next->dict : recent;
common/dist/zlib/examples/zran.c
115
memcpy(next->window + next->dict - copy, window + recent - copy, copy);
common/dist/zlib/examples/zran.c
116
copy = next->dict - copy;
common/dist/zlib/examples/zran.c
373
inflateSetDictionary(&index->strm, point->window, point->dict);
common/dist/zlib/examples/zran.h
14
unsigned dict; // number of bytes in window to use as a dictionary
common/dist/zlib/test/infcover.c
392
unsigned char dict[257];
common/dist/zlib/test/infcover.c
425
memset(dict, 0, 257);
common/dist/zlib/test/infcover.c
426
ret = inflateSetDictionary(&strm, dict, 257);
common/lib/libprop/prop_dictionary.c
1292
prop_dictionary_t dict;
common/lib/libprop/prop_dictionary.c
1299
dict = prop_dictionary_create();
common/lib/libprop/prop_dictionary.c
1300
if (dict == NULL)
common/lib/libprop/prop_dictionary.c
1304
*obj = dict;
common/lib/libprop/prop_dictionary.c
1310
prop_object_release(dict);
common/lib/libprop/prop_dictionary.c
1314
*obj = dict;
common/lib/libprop/prop_dictionary.c
1326
prop_dictionary_t dict = *obj;
common/lib/libprop/prop_dictionary.c
1332
prop_dictionary_set(dict, tmpkey, child) == false) {
common/lib/libprop/prop_dictionary.c
1336
prop_object_release(dict);
common/lib/libprop/prop_dictionary.c
1376
prop_dictionary_t dict = *obj;
common/lib/libprop/prop_dictionary.c
1462
prop_object_release(dict);
common/lib/libprop/prop_dictionary.c
1483
prop_dictionary_externalize_to_file(prop_dictionary_t dict, const char *fname)
common/lib/libprop/prop_dictionary.c
1485
return _prop_object_externalize_to_file(&dict->pd_obj, fname,
common/lib/libprop/prop_dictionary_util.c
113
prop_dictionary_set_signed_number(prop_dictionary_t dict, const char *key,
common/lib/libprop/prop_dictionary_util.c
116
return prop_dictionary_set_and_rel(dict, key,
common/lib/libprop/prop_dictionary_util.c
121
prop_dictionary_set_unsigned_number(prop_dictionary_t dict, const char *key,
common/lib/libprop/prop_dictionary_util.c
125
return prop_dictionary_set_and_rel(dict, key,
common/lib/libprop/prop_dictionary_util.c
131
prop_dictionary_set_ ## name (prop_dictionary_t dict, \
common/lib/libprop/prop_dictionary_util.c
136
return prop_dictionary_set_ ## which ## _number(dict, key, val);\
common/lib/libprop/prop_dictionary_util.c
169
prop_dictionary_get_string(prop_dictionary_t dict, const char *key,
common/lib/libprop/prop_dictionary_util.c
175
str = prop_dictionary_get(dict, key);
common/lib/libprop/prop_dictionary_util.c
188
prop_dictionary_set_string(prop_dictionary_t dict, const char *key,
common/lib/libprop/prop_dictionary_util.c
191
return prop_dictionary_set_and_rel(dict, key,
common/lib/libprop/prop_dictionary_util.c
196
prop_dictionary_set_string_nocopy(prop_dictionary_t dict,
common/lib/libprop/prop_dictionary_util.c
200
return prop_dictionary_set_and_rel(dict, key,
common/lib/libprop/prop_dictionary_util.c
205
prop_dictionary_get_data(prop_dictionary_t dict, const char *key,
common/lib/libprop/prop_dictionary_util.c
211
data = prop_dictionary_get(dict, key);
common/lib/libprop/prop_dictionary_util.c
226
prop_dictionary_set_data(prop_dictionary_t dict, const char *key,
common/lib/libprop/prop_dictionary_util.c
229
return prop_dictionary_set_and_rel(dict, key,
common/lib/libprop/prop_dictionary_util.c
234
prop_dictionary_set_data_nocopy(prop_dictionary_t dict, const char *key,
common/lib/libprop/prop_dictionary_util.c
237
return prop_dictionary_set_and_rel(dict, key,
common/lib/libprop/prop_dictionary_util.c
245
prop_dictionary_get_cstring(prop_dictionary_t dict,
common/lib/libprop/prop_dictionary_util.c
254
str = prop_dictionary_get(dict, key);
common/lib/libprop/prop_dictionary_util.c
276
prop_dictionary_get_cstring_nocopy(prop_dictionary_t dict,
common/lib/libprop/prop_dictionary_util.c
280
return prop_dictionary_get_string(dict, key, cpp);
common/lib/libprop/prop_dictionary_util.c
287
prop_dictionary_set_cstring(prop_dictionary_t dict,
common/lib/libprop/prop_dictionary_util.c
291
return prop_dictionary_set_string(dict, key, cp);
common/lib/libprop/prop_dictionary_util.c
298
prop_dictionary_set_cstring_nocopy(prop_dictionary_t dict,
common/lib/libprop/prop_dictionary_util.c
302
return prop_dictionary_set_string_nocopy(dict, key, cp);
common/lib/libprop/prop_dictionary_util.c
306
prop_dictionary_set_and_rel(prop_dictionary_t dict, const char *key,
common/lib/libprop/prop_dictionary_util.c
313
rv = prop_dictionary_set(dict, key, po);
common/lib/libprop/prop_dictionary_util.c
45
prop_dictionary_get_dict(prop_dictionary_t dict, const char *key,
common/lib/libprop/prop_dictionary_util.c
50
o = prop_dictionary_get(dict, key);
common/lib/libprop/prop_dictionary_util.c
59
prop_dictionary_get_bool(prop_dictionary_t dict, const char *key, bool *valp)
common/lib/libprop/prop_dictionary_util.c
63
b = prop_dictionary_get(dict, key);
common/lib/libprop/prop_dictionary_util.c
73
prop_dictionary_set_bool(prop_dictionary_t dict, const char *key, bool val)
common/lib/libprop/prop_dictionary_util.c
76
return prop_dictionary_set_and_rel(dict, key, prop_bool_create(val));
common/lib/libprop/prop_dictionary_util.c
81
prop_dictionary_get_ ## name (prop_dictionary_t dict, \
common/lib/libprop/prop_dictionary_util.c
86
prop_dictionary_get(dict, key), valp); \
common/lib/libprop/prop_ingest.c
122
prop_dictionary_ingest(prop_dictionary_t dict,
common/lib/libprop/prop_ingest.c
133
obj = prop_dictionary_get(dict, pite->pite_key);
common/lib/libprop/prop_kern.c
339
prop_dictionary_sendrecv_ioctl(prop_dictionary_t dict, int fd,
common/lib/libprop/prop_kern.c
342
return _prop_object_sendrecv_ioctl(dict, fd, cmd,
games/boggle/boggle/word.c
123
opendict(const char *dict)
games/boggle/boggle/word.c
127
if ((fp = fopen(dict, "r")) == NULL)
lib/libdm/libdm_ioctl.c
149
prop_dictionary_t dict;
lib/libdm/libdm_ioctl.c
172
dict = prop_dictionary_internalize(prefp.pref_plist);
lib/libdm/libdm_ioctl.c
175
libdm_control_fd, NETBSD_DM_IOCTL, &dict);
lib/libdm/libdm_ioctl.c
183
prop_object_retain(dict);
lib/libdm/libdm_ioctl.c
185
libdm_task->ldm_task = dict;
lib/libnpf/npf.c
131
_npf_dataset_lookup(const nvlist_t *dict, const char *dataset,
lib/libnpf/npf.c
137
if (!nvlist_exists_nvlist_array(dict, dataset)) {
lib/libnpf/npf.c
140
items = nvlist_get_nvlist_array(dict, dataset, &nitems);
lib/libnpf/npf.c
153
_npf_dataset_getelement(nvlist_t *dict, const char *dataset, unsigned i)
lib/libnpf/npf.c
158
if (!nvlist_exists_nvlist_array(dict, dataset)) {
lib/libnpf/npf.c
161
items = nvlist_get_nvlist_array(dict, dataset, &nitems);
lib/libnpf/npf.c
173
_npf_rules_process(nl_config_t *ncf, nvlist_t *dict, const char *key)
lib/libnpf/npf.c
178
if (!nvlist_exists_nvlist_array(dict, key)) {
lib/libnpf/npf.c
181
items = nvlist_take_nvlist_array(dict, key, &nitems);
sbin/drvctl/drvctl.c
213
extract_property(prop_dictionary_t dict, const char *prop, bool nflag)
sbin/drvctl/drvctl.c
219
obj = dict;
sbin/fsck/partutil.c
78
dict2geom(struct disk_geom *geo, prop_dictionary_t dict)
sbin/fsck/partutil.c
81
prop_dictionary_get_int64(dict, "sectors-per-unit",
sbin/fsck/partutil.c
83
prop_dictionary_get_uint32(dict, "sector-size", &geo->dg_secsize);
sbin/fsck/partutil.c
84
prop_dictionary_get_uint32(dict, "sectors-per-track",
sbin/fsck/partutil.c
86
prop_dictionary_get_uint32(dict, "tracks-per-cylinder",
sbin/fsck/partutil.c
88
prop_dictionary_get_uint32(dict, "cylinders-per-unit",
sbin/fsck/partutil.c
91
prop_dictionary_get_uint32(dict, "physical-sector-size",
sbin/fsck/partutil.c
93
prop_dictionary_get_uint32(dict, "aligned-sector",
sys/arch/amiga/pci/p5pb.c
324
prop_dictionary_t dict;
sys/arch/amiga/pci/p5pb.c
328
dict = device_properties(dev);
sys/arch/amiga/pci/p5pb.c
332
prop_dictionary_set_uint64(dict, "virtual_address",
sys/arch/amiga/pci/p5pb.c
334
prop_dictionary_set_uint64(dict, "address",
sys/arch/amiga/pci/p5pb.c
660
prop_dictionary_t dict;
sys/arch/amiga/pci/p5pb.c
665
dict = device_properties(dev);
sys/arch/amiga/pci/p5pb.c
678
prop_dictionary_set_uint32(dict, "width",
sys/arch/amiga/pci/p5pb.c
681
prop_dictionary_set_uint32(dict, "height",
sys/arch/amiga/pci/p5pb.c
684
prop_dictionary_set_uint32(dict, "depth",
sys/arch/amiga/pci/p5pb.c
693
prop_dictionary_set_uint32(dict, "linebytes",
sys/arch/amiga/pci/p5pb.c
696
prop_dictionary_set(dict, "address",
sys/arch/amiga/pci/p5pb.c
699
prop_dictionary_set(dict, "virtual_address",
sys/arch/amiga/pci/p5pb.c
703
prop_dictionary_set_bool(dict, "is_console",
sys/arch/arm/acpi/cpu_acpi.c
106
prop_dictionary_t dict = device_properties(self);
sys/arch/arm/acpi/cpu_acpi.c
139
prop_dictionary_set_uint32(dict, "capacity_dmips_mhz",
sys/arch/arm/altera/cycv_platform.c
144
prop_dictionary_t dict = device_properties(dev);
sys/arch/arm/altera/cycv_platform.c
147
prop_dictionary_set_uint32(dict, "frequency",
sys/arch/arm/amlogic/meson_platform.c
185
prop_dictionary_t dict = device_properties(self);
sys/arch/arm/amlogic/meson_platform.c
201
prop_dictionary_set_uint32(dict, "scale", scale);
sys/arch/arm/amlogic/meson_platform.c
205
prop_dictionary_set_uint32(dict, "depth", depth);
sys/arch/arm/arm/arm_cpu_topology.c
77
prop_dictionary_t dict;
sys/arch/arm/arm/arm_cpu_topology.c
81
dict = device_properties(newci->ci_dev);
sys/arch/arm/arm/arm_cpu_topology.c
82
if (prop_dictionary_get_uint32(dict, "capacity_dmips_mhz",
sys/arch/arm/broadcom/bcm2835_genfb.c
102
prop_dictionary_get_uint32(dict, "wsdisplay_type", &sc->sc_wstype);
sys/arch/arm/broadcom/bcm2835_genfb.c
103
prop_dictionary_get_bool(dict, "is_console", &is_console);
sys/arch/arm/broadcom/bcm2835_genfb.c
105
prop_dictionary_set_bool(dict, "is_swapped", true);
sys/arch/arm/broadcom/bcm2835_genfb.c
92
prop_dictionary_t dict = device_properties(self);
sys/arch/arm/broadcom/bcm283x_platform.c
1037
prop_dictionary_set_uint32(dict, "width",
sys/arch/arm/broadcom/bcm283x_platform.c
1039
prop_dictionary_set_uint32(dict, "height",
sys/arch/arm/broadcom/bcm283x_platform.c
1041
prop_dictionary_set_uint8(dict, "depth",
sys/arch/arm/broadcom/bcm283x_platform.c
1043
prop_dictionary_set_uint16(dict, "linebytes",
sys/arch/arm/broadcom/bcm283x_platform.c
1045
prop_dictionary_set_uint32(dict, "address",
sys/arch/arm/broadcom/bcm283x_platform.c
1060
prop_dictionary_set_bool(dict, "is_bgr", is_bgr);
sys/arch/arm/broadcom/bcm283x_platform.c
1065
prop_dictionary_set_uint32(dict, "wsdisplay_type", integer);
sys/arch/arm/broadcom/bcm283x_platform.c
1447
prop_dictionary_t dict = device_properties(dev);
sys/arch/arm/broadcom/bcm283x_platform.c
1451
prop_dictionary_set_uint32(dict,
sys/arch/arm/broadcom/bcm283x_platform.c
1485
if (rpi_fb_init(dict, aux) == false)
sys/arch/arm/broadcom/bcm283x_platform.c
967
rpi_fb_init(prop_dictionary_t dict, void *aux)
sys/arch/arm/broadcom/bcm53xx_board.c
545
prop_dictionary_t dict = device_properties(self);
sys/arch/arm/broadcom/bcm53xx_board.c
569
prop_dictionary_set_uint32(dict, "frequency",
sys/arch/arm/clps711x/clpslcd.c
120
prop_dictionary_t dict = device_properties(self);
sys/arch/arm/clps711x/clpslcd.c
132
if (!prop_dictionary_get_uint32(dict, "width", &width) ||
sys/arch/arm/clps711x/clpslcd.c
133
!prop_dictionary_get_uint32(dict, "height", &height) ||
sys/arch/arm/clps711x/clpslcd.c
134
!prop_dictionary_get_uint32(dict, "addr", &addr)) {
sys/arch/arm/cortex/a9ptmr.c
118
prop_dictionary_t dict = device_properties(self);
sys/arch/arm/cortex/a9ptmr.c
133
if (!prop_dictionary_get_uint32(dict, "frequency", &sc->sc_freq)) {
sys/arch/arm/cortex/a9ptmr.c
134
dict = device_properties(parent);
sys/arch/arm/cortex/a9ptmr.c
135
prop_dictionary_get_uint32(dict, "frequency", &sc->sc_freq);
sys/arch/arm/cortex/a9tmr.c
119
prop_dictionary_t dict = device_properties(self);
sys/arch/arm/cortex/a9tmr.c
127
if (!prop_dictionary_get_uint32(dict, "frequency", &sc->sc_freq)) {
sys/arch/arm/cortex/a9tmr.c
128
dict = device_properties(parent);
sys/arch/arm/cortex/a9tmr.c
129
prop_dictionary_get_uint32(dict, "frequency", &sc->sc_freq);
sys/arch/arm/cortex/a9wdt.c
188
prop_dictionary_t dict = device_properties(self);
sys/arch/arm/cortex/a9wdt.c
201
prop_dictionary_get_uint32(dict, "frequency", &sc->sc_freq);
sys/arch/arm/cortex/gtmr.c
109
prop_dictionary_t dict = device_properties(self);
sys/arch/arm/cortex/gtmr.c
117
if (!prop_dictionary_get_uint32(dict, "frequency", &sc->sc_freq))
sys/arch/arm/cortex/gtmr.c
120
if (!prop_dictionary_get_bool(dict, "physical", &sc->sc_physical))
sys/arch/arm/cortex/gtmr.c
132
if (prop_dictionary_get_bool(dict, "arm,cpu-registers-not-fw-configured", &flag) && flag) {
sys/arch/arm/cortex/gtmr.c
138
if (prop_dictionary_get_bool(dict, "sun50i-a64-unstable-timer", &flag) && flag) {
sys/arch/arm/cortex/pl310.c
140
prop_dictionary_t dict = device_properties(self);
sys/arch/arm/cortex/pl310.c
145
if (!prop_dictionary_get_uint32(dict, "offset", &off))
sys/arch/arm/fdt/a9ptmr_fdt.c
100
prop_dictionary_set_uint32(dict, "frequency", rate);
sys/arch/arm/fdt/a9ptmr_fdt.c
162
prop_dictionary_t dict = device_properties(dev);
sys/arch/arm/fdt/a9ptmr_fdt.c
166
prop_dictionary_set_uint32(dict, "frequency", rate);
sys/arch/arm/fdt/a9ptmr_fdt.c
99
prop_dictionary_t dict = device_properties(self);
sys/arch/arm/fdt/a9tmr_fdt.c
100
prop_dictionary_set_uint32(dict, "frequency", rate);
sys/arch/arm/fdt/a9tmr_fdt.c
162
prop_dictionary_t dict = device_properties(dev);
sys/arch/arm/fdt/a9tmr_fdt.c
166
prop_dictionary_set_uint32(dict, "frequency", rate);
sys/arch/arm/fdt/a9tmr_fdt.c
99
prop_dictionary_t dict = device_properties(self);
sys/arch/arm/fdt/cpu_fdt.c
87
prop_dictionary_t dict = device_properties(self);
sys/arch/arm/fdt/cpu_fdt.c
90
prop_dictionary_set_uint32(dict, "capacity_dmips_mhz",
sys/arch/arm/fdt/plfb_fdt.c
124
prop_dictionary_t dict = device_properties(self);
sys/arch/arm/fdt/plfb_fdt.c
191
prop_dictionary_set_bool(dict, "is_console", is_console);
sys/arch/arm/fdt/plfb_fdt.c
273
prop_dictionary_t dict = device_properties(sc->sc_gen.sc_dev);
sys/arch/arm/fdt/plfb_fdt.c
288
prop_dictionary_set_uint32(dict, "width", timing.hactive);
sys/arch/arm/fdt/plfb_fdt.c
289
prop_dictionary_set_uint32(dict, "height", timing.vactive);
sys/arch/arm/fdt/plfb_fdt.c
290
prop_dictionary_set_uint8(dict, "depth", PLFB_BPP);
sys/arch/arm/fdt/plfb_fdt.c
291
prop_dictionary_set_bool(dict, "dblscan", 0);
sys/arch/arm/fdt/plfb_fdt.c
292
prop_dictionary_set_bool(dict, "interlace", 0);
sys/arch/arm/fdt/plfb_fdt.c
293
prop_dictionary_set_uint16(dict, "linebytes", timing.hactive * (PLFB_BPP / 8));
sys/arch/arm/fdt/plfb_fdt.c
294
prop_dictionary_set_uint32(dict, "address", sc->sc_vram_addr);
sys/arch/arm/fdt/plfb_fdt.c
295
prop_dictionary_set_uint32(dict, "virtual_address", sc->sc_vram);
sys/arch/arm/nvidia/tegra_platform.c
153
prop_dictionary_t dict = device_properties(self);
sys/arch/arm/nvidia/tegra_platform.c
166
prop_dictionary_set_string(dict, "HDMI-A-1", video);
sys/arch/arm/nvidia/tegra_platform.c
168
prop_dictionary_set_bool(dict, "force-dvi", true);
sys/arch/arm/nvidia/tegra_platform.c
172
prop_dictionary_set_string(dict, "hdmi-device", "tegradrm0");
sys/arch/arm/nvidia/tegra_platform.c
178
prop_dictionary_set_string(dict, "config", config);
sys/arch/arm/nvidia/tegra_platform.c
182
prop_dictionary_set_string(dict, "debug", debug);
sys/arch/arm/ti/omap3_dss.c
190
prop_dictionary_t dict;
sys/arch/arm/ti/omap3_dss.c
257
dict = device_properties(self);
sys/arch/arm/ti/omap3_dss.c
258
edid_data = prop_dictionary_get(dict, "EDID");
sys/arch/bebox/bebox/autoconf.c
178
prop_dictionary_t dict = device_properties(dev);
sys/arch/bebox/bebox/autoconf.c
186
prop_dictionary_set_bool(dict, "is_console", 1);
sys/arch/bebox/bebox/autoconf.c
187
prop_dictionary_set_uint32(dict, "width", 640);
sys/arch/bebox/bebox/autoconf.c
188
prop_dictionary_set_uint32(dict, "height", 480);
sys/arch/bebox/bebox/autoconf.c
189
prop_dictionary_set_uint32(dict, "depth", 8);
sys/arch/bebox/bebox/autoconf.c
190
prop_dictionary_set_uint32(dict, "address", fbaddr);
sys/arch/epoc32/epoc32/autoconf.c
68
prop_dictionary_t dict = device_properties(dev);
sys/arch/epoc32/epoc32/autoconf.c
70
prop_dictionary_set_uint32(dict, "width", epoc32_fb_width);
sys/arch/epoc32/epoc32/autoconf.c
71
prop_dictionary_set_uint32(dict, "height", epoc32_fb_height);
sys/arch/epoc32/epoc32/autoconf.c
72
prop_dictionary_set_uint32(dict, "addr", epoc32_fb_addr);
sys/arch/epoc32/windermere/wmlcd.c
141
prop_dictionary_t dict = device_properties(self);
sys/arch/epoc32/windermere/wmlcd.c
159
if (!prop_dictionary_get_uint32(dict, "width", &width) ||
sys/arch/epoc32/windermere/wmlcd.c
160
!prop_dictionary_get_uint32(dict, "height", &height) ||
sys/arch/epoc32/windermere/wmlcd.c
161
!prop_dictionary_get_uint32(dict, "addr", &addr)) {
sys/arch/evbarm/armadaxp/armadaxp_machdep.c
485
prop_dictionary_t dict = device_properties(dev);
sys/arch/evbarm/armadaxp/armadaxp_machdep.c
490
prop_dictionary_set_uint32(dict, "frequency", mvTclk);
sys/arch/evbarm/armadaxp/armadaxp_machdep.c
566
prop_dictionary_set(dict, "io-bus-tag", io_bs_tag);
sys/arch/evbarm/armadaxp/armadaxp_machdep.c
571
prop_dictionary_set(dict, "mem-bus-tag", mem_bs_tag);
sys/arch/evbarm/armadaxp/armadaxp_machdep.c
577
prop_dictionary_set(dict, "pci-chipset", pc);
sys/arch/evbarm/armadaxp/armadaxp_machdep.c
581
prop_dictionary_set_uint64(dict, "iostart", start);
sys/arch/evbarm/armadaxp/armadaxp_machdep.c
582
prop_dictionary_set_uint64(dict, "ioend", end);
sys/arch/evbarm/armadaxp/armadaxp_machdep.c
584
prop_dictionary_set_uint64(dict, "memstart", start);
sys/arch/evbarm/armadaxp/armadaxp_machdep.c
585
prop_dictionary_set_uint64(dict, "memend", end);
sys/arch/evbarm/armadaxp/armadaxp_machdep.c
586
prop_dictionary_set_uint32(dict,
sys/arch/evbarm/armadaxp/armadaxp_machdep.c
611
prop_dictionary_set(dict, "mac-address", pd);
sys/arch/evbarm/armadaxp/armadaxp_machdep.c
636
prop_dictionary_set(dict, "mac-address", pd);
sys/arch/evbarm/fdt/fdt_machdep.c
495
prop_dictionary_t dict = device_properties(self);
sys/arch/evbarm/fdt/fdt_machdep.c
496
prop_dictionary_set_uint64(dict,
sys/arch/evbarm/gumstix/gumstix_machdep.c
806
prop_dictionary_t dict = device_properties(dev);
sys/arch/evbarm/gumstix/gumstix_machdep.c
809
prop_dictionary_set_uint16(dict, "dpll5-m", 443);
sys/arch/evbarm/gumstix/gumstix_machdep.c
810
prop_dictionary_set_uint16(dict, "dpll5-n", 11);
sys/arch/evbarm/gumstix/gumstix_machdep.c
811
prop_dictionary_set_uint16(dict, "dpll5-m2", 4);
sys/arch/evbarm/gumstix/gumstix_machdep.c
814
if (prop_dictionary_set_bool(dict,
sys/arch/evbarm/gumstix/gumstix_machdep.c
819
if (prop_dictionary_set_bool(dict,
sys/arch/evbarm/gumstix/gumstix_machdep.c
824
if (prop_dictionary_set_bool(dict,
sys/arch/evbarm/iyonix/autoconf.c
139
prop_dictionary_t dict = device_properties(dev);
sys/arch/evbarm/iyonix/autoconf.c
171
prop_dictionary_set_uint32(dict, "width",
sys/arch/evbarm/iyonix/autoconf.c
173
prop_dictionary_set_uint32(dict, "height",
sys/arch/evbarm/iyonix/autoconf.c
175
prop_dictionary_set_uint32(dict, "depth",
sys/arch/evbarm/iyonix/autoconf.c
183
prop_dictionary_set_bool(dict, "is_bgr", 1);
sys/arch/evbarm/iyonix/autoconf.c
184
prop_dictionary_set_uint32(dict, "address", fbaddr);
sys/arch/evbarm/marvell/marvell_machdep.c
525
prop_dictionary_t dict = device_properties(dev);
sys/arch/evbarm/marvell/marvell_machdep.c
530
prop_dictionary_set_uint32(dict, "frequency", mvTclk);
sys/arch/evbarm/marvell/marvell_machdep.c
534
prop_dictionary_set_uint32(dict,
sys/arch/evbarm/marvell/marvell_machdep.c
565
prop_dictionary_set(dict, "io-bus-tag", io_bs_tag);
sys/arch/evbarm/marvell/marvell_machdep.c
570
prop_dictionary_set(dict, "mem-bus-tag", mem_bs_tag);
sys/arch/evbarm/marvell/marvell_machdep.c
576
prop_dictionary_set(dict, "pci-chipset", pc);
sys/arch/evbarm/marvell/marvell_machdep.c
580
prop_dictionary_set_uint64(dict, "iostart", start);
sys/arch/evbarm/marvell/marvell_machdep.c
581
prop_dictionary_set_uint64(dict, "ioend", end);
sys/arch/evbarm/marvell/marvell_machdep.c
583
prop_dictionary_set_uint64(dict, "memstart", start);
sys/arch/evbarm/marvell/marvell_machdep.c
584
prop_dictionary_set_uint64(dict, "memend", end);
sys/arch/evbarm/marvell/marvell_machdep.c
585
prop_dictionary_set_uint32(dict,
sys/arch/evbarm/marvell/marvell_machdep.c
611
prop_dictionary_set(dict, "int2gpp", int2gpp);
sys/arch/evbarm/marvell/marvell_machdep.c
810
prop_dictionary_set(dict, "io-bus-tag", io_bs_tag);
sys/arch/evbarm/marvell/marvell_machdep.c
815
prop_dictionary_set(dict, "mem-bus-tag", mem_bs_tag);
sys/arch/evbarm/marvell/marvell_machdep.c
821
prop_dictionary_set(dict, "pci-chipset", pc);
sys/arch/evbarm/marvell/marvell_machdep.c
825
prop_dictionary_set_uint64(dict, "iostart", start);
sys/arch/evbarm/marvell/marvell_machdep.c
826
prop_dictionary_set_uint64(dict, "ioend", end);
sys/arch/evbarm/marvell/marvell_machdep.c
828
prop_dictionary_set_uint64(dict, "memstart", start);
sys/arch/evbarm/marvell/marvell_machdep.c
829
prop_dictionary_set_uint64(dict, "memend", end);
sys/arch/evbarm/marvell/marvell_machdep.c
830
prop_dictionary_set_uint32(dict,
sys/arch/evbarm/netwalker/netwalker_backlight.c
213
netwalker_backlight_genfb_parameter_set(prop_dictionary_t dict)
sys/arch/evbarm/netwalker/netwalker_backlight.c
219
prop_dictionary_set_uint64(dict, "backlight_callback",
sys/arch/evbarm/netwalker/netwalker_backlight.c
226
prop_dictionary_set_uint64(dict, "brightness_callback",
sys/arch/evbmips/cavium/autoconf.c
146
prop_dictionary_t dict = device_properties(dev);
sys/arch/evbmips/cavium/autoconf.c
179
prop_dictionary_set_and_rel(dict, "phy-addr", pn);
sys/arch/evbmips/cavium/autoconf.c
185
prop_dictionary_t dict = device_properties(dev);
sys/arch/evbmips/cavium/autoconf.c
198
prop_dictionary_set_and_rel(dict, "rgmii-tx", tx);
sys/arch/evbmips/cavium/autoconf.c
200
prop_dictionary_set_and_rel(dict, "rgmii-rx", rx);
sys/arch/evbmips/gdium/autoconf.c
113
prop_dictionary_t dict;
sys/arch/evbmips/gdium/autoconf.c
119
dict = device_properties(dev);
sys/arch/evbmips/gdium/autoconf.c
124
prop_dictionary_set_bool(dict, "is_console", 1);
sys/arch/evbmips/gdium/autoconf.c
125
prop_dictionary_set_uint32(dict, "width", 1024);
sys/arch/evbmips/gdium/autoconf.c
126
prop_dictionary_set_uint32(dict, "height", 600);
sys/arch/evbmips/gdium/autoconf.c
127
prop_dictionary_set_uint32(dict, "depth", 16);
sys/arch/evbmips/gdium/autoconf.c
128
prop_dictionary_set_uint32(dict, "linebytes", 2048);
sys/arch/evbmips/gdium/autoconf.c
129
prop_dictionary_set_uint32(dict, "address", 0x04000000);
sys/arch/evbmips/loongson/autoconf.c
126
prop_dictionary_t dict;
sys/arch/evbmips/loongson/autoconf.c
138
dict = device_properties(dev);
sys/arch/evbmips/loongson/autoconf.c
143
prop_dictionary_set_bool(dict, "is_console", 1);
sys/arch/evbmips/loongson/autoconf.c
144
prop_dictionary_set_uint32(dict, "width", 1024);
sys/arch/evbmips/loongson/autoconf.c
145
prop_dictionary_set_uint32(dict, "height", 600);
sys/arch/evbmips/loongson/autoconf.c
146
prop_dictionary_set_uint32(dict, "depth", 16);
sys/arch/evbmips/loongson/autoconf.c
147
prop_dictionary_set_uint32(dict, "linebytes", 2048);
sys/arch/evbmips/loongson/autoconf.c
148
prop_dictionary_set_bool(dict, "swapBR", 1);
sys/arch/evbmips/loongson/gdium_machdep.c
240
prop_dictionary_t dict;
sys/arch/evbmips/loongson/gdium_machdep.c
245
dict = device_properties(dev);
sys/arch/evbmips/loongson/gdium_machdep.c
250
prop_dictionary_set_bool(dict, "is_console", 1);
sys/arch/evbmips/loongson/gdium_machdep.c
251
prop_dictionary_set_uint32(dict, "width", 1024);
sys/arch/evbmips/loongson/gdium_machdep.c
252
prop_dictionary_set_uint32(dict, "height", 600);
sys/arch/evbmips/loongson/gdium_machdep.c
253
prop_dictionary_set_uint32(dict, "depth", 16);
sys/arch/evbmips/loongson/gdium_machdep.c
254
prop_dictionary_set_uint32(dict, "linebytes", 2048);
sys/arch/evbmips/loongson/gdium_machdep.c
256
prop_dictionary_set_uint32(dict, "address", fb_addr);
sys/arch/evbppc/ev64260/autoconf.c
128
prop_dictionary_t dict = device_properties(dev);
sys/arch/evbppc/ev64260/autoconf.c
177
prop_dictionary_set(dict, "prot", prot);
sys/arch/evbppc/ev64260/autoconf.c
182
prop_dictionary_set(dict, "io-bus-tag", io_bs_tag);
sys/arch/evbppc/ev64260/autoconf.c
187
prop_dictionary_set(dict, "mem-bus-tag", mem_bs_tag);
sys/arch/evbppc/ev64260/autoconf.c
194
prop_dictionary_set(dict, "pci-chipset", pc);
sys/arch/evbppc/ev64260/autoconf.c
197
prop_dictionary_set_uint64(dict, "iostart", 0x00000600);
sys/arch/evbppc/ev64260/autoconf.c
198
prop_dictionary_set_uint64(dict, "ioend", 0x0000ffff);
sys/arch/evbppc/ev64260/autoconf.c
199
prop_dictionary_set_uint64(dict, "memstart",
sys/arch/evbppc/ev64260/autoconf.c
201
prop_dictionary_set_uint64(dict, "memend",
sys/arch/evbppc/ev64260/autoconf.c
203
prop_dictionary_set_uint32(dict, "cache-line-size", 32);
sys/arch/evbppc/ev64260/autoconf.c
216
if (prop_dictionary_set(dict, "bus-tag", bstd) == false)
sys/arch/evbppc/nintendo/dev/wiifb.c
209
prop_dictionary_t dict = device_properties(self);
sys/arch/evbppc/nintendo/dev/wiifb.c
228
prop_dictionary_set_uint32(dict, "width", sc->sc_curmode->width);
sys/arch/evbppc/nintendo/dev/wiifb.c
229
prop_dictionary_set_uint32(dict, "height",
sys/arch/evbppc/nintendo/dev/wiifb.c
231
prop_dictionary_set_uint8(dict, "depth", 16);
sys/arch/evbppc/nintendo/dev/wiifb.c
232
prop_dictionary_set_uint32(dict, "address", XFB_START);
sys/arch/evbppc/nintendo/dev/wiifb.c
233
prop_dictionary_set_uint32(dict, "virtual_address",
sys/arch/evbppc/nintendo/dev/wiifb.c
235
prop_dictionary_set_uint64(dict, "devcmap", (uintptr_t)wiifb_devcmap);
sys/arch/evbppc/nintendo/dev/wiifb.c
243
prop_dictionary_set_bool(dict, "is_console", true);
sys/arch/evbppc/nintendo/dev/wiiufb.c
169
prop_dictionary_t dict = device_properties(self);
sys/arch/evbppc/nintendo/dev/wiiufb.c
193
prop_dictionary_set_uint32(dict, "width", WIIUFB_WIDTH);
sys/arch/evbppc/nintendo/dev/wiiufb.c
194
prop_dictionary_set_uint32(dict, "height", WIIUFB_HEIGHT);
sys/arch/evbppc/nintendo/dev/wiiufb.c
195
prop_dictionary_set_uint8(dict, "depth", WIIUFB_BPP);
sys/arch/evbppc/nintendo/dev/wiiufb.c
196
prop_dictionary_set_uint16(dict, "linebytes", WIIUFB_STRIDE);
sys/arch/evbppc/nintendo/dev/wiiufb.c
197
prop_dictionary_set_uint32(dict, "address", WIIUFB_BASE);
sys/arch/evbppc/nintendo/dev/wiiufb.c
198
prop_dictionary_set_uint32(dict, "virtual_address", (uintptr_t)bits);
sys/arch/evbppc/nintendo/dev/wiiufb.c
219
prop_dictionary_set_bool(dict, "is_console", true);
sys/arch/evbppc/obs405/obs600_autoconf.c
119
prop_dictionary_t dict = device_properties(dev);
sys/arch/evbppc/obs405/obs600_autoconf.c
121
prop_dictionary_set_uint32(dict, "params",
sys/arch/ibmnws/ibmnws/autoconf.c
133
prop_dictionary_t dict;
sys/arch/ibmnws/ibmnws/autoconf.c
138
dict = device_properties(dev);
sys/arch/ibmnws/ibmnws/autoconf.c
149
if (! prop_dictionary_set_uint32(dict, "width", 1024)) {
sys/arch/ibmnws/ibmnws/autoconf.c
154
if (! prop_dictionary_set_uint32(dict, "height", 768)) {
sys/arch/ibmnws/ibmnws/autoconf.c
159
if (! prop_dictionary_set_uint32(dict, "depth", 8)) {
sys/arch/ibmnws/ibmnws/autoconf.c
164
if (! prop_dictionary_set_uint32(dict, "address", 0)) {
sys/arch/iyonix/iyonix/autoconf.c
139
prop_dictionary_t dict = device_properties(dev);
sys/arch/iyonix/iyonix/autoconf.c
170
prop_dictionary_set_bool(dict, "is_console", 1);
sys/arch/iyonix/iyonix/autoconf.c
171
prop_dictionary_set_uint32(dict, "width",
sys/arch/iyonix/iyonix/autoconf.c
173
prop_dictionary_set_uint32(dict, "height",
sys/arch/iyonix/iyonix/autoconf.c
175
prop_dictionary_set_uint32(dict, "depth",
sys/arch/iyonix/iyonix/autoconf.c
183
prop_dictionary_set_bool(dict, "is_bgr", 1);
sys/arch/iyonix/iyonix/autoconf.c
184
prop_dictionary_set_uint32(dict, "address", fbaddr);
sys/arch/mac68k/dev/genfb_grfbus.c
192
prop_dictionary_t dict = device_properties(dev);
sys/arch/mac68k/dev/genfb_grfbus.c
195
prop_dictionary_set_uint32(dict, "width", sc->sc_width);
sys/arch/mac68k/dev/genfb_grfbus.c
196
prop_dictionary_set_uint32(dict, "height", sc->sc_height);
sys/arch/mac68k/dev/genfb_grfbus.c
197
prop_dictionary_set_uint8(dict, "depth", sc->sc_depth);
sys/arch/mac68k/dev/genfb_grfbus.c
198
prop_dictionary_set_uint16(dict, "linebytes", sc->sc_stride);
sys/arch/mac68k/dev/genfb_grfbus.c
200
prop_dictionary_set_uint32(dict, "address", sc->sc_paddr);
sys/arch/mac68k/dev/genfb_grfbus.c
201
prop_dictionary_set_uint64(dict, "virtual_address", sc->sc_vaddr);
sys/arch/mac68k/dev/genfb_grfbus.c
206
prop_dictionary_set_uint64(dict, "cmap_callback",
sys/arch/mac68k/dev/genfb_grfbus.c
225
prop_dictionary_set_bool(dict, "is_console", is_console);
sys/arch/macppc/dev/smuiic.c
75
prop_dictionary_t dict = device_properties(self);
sys/arch/macppc/dev/smuiic.c
90
prop_dictionary_set(dict, "i2c-child-devices", cfg);
sys/arch/macppc/macppc/machdep.c
344
copy_disp_props(device_t dev, int node, prop_dictionary_t dict)
sys/arch/macppc/macppc/machdep.c
369
prop_dictionary_set_bool(dict, "is_console", 1);
sys/arch/macppc/macppc/machdep.c
370
if (!of_to_uint32_prop(dict, node, "width", "width")) {
sys/arch/macppc/macppc/machdep.c
373
prop_dictionary_set_uint32(dict, "width", temp);
sys/arch/macppc/macppc/machdep.c
375
if (!of_to_uint32_prop(dict, node, "height", "height")) {
sys/arch/macppc/macppc/machdep.c
378
prop_dictionary_set_uint32(dict, "height", temp);
sys/arch/macppc/macppc/machdep.c
380
of_to_uint32_prop(dict, node, "linebytes", "linebytes");
sys/arch/macppc/macppc/machdep.c
381
if (!of_to_uint32_prop(dict, node, "depth", "depth")) {
sys/arch/macppc/macppc/machdep.c
387
prop_dictionary_set_uint32(dict, "depth", 8);
sys/arch/macppc/macppc/machdep.c
389
if (!of_to_uint32_prop(dict, node, "address", "address")) {
sys/arch/macppc/macppc/machdep.c
393
prop_dictionary_set_uint32(dict, "address", fbaddr);
sys/arch/macppc/macppc/machdep.c
395
if (of_to_dataprop(dict, node, "EDID", "EDID")) {
sys/arch/macppc/macppc/machdep.c
397
} else if (of_to_dataprop(dict, node, "EDID,A", "EDID")) {
sys/arch/macppc/macppc/machdep.c
399
} else if (of_to_dataprop(dict, node, "EDID,B", "EDID")) {
sys/arch/macppc/macppc/machdep.c
404
prop_dictionary_set_bool(dict, "no_palette_control", 1);
sys/arch/macppc/macppc/machdep.c
408
add_model_specifics(dict);
sys/arch/macppc/macppc/machdep.c
417
prop_dictionary_set_uint32(dict, "refclk", temp / 10);
sys/arch/macppc/macppc/machdep.c
429
prop_dictionary_set_uint64(dict, "cmap_callback", cmap_cb);
sys/arch/macppc/macppc/machdep.c
454
prop_dictionary_set_uint64(dict, "backlight_callback",
sys/arch/macppc/macppc/machdep.c
462
prop_dictionary_set_uint64(dict, "brightness_callback",
sys/arch/macppc/macppc/machdep.c
468
add_model_specifics(prop_dictionary_t dict)
sys/arch/macppc/macppc/machdep.c
485
prop_dictionary_set_bool(dict, "backlight_level_reverted", 1);
sys/arch/macppc/macppc/machdep.c
491
prop_dictionary_set(dict, "EDID", edid);
sys/arch/macppc/macppc/machdep.c
498
prop_dictionary_set(dict, "EDID", edid);
sys/arch/macppc/macppc/machdep.c
502
prop_dictionary_set_bool(dict, "dvi-internal", 1);
sys/arch/macppc/macppc/machdep.c
505
prop_dictionary_set_bool(dict, "dvi-external", 1);
sys/arch/mips/cavium/dev/if_cnmac.c
231
prop_dictionary_t dict;
sys/arch/mips/cavium/dev/if_cnmac.c
351
dict = device_properties(sc->sc_gmx->sc_dev);
sys/arch/mips/cavium/dev/if_cnmac.c
353
clk = prop_dictionary_get(dict, "rgmii-tx");
sys/arch/mips/cavium/dev/if_cnmac.c
357
clk = prop_dictionary_get(dict, "rgmii-rx");
sys/arch/ofppc/ofppc/machdep.c
461
copy_disp_props(device_t dev, int node, prop_dictionary_t dict)
sys/arch/ofppc/ofppc/machdep.c
470
prop_dictionary_set_bool(dict, "is_console", 1);
sys/arch/ofppc/ofppc/machdep.c
473
if (!of_to_uint32_prop(dict, node, "width", "width")) {
sys/arch/ofppc/ofppc/machdep.c
476
prop_dictionary_set_uint32(dict, "width", temp);
sys/arch/ofppc/ofppc/machdep.c
478
if (!of_to_uint32_prop(dict, node, "height", "height")) {
sys/arch/ofppc/ofppc/machdep.c
481
prop_dictionary_set_uint32(dict, "height", temp);
sys/arch/ofppc/ofppc/machdep.c
483
of_to_uint32_prop(dict, node, "linebytes", "linebytes");
sys/arch/ofppc/ofppc/machdep.c
484
if (!of_to_uint32_prop(dict, node, "depth", "depth")) {
sys/arch/ofppc/ofppc/machdep.c
490
prop_dictionary_set_uint32(dict, "depth", 8);
sys/arch/ofppc/ofppc/machdep.c
492
if (!of_to_uint32_prop(dict, node, "address", "address")) {
sys/arch/ofppc/ofppc/machdep.c
497
prop_dictionary_set_uint32(dict, "address", fbaddr);
sys/arch/powerpc/ibm4xx/dev/dwctwo_plb.c
100
if (!prop_dictionary_get_uint32(dict, "params",
sys/arch/powerpc/ibm4xx/dev/dwctwo_plb.c
94
prop_dictionary_t dict = device_properties(self);
sys/arch/powerpc/ibm4xx/ibm4xx_autoconf.c
74
prop_dictionary_t dict = device_properties(dev);
sys/arch/powerpc/ibm4xx/ibm4xx_autoconf.c
87
if (prop_dictionary_set(dict, "mac-address", pd) ==
sys/arch/powerpc/ibm4xx/ibm4xx_autoconf.c
96
prop_dictionary_set_uint32(dict, "mii-phy",
sys/arch/powerpc/mpc5200/mpc5200_pci.c
158
prop_dictionary_t dict, sub = NULL;
sys/arch/powerpc/mpc5200/mpc5200_pci.c
165
dict = prop_dictionary_create();
sys/arch/powerpc/mpc5200/mpc5200_pci.c
166
KASSERT(dict != NULL);
sys/arch/powerpc/mpc5200/mpc5200_pci.c
167
prop_dictionary_set(pbi->pbi_properties, "ofw-pci-intrmap", dict);
sys/arch/powerpc/mpc5200/mpc5200_pci.c
168
prop_object_release(dict);
sys/arch/powerpc/mpc5200/mpc5200_pci.c
184
dict = prop_dictionary_create_with_capacity(ndevs * 2);
sys/arch/powerpc/mpc5200/mpc5200_pci.c
185
KASSERT(dict != NULL);
sys/arch/powerpc/mpc5200/mpc5200_pci.c
186
prop_dictionary_set(pbi->pbi_properties, "ofw-pci-intrmap", dict);
sys/arch/powerpc/mpc5200/mpc5200_pci.c
211
prop_dictionary_set(dict, key, sub);
sys/arch/powerpc/mpc5200/mpc5200_pci.c
217
prop_object_release(dict);
sys/arch/powerpc/mpc5200/mpc5200_pci.c
229
prop_dictionary_t dict, devsub;
sys/arch/powerpc/mpc5200/mpc5200_pci.c
247
dict = prop_dictionary_get(pbi->pbi_properties, "ofw-pci-intrmap");
sys/arch/powerpc/mpc5200/mpc5200_pci.c
248
if (dict != NULL)
sys/arch/powerpc/mpc5200/mpc5200_pci.c
249
i = prop_dictionary_count(dict);
sys/arch/powerpc/mpc5200/mpc5200_pci.c
251
if (dict == NULL || i == 0) {
sys/arch/powerpc/mpc5200/mpc5200_pci.c
269
dict = prop_dictionary_get(pbi->pbi_properties,
sys/arch/powerpc/mpc5200/mpc5200_pci.c
271
if (dict == NULL)
sys/arch/powerpc/mpc5200/mpc5200_pci.c
283
devsub = prop_dictionary_get(dict, key);
sys/arch/powerpc/oea/ofw_autoconf.c
259
prop_dictionary_t dict;
sys/arch/powerpc/oea/ofw_autoconf.c
261
dict = device_properties(dev);
sys/arch/powerpc/oea/ofw_autoconf.c
262
copy_disp_props(dev, ca->ca_node, dict);
sys/arch/powerpc/oea/ofw_autoconf.c
283
prop_dictionary_t dict = device_properties(dev);
sys/arch/powerpc/oea/ofw_autoconf.c
306
prop_dictionary_set(dict, "prot", prot);
sys/arch/powerpc/oea/ofw_autoconf.c
312
prop_dictionary_set(dict, "io-bus-tag", io_bs_tag);
sys/arch/powerpc/oea/ofw_autoconf.c
317
prop_dictionary_set(dict, "mem-bus-tag", mem_bs_tag);
sys/arch/powerpc/oea/ofw_autoconf.c
324
prop_dictionary_set(dict, "pci-chipset", pc);
sys/arch/powerpc/oea/ofw_autoconf.c
327
prop_dictionary_set_uint64(dict, "iostart", iostart);
sys/arch/powerpc/oea/ofw_autoconf.c
328
prop_dictionary_set_uint64(dict, "ioend", ioend);
sys/arch/powerpc/oea/ofw_autoconf.c
329
prop_dictionary_set_uint64(dict, "memstart",
sys/arch/powerpc/oea/ofw_autoconf.c
331
prop_dictionary_set_uint64(dict, "memend",
sys/arch/powerpc/oea/ofw_autoconf.c
333
prop_dictionary_set_uint32(dict, "cache-line-size",
sys/arch/powerpc/oea/ofw_autoconf.c
346
prop_dictionary_t dict;
sys/arch/powerpc/oea/ofw_autoconf.c
351
dict = device_properties(dev);
sys/arch/powerpc/oea/ofw_autoconf.c
359
(void)prop_dictionary_set(dict,
sys/arch/powerpc/oea/ofw_autoconf.c
367
prop_dictionary_set_uint32(dict, "device_node", node);
sys/arch/powerpc/oea/ofw_autoconf.c
385
prop_dictionary_set_bool(dict, "is_console", 0);
sys/arch/powerpc/oea/ofw_autoconf.c
386
copy_disp_props(dev, node, dict);
sys/arch/powerpc/pci/pci_machdep_ofw.c
217
prop_dictionary_t dict;
sys/arch/powerpc/pci/pci_machdep_ofw.c
240
dict = prop_dictionary_create_with_capacity(nrofpcidevs*2);
sys/arch/powerpc/pci/pci_machdep_ofw.c
241
KASSERT(dict != NULL);
sys/arch/powerpc/pci/pci_machdep_ofw.c
244
prop_dictionary_set(pbi->pbi_properties, "ofw-pci-intrmap", dict);
sys/arch/powerpc/pci/pci_machdep_ofw.c
264
prop_dictionary_set(dict, key, sub);
sys/arch/powerpc/pci/pci_machdep_ofw.c
271
prop_object_release(dict);
sys/arch/powerpc/pci/pci_machdep_ofw.c
283
dict = prop_dictionary_create_with_capacity(nrofpcidevs*2);
sys/arch/powerpc/pci/pci_machdep_ofw.c
284
KASSERT(dict != NULL);
sys/arch/powerpc/pci/pci_machdep_ofw.c
285
prop_dictionary_set(pbi->pbi_properties, "ofw-pci-intrmap", dict);
sys/arch/powerpc/pci/pci_machdep_ofw.c
317
prop_dictionary_set(dict, key, sub);
sys/arch/powerpc/pci/pci_machdep_ofw.c
355
prop_dictionary_set(dict, key, sub);
sys/arch/powerpc/pci/pci_machdep_ofw.c
392
prop_dictionary_t dict, devsub;
sys/arch/powerpc/pci/pci_machdep_ofw.c
410
dict = prop_dictionary_get(pbi->pbi_properties, "ofw-pci-intrmap");
sys/arch/powerpc/pci/pci_machdep_ofw.c
412
if (dict != NULL)
sys/arch/powerpc/pci/pci_machdep_ofw.c
413
i = prop_dictionary_count(dict);
sys/arch/powerpc/pci/pci_machdep_ofw.c
415
if (dict == NULL || i == 0) {
sys/arch/powerpc/pci/pci_machdep_ofw.c
436
dict = prop_dictionary_get(pbi->pbi_properties,
sys/arch/powerpc/pci/pci_machdep_ofw.c
438
if (dict == NULL)
sys/arch/powerpc/pci/pci_machdep_ofw.c
451
devsub = prop_dictionary_get(dict, key);
sys/arch/powerpc/pci/pcib.c
168
prop_dictionary_t dict, devsub;
sys/arch/powerpc/pci/pcib.c
177
dict = prop_dictionary_get(pbi->pbi_properties,
sys/arch/powerpc/pci/pcib.c
179
devsub = prop_dictionary_get(dict, "devfunc-11");
sys/arch/prep/pci/pci_machdep.c
160
prop_dictionary_t dict, devsub;
sys/arch/prep/pci/pci_machdep.c
177
dict = prop_dictionary_get(pbi->pbi_properties, "prep-pci-intrmap");
sys/arch/prep/pci/pci_machdep.c
179
if (dict != NULL)
sys/arch/prep/pci/pci_machdep.c
180
i = prop_dictionary_count(dict);
sys/arch/prep/pci/pci_machdep.c
182
if (dict == NULL || i == 0) {
sys/arch/prep/pci/pci_machdep.c
203
dict = prop_dictionary_get(pbi->pbi_properties,
sys/arch/prep/pci/pci_machdep.c
205
if (dict == NULL)
sys/arch/prep/pci/pci_machdep.c
218
devsub = prop_dictionary_get(dict, key);
sys/arch/prep/prep/ibm_machdep.c
46
prop_dictionary_t dict, sub;
sys/arch/prep/prep/ibm_machdep.c
54
dict = prop_dictionary_create_with_capacity(16);
sys/arch/prep/prep/ibm_machdep.c
55
KASSERT(dict != NULL);
sys/arch/prep/prep/ibm_machdep.c
57
dict);
sys/arch/prep/prep/ibm_machdep.c
67
prop_dictionary_set(dict, "devfunc-12", sub);
sys/arch/prep/prep/ibm_machdep.c
79
prop_dictionary_set(dict, key, sub);
sys/arch/prep/prep/ibm_machdep.c
83
prop_object_release(dict);
sys/arch/prep/prep/platform.c
221
create_intr_map(void *v, prop_dictionary_t dict)
sys/arch/prep/prep/platform.c
272
prop_dictionary_set(dict, key, sub);
sys/arch/prep/prep/platform.c
293
prop_dictionary_t dict;
sys/arch/prep/prep/platform.c
329
dict = prop_dictionary_create_with_capacity(nrofpcidevs*2);
sys/arch/prep/prep/platform.c
330
KASSERT(dict != NULL);
sys/arch/prep/prep/platform.c
332
prop_dictionary_set(pbi->pbi_properties, "prep-pci-intrmap", dict);
sys/arch/prep/prep/platform.c
341
size = create_intr_map(p, dict);
sys/arch/prep/prep/platform.c
343
prop_object_release(dict);
sys/arch/riscv/starfive/jh7110_eqos.c
64
prop_dictionary_t dict = device_properties(sc->sc_dev);
sys/arch/riscv/starfive/jh7110_eqos.c
67
prop_dictionary_set_bool(dict, "motorcomm,tx-clk-adj-enabled",
sys/arch/riscv/starfive/jh7110_eqos.c
71
prop_dictionary_set_bool(dict, "motorcomm,tx-clk-100-inverted",
sys/arch/riscv/starfive/jh7110_eqos.c
75
prop_dictionary_set_bool(dict, "motorcomm,tx-clk-1000-inverted",
sys/arch/riscv/starfive/jh7110_eqos.c
82
prop_dictionary_set_uint32(dict,
sys/arch/riscv/starfive/jh7110_eqos.c
87
prop_dictionary_set_uint32(dict,
sys/arch/riscv/starfive/jh7110_eqos.c
92
prop_dictionary_set_uint32(dict,
sys/arch/riscv/starfive/jh7110_eqos.c
97
prop_dictionary_set_uint32(dict,
sys/arch/shark/ofw/chipsfb_ofbus.c
170
prop_dictionary_t dict;
sys/arch/shark/ofw/chipsfb_ofbus.c
188
dict = device_properties(sc->sc_dev);
sys/arch/shark/ofw/chipsfb_ofbus.c
209
prop_dictionary_set_uint32(dict, "width", width);
sys/arch/shark/ofw/chipsfb_ofbus.c
210
prop_dictionary_set_uint32(dict, "height", height);
sys/arch/shark/ofw/chipsfb_ofbus.c
211
prop_dictionary_set_uint32(dict, "linebytes", linebytes);
sys/arch/shark/ofw/chipsfb_ofbus.c
212
prop_dictionary_set_uint32(dict, "depth", depth);
sys/arch/shark/ofw/chipsfb_ofbus.c
213
prop_dictionary_set_bool(dict, "is_console", isconsole);
sys/arch/sparc64/dev/jbus-i2c.c
138
prop_dictionary_t dict = device_properties(sc->sc_dev);
sys/arch/sparc64/dev/jbus-i2c.c
153
prop_dictionary_set(dict, "i2c-child-devices", cfg);
sys/arch/sparc64/dev/psycho.c
305
prop_dictionary_t dict;
sys/arch/sparc64/dev/psycho.c
669
dict = device_properties(self);
sys/arch/sparc64/dev/psycho.c
675
prop_dictionary_set_uint64(dict, "mem_base", mem_base);
sys/arch/sparc64/sparc64/autoconf.c
1304
prop_dictionary_t dict;
sys/arch/sparc64/sparc64/autoconf.c
1327
dict = device_properties(dev);
sys/arch/sparc64/sparc64/autoconf.c
1333
prop_dictionary_set(dict, "port-wwn", pwwnd);
sys/arch/sparc64/sparc64/autoconf.c
1341
prop_dictionary_set(dict, "node-wwn", nwwnd);
sys/arch/sparc64/sparc64/autoconf.c
1350
dict = device_properties(dev);
sys/arch/sparc64/sparc64/autoconf.c
1358
prop_dictionary_set(dict,
sys/arch/sparc64/sparc64/autoconf.c
1417
prop_dictionary_t dict;
sys/arch/sparc64/sparc64/autoconf.c
1421
dict = device_properties(dev);
sys/arch/sparc64/sparc64/autoconf.c
1445
copyprops(busdev, ofnode, dict, console);
sys/arch/sparc64/sparc64/autoconf.c
1449
prop_dictionary_set_uint32(dict,
sys/arch/sparc64/sparc64/autoconf.c
1456
prop_dictionary_set_uint64(dict,
sys/arch/sparc64/sparc64/autoconf.c
1475
set_static_edid(dict);
sys/arch/sparc64/sparc64/autoconf.c
1522
copyprops(device_t busdev, int node, prop_dictionary_t dict, int is_console)
sys/arch/sparc64/sparc64/autoconf.c
1540
prop_dictionary_set_bool(dict, "is_console", 1);
sys/arch/sparc64/sparc64/autoconf.c
1542
of_to_uint32_prop(dict, node, "width", "width");
sys/arch/sparc64/sparc64/autoconf.c
1543
of_to_uint32_prop(dict, node, "height", "height");
sys/arch/sparc64/sparc64/autoconf.c
1544
of_to_uint32_prop(dict, node, "linebytes", "linebytes");
sys/arch/sparc64/sparc64/autoconf.c
1545
if (!of_to_uint32_prop(dict, node, "depth", "depth") &&
sys/arch/sparc64/sparc64/autoconf.c
1547
!of_to_uint32_prop(dict, node, "depth ", "depth")) {
sys/arch/sparc64/sparc64/autoconf.c
1553
prop_dictionary_set_uint32(dict, "depth", 8);
sys/arch/sparc64/sparc64/autoconf.c
1569
prop_dictionary_set_uint32(dict, "address", fboffset);
sys/arch/sparc64/sparc64/autoconf.c
1572
if (!of_to_dataprop(dict, node, "EDID", "EDID"))
sys/arch/sparc64/sparc64/autoconf.c
1573
of_to_dataprop(dict, node, "edid", "EDID");
sys/arch/sparc64/sparc64/autoconf.c
1582
prop_dictionary_set_uint32(dict, "refclk", temp / 10);
sys/arch/sparc64/sparc64/autoconf.c
1602
prop_dictionary_set_string(dict, "videomode", pos + 2);
sys/arch/sparc64/sparc64/ofw_patch.c
105
prop_dictionary_t dict = device_properties(dev);
sys/arch/sparc64/sparc64/ofw_patch.c
114
prop_dictionary_set(dict, "pins", pins);
sys/arch/sparc64/sparc64/ofw_patch.c
123
prop_dictionary_set(dict, "pins", pins);
sys/arch/sparc64/sparc64/ofw_patch.c
132
prop_dictionary_set(dict, "pins", pins);
sys/arch/sparc64/sparc64/ofw_patch.c
142
prop_dictionary_t dict = device_properties(dev);
sys/arch/sparc64/sparc64/ofw_patch.c
156
prop_dictionary_set(dict, "pins", pins);
sys/arch/sparc64/sparc64/ofw_patch.c
166
prop_dictionary_t dict = device_properties(dev);
sys/arch/sparc64/sparc64/ofw_patch.c
174
prop_dictionary_set(dict, "pins", pins);
sys/arch/sparc64/sparc64/ofw_patch.c
184
prop_dictionary_t dict = device_properties(dev);
sys/arch/sparc64/sparc64/ofw_patch.c
195
prop_dictionary_set(dict, "pins", pins);
sys/arch/sparc64/sparc64/ofw_patch.c
204
prop_dictionary_set(dict, "pins", pins);
sys/arch/sparc64/sparc64/ofw_patch.c
221
prop_dictionary_set(dict, "pins", pins);
sys/arch/sparc64/sparc64/ofw_patch.c
235
prop_dictionary_set(dict, "pins", pins);
sys/arch/sparc64/sparc64/ofw_patch.c
246
prop_dictionary_set(dict, "pins", pins);
sys/arch/sparc64/sparc64/ofw_patch.c
257
prop_dictionary_t dict = device_properties(dev);
sys/arch/sparc64/sparc64/ofw_patch.c
277
prop_dictionary_set_string(dict, "location", name);
sys/arch/sparc64/sparc64/ofw_patch.c
291
prop_dictionary_set_string(dict, "location", name);
sys/arch/sparc64/sparc64/ofw_patch.c
295
prop_dictionary_set_string(dict, "location", name);
sys/arch/sparc64/sparc64/ofw_patch.c
587
set_static_edid(prop_dictionary_t dict)
sys/arch/sparc64/sparc64/ofw_patch.c
595
prop_dictionary_set(dict, "EDID:1", edid);
sys/arch/x86/pci/pci_machdep.c
1115
populate_fbinfo(device_t dev, prop_dictionary_t dict)
sys/arch/x86/pci/pci_machdep.c
1138
prop_dictionary_set_uint32(dict, "width", fbinfo.width);
sys/arch/x86/pci/pci_machdep.c
1139
prop_dictionary_set_uint32(dict, "height", fbinfo.height);
sys/arch/x86/pci/pci_machdep.c
1140
prop_dictionary_set_uint8(dict, "depth", fbinfo.depth);
sys/arch/x86/pci/pci_machdep.c
1141
prop_dictionary_set_uint16(dict, "linebytes", fbinfo.stride);
sys/arch/x86/pci/pci_machdep.c
1143
prop_dictionary_set_uint64(dict, "address", fbinfo.physaddr);
sys/arch/x86/pci/pci_machdep.c
1146
prop_dictionary_set_uint64(dict, "virtual_address",
sys/arch/x86/pci/pci_machdep.c
1154
prop_dictionary_set_bool(dict, "splash",
sys/arch/x86/pci/pci_machdep.c
1160
prop_dictionary_set_uint64(dict, "cmap_callback",
sys/arch/x86/pci/pci_machdep.c
1165
prop_dictionary_set_uint64(dict, "mode_callback",
sys/arch/x86/pci/pci_machdep.c
1171
prop_dictionary_set_bool(dict, "enable_shadowfb",
sys/arch/x86/pci/pci_machdep.c
1254
prop_dictionary_t dict = device_properties(dev);
sys/arch/x86/pci/pci_machdep.c
1259
populate_fbinfo(dev, dict);
sys/arch/x86/pci/pci_machdep.c
1283
prop_dictionary_set_bool(dict, "is_console",
sys/arch/x86/pci/pci_machdep.c
1286
prop_dictionary_set_bool(dict, "is_console",
sys/arch/x86/pci/pci_machdep.c
1290
prop_dictionary_set_bool(dict, "clear-screen", false);
sys/arch/x86/pci/pci_machdep.c
1292
prop_dictionary_set_uint16(dict, "cursor-row",
sys/arch/x86/pci/pci_machdep.c
1296
prop_dictionary_set_bool(dict, "splash",
sys/arch/x86/pci/pci_machdep.c
1301
prop_dictionary_set_uint64(dict,
sys/arch/x86/pci/pci_ranges.c
1006
dict = pci_rsrc_filter(pci_rsrc_dict,
sys/arch/x86/pci/pci_ranges.c
1009
if (dict == NULL)
sys/arch/x86/pci/pci_ranges.c
1012
"pci-resources", dict);
sys/arch/x86/pci/pci_ranges.c
989
prop_dictionary_t dict;
sys/arch/x86/x86/hyperv.c
1051
populate_fbinfo(device_t dev, prop_dictionary_t dict)
sys/arch/x86/x86/hyperv.c
1065
prop_dictionary_set_uint32(dict, "width", fbinfo.width);
sys/arch/x86/x86/hyperv.c
1066
prop_dictionary_set_uint32(dict, "height", fbinfo.height);
sys/arch/x86/x86/hyperv.c
1067
prop_dictionary_set_uint8(dict, "depth", fbinfo.depth);
sys/arch/x86/x86/hyperv.c
1068
prop_dictionary_set_uint16(dict, "linebytes", fbinfo.stride);
sys/arch/x86/x86/hyperv.c
1070
prop_dictionary_set_uint64(dict, "address", fbinfo.physaddr);
sys/arch/x86/x86/hyperv.c
1073
prop_dictionary_set_uint64(dict, "virtual_address",
sys/arch/x86/x86/hyperv.c
1081
prop_dictionary_set_bool(dict, "splash",
sys/arch/x86/x86/hyperv.c
1088
prop_dictionary_set_uint64(dict, "cmap_callback",
sys/arch/x86/x86/hyperv.c
1094
prop_dictionary_set_uint64(dict, "mode_callback",
sys/arch/x86/x86/hyperv.c
1100
prop_dictionary_set_bool(dict, "enable_shadowfb",
sys/arch/x86/x86/hyperv.c
1123
prop_dictionary_t dict = device_properties(dev);
sys/arch/x86/x86/hyperv.c
1132
populate_fbinfo(dev, dict);
sys/arch/x86/x86/hyperv.c
1137
prop_dictionary_set_bool(dict, "is_console",
sys/arch/x86/x86/hyperv.c
1141
prop_dictionary_set_bool(dict, "is_console", true);
sys/arch/x86/x86/hyperv.c
1143
prop_dictionary_set_bool(dict, "clear-screen", false);
sys/arch/x86/x86/hyperv.c
1145
prop_dictionary_set_uint16(dict, "cursor-row",
sys/arch/x86/x86/hyperv.c
1150
prop_dictionary_set_uint64(dict, "pmf_callback",
sys/dev/acpi/acpi_debug.c
242
acpi_debug_getkey(prop_dictionary_t dict, uint32_t arg)
sys/dev/acpi/acpi_debug.c
249
i = prop_dictionary_iterator(dict);
sys/dev/acpi/acpi_debug.c
254
val = prop_dictionary_get(dict, key);
sys/dev/acpi/acpi_verbose.c
140
acpiverbose_modcmd_prop(prop_dictionary_t dict)
sys/dev/acpi/acpi_verbose.c
144
obj = prop_dictionary_get(dict, "dump");
sys/dev/bluetooth/bthidev.c
171
prop_dictionary_t dict = aux;
sys/dev/bluetooth/bthidev.c
174
obj = prop_dictionary_get(dict, BTDEVservice);
sys/dev/bluetooth/bthidev.c
185
prop_dictionary_t dict = aux;
sys/dev/bluetooth/bthidev.c
218
obj = prop_dictionary_get(dict, BTDEVladdr);
sys/dev/bluetooth/bthidev.c
221
obj = prop_dictionary_get(dict, BTDEVraddr);
sys/dev/bluetooth/bthidev.c
224
obj = prop_dictionary_get(dict, BTDEVvendor);
sys/dev/bluetooth/bthidev.c
227
obj = prop_dictionary_get(dict, BTDEVproduct);
sys/dev/bluetooth/bthidev.c
230
obj = prop_dictionary_get(dict, BTDEVmode);
sys/dev/bluetooth/bthidev.c
248
obj = prop_dictionary_get(dict, BTHIDEVcontrolpsm);
sys/dev/bluetooth/bthidev.c
257
obj = prop_dictionary_get(dict, BTHIDEVinterruptpsm);
sys/dev/bluetooth/bthidev.c
266
obj = prop_dictionary_get(dict, BTHIDEVdescriptor);
sys/dev/bluetooth/bthidev.c
275
obj = prop_dictionary_get(dict, BTHIDEVreconnect);
sys/dev/bluetooth/bthub.c
109
prop_dictionary_t dict;
sys/dev/bluetooth/bthub.c
112
dict = device_properties(self);
sys/dev/bluetooth/bthub.c
114
prop_dictionary_set(dict, BTDEVladdr, obj);
sys/dev/bluetooth/bthub.c
151
prop_dictionary_t dict;
sys/dev/bluetooth/bthub.c
158
err = prop_dictionary_copyin_ioctl(data, cmd, &dict);
sys/dev/bluetooth/bthub.c
160
err = bthub_pioctl(devno, cmd, dict, flag, l);
sys/dev/bluetooth/bthub.c
161
prop_object_release(dict);
sys/dev/bluetooth/bthub.c
174
bthub_pioctl(dev_t devno, unsigned long cmd, prop_dictionary_t dict,
sys/dev/bluetooth/bthub.c
186
laddr = prop_dictionary_get(dict, BTDEVladdr);
sys/dev/bluetooth/bthub.c
206
raddr = prop_dictionary_get(dict, BTDEVraddr);
sys/dev/bluetooth/bthub.c
212
service = prop_dictionary_get(dict, BTDEVservice);
sys/dev/bluetooth/bthub.c
241
dev = config_found(self, dict, bthub_print, CFARGS_NONE);
sys/dev/bluetooth/bthub.c
265
prop_dictionary_t dict = aux;
sys/dev/bluetooth/bthub.c
270
obj = prop_dictionary_get(dict, BTDEVtype);
sys/dev/bluetooth/bthub.c
275
obj = prop_dictionary_get(dict, BTDEVraddr);
sys/dev/bluetooth/btsco.c
257
prop_dictionary_t dict = aux;
sys/dev/bluetooth/btsco.c
260
obj = prop_dictionary_get(dict, BTDEVservice);
sys/dev/bluetooth/btsco.c
274
prop_dictionary_t dict = aux;
sys/dev/bluetooth/btsco.c
290
obj = prop_dictionary_get(dict, BTDEVladdr);
sys/dev/bluetooth/btsco.c
293
obj = prop_dictionary_get(dict, BTDEVraddr);
sys/dev/bluetooth/btsco.c
296
obj = prop_dictionary_get(dict, BTDEVservice);
sys/dev/bluetooth/btsco.c
302
obj = prop_dictionary_get(dict, BTSCOchannel);
sys/dev/fdt/simplefb.c
130
prop_dictionary_t dict = device_properties(dev);
sys/dev/fdt/simplefb.c
166
prop_dictionary_set_bool(dict, "is_swapped", true);
sys/dev/fdt/simplefb.c
169
prop_dictionary_set_bool(dict, "is_10bit", true);
sys/dev/fdt/simplefb.c
183
if (prop_dictionary_get_uint64(dict, "simplefb-physaddr", &sfb_addr) &&
sys/dev/fdt/simplefb.c
197
prop_dictionary_set_uint32(dict, "width", width);
sys/dev/fdt/simplefb.c
198
prop_dictionary_set_uint32(dict, "height", height);
sys/dev/fdt/simplefb.c
199
prop_dictionary_set_uint8(dict, "depth", depth);
sys/dev/fdt/simplefb.c
200
prop_dictionary_set_uint16(dict, "linebytes", stride);
sys/dev/fdt/simplefb.c
201
prop_dictionary_set_uint32(dict, "address", addr);
sys/dev/fdt/simplefb.c
202
prop_dictionary_set_uint64(dict, "virtual_address",
sys/dev/fdt/simplefb.c
232
prop_dictionary_set_bool(dict, "is_console", is_console);
sys/dev/hdaudio/hdafg.c
590
prop_dictionary_t dict;
sys/dev/hdaudio/hdafg.c
604
dict = (prop_dictionary_t)obj;
sys/dev/hdaudio/hdafg.c
605
if (!prop_dictionary_get_int16(dict, "nid", &nid) ||
sys/dev/hdaudio/hdafg.c
606
!prop_dictionary_get_uint32(dict, "config", &config))
sys/dev/hdaudio/hdaudio.c
1351
prop_dictionary_t dict;
sys/dev/hdaudio/hdaudio.c
1364
dict = prop_dictionary_create();
sys/dev/hdaudio/hdaudio.c
1365
if (dict == NULL)
sys/dev/hdaudio/hdaudio.c
1367
prop_dictionary_set_string_nocopy(dict,
sys/dev/hdaudio/hdaudio.c
1369
prop_dictionary_set_int16(dict, "nid", fg->fg_nid);
sys/dev/hdaudio/hdaudio.c
1370
prop_dictionary_set_int16(dict, "codecid", codecid);
sys/dev/hdaudio/hdaudio.c
1371
prop_dictionary_set_uint16(dict, "vendor-id",
sys/dev/hdaudio/hdaudio.c
1373
prop_dictionary_set_uint16(dict, "product-id",
sys/dev/hdaudio/hdaudio.c
1375
prop_dictionary_set_uint32(dict, "subsystem-id",
sys/dev/hdaudio/hdaudio.c
1378
prop_dictionary_set_string(dict, "device",
sys/dev/hdaudio/hdaudio.c
1381
prop_dictionary_set_string_nocopy(dict,
sys/dev/hdaudio/hdaudio.c
1383
prop_array_add(array, dict);
sys/dev/hdaudio/hdaudio.c
1396
prop_dictionary_t dict;
sys/dev/hdaudio/hdaudio.c
1426
dict = prop_dictionary_create();
sys/dev/hdaudio/hdaudio.c
1427
if (dict == NULL)
sys/dev/hdaudio/hdaudio.c
1429
prop_dictionary_set_int16(dict, "nid", i);
sys/dev/hdaudio/hdaudio.c
1430
prop_dictionary_set_uint32(dict, "config", config);
sys/dev/hdaudio/hdaudio.c
1431
prop_array_add(array, dict);
sys/dev/hdaudio/hdaudio.c
651
prop_dictionary_t dict = opaque;
sys/dev/hdaudio/hdaudio.c
656
prop_dictionary_get_uint8(dict, "function-group-type", &fgtype);
sys/dev/hdaudio/hdaudio.c
657
prop_dictionary_get_uint8(dict, "node-id", &nid);
sys/dev/hdaudio/hdaudio.c
658
prop_dictionary_get_uint16(dict, "vendor-id", &vendor);
sys/dev/hdaudio/hdaudio.c
659
prop_dictionary_get_uint16(dict, "product-id", &product);
sys/dev/i2c/pcagpio.c
152
prop_dictionary_t dict = device_properties(self);
sys/dev/i2c/pcagpio.c
187
pins = prop_dictionary_get(dict, "pins");
sys/dev/i2c/pcf8574.c
133
prop_dictionary_t dict = device_properties(self);
sys/dev/i2c/pcf8574.c
172
pins = prop_dictionary_get(dict, "pins");
sys/dev/i2c/tps65217pmic.c
330
prop_dictionary_t dict;
sys/dev/i2c/tps65217pmic.c
346
dict = device_properties(self);
sys/dev/i2c/tps65217pmic.c
347
if (prop_dictionary_get_int32(dict, "isel", &isel)) {
sys/dev/i2c/tps65217pmic.c
348
prop_dictionary_get_int32(dict, "fdim", &fdim);
sys/dev/i2c/tps65217pmic.c
349
prop_dictionary_get_int32(dict, "brightness", &brightness);
sys/dev/ic/com.c
575
prop_dictionary_t dict;
sys/dev/ic/com.c
582
dict = device_properties(sc->sc_dev);
sys/dev/ic/com.c
583
prop_dictionary_get_bool(dict, "is_console", &is_console);
sys/dev/ic/com.c
584
prop_dictionary_get_bool(dict, "force_console", &force_console);
sys/dev/ic/com.c
585
prop_dictionary_get_bool(dict, "skip_attach_delay", &skip_attach_delay);
sys/dev/ic/com.c
696
if (!prop_dictionary_get_uint(dict, "fifolen", &sc->sc_fifolen)) {
sys/dev/ic/ct65550.c
194
prop_dictionary_t dict;
sys/dev/ic/ct65550.c
201
dict = device_properties(sc->sc_dev);
sys/dev/ic/ct65550.c
206
printf(prop_dictionary_externalize(dict));
sys/dev/ic/ct65550.c
228
if (!prop_dictionary_get_uint32(dict, "width", &sc->sc_width))
sys/dev/ic/ct65550.c
230
if (!prop_dictionary_get_uint32(dict, "height", &sc->sc_height))
sys/dev/ic/ct65550.c
232
if (!prop_dictionary_get_uint32(dict, "depth", &sc->sc_bits_per_pixel))
sys/dev/ic/ct65550.c
234
if (!prop_dictionary_get_uint32(dict, "linebytes", &sc->sc_linebytes))
sys/dev/ic/ct65550.c
237
prop_dictionary_get_bool(dict, "is_console", &console);
sys/dev/ic/mpt.c
1131
prop_dictionary_t dict;
sys/dev/ic/mpt.c
1153
dict = device_properties(mpt->sc_dev);
sys/dev/ic/mpt.c
1214
prop_dictionary_get_uint32(dict, "scsi-initiator-id", &ini_id))
sys/dev/marvell/com_mv.c
102
prop_dictionary_t dict = device_properties(self);
sys/dev/marvell/com_mv.c
106
if (!prop_dictionary_get_uint32(dict, "frequency", &sc->sc_frequency)) {
sys/dev/marvell/gtidmac.c
373
prop_dictionary_t dict = device_properties(self);
sys/dev/marvell/gtidmac.c
391
if (!prop_dictionary_get_uint32(dict,
sys/dev/marvell/gtidmac.c
405
if (!prop_dictionary_get_uint32(dict,
sys/dev/marvell/gtidmac.c
467
if (!prop_dictionary_get_uint32(dict, "dmb_speed", &dmb_speed)) {
sys/dev/marvell/gtpci.c
117
prop_dictionary_t dict = device_properties(self);
sys/dev/marvell/gtpci.c
132
prot = prop_dictionary_get(dict, "prot");
sys/dev/marvell/gtpci.c
141
iot = prop_dictionary_get(dict, "io-bus-tag");
sys/dev/marvell/gtpci.c
149
memt = prop_dictionary_get(dict, "mem-bus-tag");
sys/dev/marvell/gtpci.c
157
pc = prop_dictionary_get(dict, "pci-chipset");
sys/dev/marvell/gtpci.c
165
if (!prop_dictionary_get_uint64(dict, "iostart", &iostart)) {
sys/dev/marvell/gtpci.c
169
if (!prop_dictionary_get_uint64(dict, "ioend", &ioend)) {
sys/dev/marvell/gtpci.c
173
if (!prop_dictionary_get_uint64(dict, "memstart", &memstart)) {
sys/dev/marvell/gtpci.c
177
if (!prop_dictionary_get_uint64(dict, "memend", &memend)) {
sys/dev/marvell/gtpci.c
181
if (!prop_dictionary_get_uint32(dict, "cache-line-size", &cl_size)) {
sys/dev/marvell/gtpci.c
203
int2gpp = prop_dictionary_get(dict, "int2gpp");
sys/dev/marvell/mvpex.c
108
prop_dictionary_t dict = device_properties(self);
sys/dev/marvell/mvpex.c
121
iot = prop_dictionary_get(dict, "io-bus-tag");
sys/dev/marvell/mvpex.c
128
memt = prop_dictionary_get(dict, "mem-bus-tag");
sys/dev/marvell/mvpex.c
135
pc = prop_dictionary_get(dict, "pci-chipset");
sys/dev/marvell/mvpex.c
143
if (!prop_dictionary_get_uint64(dict, "iostart", &iostart)) {
sys/dev/marvell/mvpex.c
147
if (!prop_dictionary_get_uint64(dict, "ioend", &ioend)) {
sys/dev/marvell/mvpex.c
151
if (!prop_dictionary_get_uint64(dict, "memstart", &memstart)) {
sys/dev/marvell/mvpex.c
155
if (!prop_dictionary_get_uint64(dict, "memend", &memend)) {
sys/dev/marvell/mvpex.c
159
if (!prop_dictionary_get_uint32(dict, "cache-line-size", &cl_size)) {
sys/dev/mii/brgphy.c
205
prop_dictionary_t dict;
sys/dev/mii/brgphy.c
225
dict = device_properties(parent);
sys/dev/mii/brgphy.c
227
if (!prop_dictionary_get_uint32(dict, "phyflags",
sys/dev/mii/brgphy.c
230
if (!prop_dictionary_get_uint32(dict, "chipid",
sys/dev/mii/brgphy.c
237
if (!prop_dictionary_get_uint32(dict, "shared_hwcfg",
sys/dev/mii/brgphy.c
240
if (!prop_dictionary_get_uint32(dict, "port_hwcfg",
sys/dev/mii/igphy.c
139
prop_dictionary_t dict;
sys/dev/mii/igphy.c
145
dict = device_properties(parent);
sys/dev/mii/igphy.c
146
if (!prop_dictionary_get_uint32(dict, "mactype", &igsc->sc_mactype))
sys/dev/mii/igphy.c
148
if (!prop_dictionary_get_uint32(dict, "macflags", &igsc->sc_macflags))
sys/dev/mii/ipgphy.c
101
prop_dictionary_t dict;
sys/dev/mii/ipgphy.c
119
dict = device_properties(parent);
sys/dev/mii/ipgphy.c
120
prop_dictionary_get_bool(dict, "need_loaddspcode",
sys/dev/mii/mcommphy.c
167
mcomm_yt8531properties(struct mcomm_softc *msc, prop_dictionary_t dict)
sys/dev/mii/mcommphy.c
171
if (!prop_dictionary_get_bool(dict, "motorcomm,tx-clk-adj-enabled",
sys/dev/mii/mcommphy.c
180
if (!prop_dictionary_get_bool(dict, "motorcomm,tx-clk-10-inverted",
sys/dev/mii/mcommphy.c
189
if (!prop_dictionary_get_bool(dict, "motorcomm,tx-clk-100-inverted",
sys/dev/mii/mcommphy.c
198
if (!prop_dictionary_get_bool(dict, "motorcomm,tx-clk-1000-inverted",
sys/dev/mii/mcommphy.c
207
if (!prop_dictionary_get_uint32(dict, "motorcomm,clk-out-frequency-hz",
sys/dev/mii/mcommphy.c
216
if (!prop_dictionary_get_uint32(dict, "motorcomm,rx-clk-drv-microamp",
sys/dev/mii/mcommphy.c
226
if (!prop_dictionary_get_uint32(dict, "motorcomm,rx-data-drv-microamp",
sys/dev/mii/mcommphy.c
236
if (!prop_dictionary_get_uint32(dict, "rx-internal-delay-ps",
sys/dev/mii/mcommphy.c
246
if (!prop_dictionary_get_uint32(dict, "tx-internal-delay-ps",
sys/dev/mii/mcommphy.c
564
prop_dictionary_t dict = device_properties(parent);
sys/dev/mii/mcommphy.c
574
mcomm_yt8531properties(msc, dict);
sys/dev/ofw/ofw_subr.c
627
of_to_uint32_prop(prop_dictionary_t dict, int node, const char *ofname,
sys/dev/ofw/ofw_subr.c
635
return(prop_dictionary_set_uint32(dict, propname, prop));
sys/dev/ofw/ofw_subr.c
643
of_to_dataprop(prop_dictionary_t dict, int node, const char *ofname,
sys/dev/ofw/ofw_subr.c
653
return prop_dictionary_set_data(dict, propname, prop, len);
sys/dev/pci/bochsfb.c
111
prop_dictionary_t dict = device_properties(self);
sys/dev/pci/bochsfb.c
125
prop_dictionary_get_bool(dict, "is_console", &is_console);
sys/dev/pci/gffb.c
218
prop_dictionary_t dict;
sys/dev/pci/gffb.c
261
dict = device_properties(self);
sys/dev/pci/gffb.c
262
if (!prop_dictionary_get_uint32(dict, "width", &sc->sc_width)) {
sys/dev/pci/gffb.c
266
if (!prop_dictionary_get_uint32(dict, "height", &sc->sc_height)) {
sys/dev/pci/gffb.c
276
if (!prop_dictionary_get_uint32(dict, "depth", &sc->sc_depth)) {
sys/dev/pci/gffb.c
280
if (!prop_dictionary_get_uint32(dict, "linebytes", &sc->sc_stride)) {
sys/dev/pci/gffb.c
290
if (prop_dictionary_get_uint32(dict, "address", &addr)) {
sys/dev/pci/gffb.c
294
prop_dictionary_get_bool(dict, "is_console", &is_console);
sys/dev/pci/if_bge.c
3227
prop_dictionary_t dict;
sys/dev/pci/if_bge.c
3944
dict = device_properties(self);
sys/dev/pci/if_bge.c
3945
prop_dictionary_set_uint32(dict, "phyflags", sc->bge_phy_flags);
sys/dev/pci/if_bge.c
3946
prop_dictionary_set_uint32(dict, "chipid", sc->bge_chipid);
sys/dev/pci/if_bnx.c
577
prop_dictionary_t dict;
sys/dev/pci/if_bnx.c
892
dict = device_properties(self);
sys/dev/pci/if_bnx.c
893
prop_dictionary_set_uint32(dict, "phyflags", sc->bnx_phy_flags);
sys/dev/pci/if_bnx.c
894
prop_dictionary_set_uint32(dict, "chipid", sc->bnx_chipid);
sys/dev/pci/if_bnx.c
895
prop_dictionary_set_uint32(dict, "shared_hwcfg",sc->bnx_shared_hw_cfg);
sys/dev/pci/if_bnx.c
896
prop_dictionary_set_uint32(dict, "port_hwcfg", sc->bnx_port_hw_cfg);
sys/dev/pci/if_iavf.c
5258
iavf_parse_modprop(prop_dictionary_t dict)
sys/dev/pci/if_iavf.c
5264
if (dict == NULL)
sys/dev/pci/if_iavf.c
5267
obj = prop_dictionary_get(dict, "debug_level");
sys/dev/pci/if_iavf.c
5277
obj = prop_dictionary_get(dict, "max_qps");
sys/dev/pci/if_iavf.c
5291
obj = prop_dictionary_get(dict, "tx_itr");
sys/dev/pci/if_iavf.c
5304
obj = prop_dictionary_get(dict, "rx_itr");
sys/dev/pci/if_iavf.c
5317
obj = prop_dictionary_get(dict, "tx_ndescs");
sys/dev/pci/if_iavf.c
5334
obj = prop_dictionary_get(dict, "rx_ndescs");
sys/dev/pci/if_ixl.c
7123
ixl_parse_modprop(prop_dictionary_t dict)
sys/dev/pci/if_ixl.c
7129
if (dict == NULL)
sys/dev/pci/if_ixl.c
7132
obj = prop_dictionary_get(dict, "nomsix");
sys/dev/pci/if_ixl.c
7137
obj = prop_dictionary_get(dict, "stats_interval");
sys/dev/pci/if_ixl.c
7147
obj = prop_dictionary_get(dict, "nqps_limit");
sys/dev/pci/if_ixl.c
7155
obj = prop_dictionary_get(dict, "rx_ndescs");
sys/dev/pci/if_ixl.c
7163
obj = prop_dictionary_get(dict, "tx_ndescs");
sys/dev/pci/if_wm.c
2010
prop_dictionary_t dict;
sys/dev/pci/if_wm.c
2108
dict = device_properties(sc->sc_dev);
sys/dev/pci/if_wm.c
2109
prop_dictionary_set_uint32(dict, "mactype", sc->sc_type);
sys/dev/pci/if_wm.c
2764
ea = prop_dictionary_get(dict, "mac-address");
sys/dev/pci/if_wm.c
2784
pn = prop_dictionary_get(dict, "i82543-cfg1");
sys/dev/pci/if_wm.c
2795
pn = prop_dictionary_get(dict, "i82543-cfg2");
sys/dev/pci/if_wm.c
2925
pn = prop_dictionary_get(dict, "i82543-swdpin");
sys/dev/pci/if_wm.c
3139
prop_dictionary_set_uint32(dict, "macflags", sc->sc_flags);
sys/dev/pci/lynxfb.c
273
prop_dictionary_t dict;
sys/dev/pci/lynxfb.c
300
dict = device_properties(self);
sys/dev/pci/lynxfb.c
301
if (!prop_dictionary_get_uint32(dict, "width", &fb->width))
sys/dev/pci/lynxfb.c
303
if (!prop_dictionary_get_uint32(dict, "height", &fb->height))
sys/dev/pci/lynxfb.c
305
if (!prop_dictionary_get_uint32(dict, "depth", &fb->depth))
sys/dev/pci/lynxfb.c
307
if (!prop_dictionary_get_uint32(dict, "linebytes", &fb->stride)) {
sys/dev/pci/lynxfb.c
313
if (!prop_dictionary_get_uint32(dict, "flags", &fb->flags))
sys/dev/pci/mgafb.c
1367
prop_dictionary_t dict;
sys/dev/pci/mgafb.c
1375
dict = device_properties(sc->sc_dev);
sys/dev/pci/mgafb.c
1376
if (prop_dictionary_get_uint32(dict, "width", &prop_w) &&
sys/dev/pci/mgafb.c
1377
prop_dictionary_get_uint32(dict, "height", &prop_h)) {
sys/dev/pci/pm2fb.c
313
prop_dictionary_t dict;
sys/dev/pci/pm2fb.c
340
dict = device_properties(self);
sys/dev/pci/pm2fb.c
341
if (!prop_dictionary_get_uint32(dict, "width", &sc->sc_width)) {
sys/dev/pci/pm2fb.c
345
if (!prop_dictionary_get_uint32(dict, "height", &sc->sc_height)) {
sys/dev/pci/pm2fb.c
349
if (!prop_dictionary_get_uint32(dict, "depth", &sc->sc_depth)) {
sys/dev/pci/pm2fb.c
361
prop_dictionary_get_bool(dict, "is_console", &is_console);
sys/dev/pci/pm3fb.c
223
prop_dictionary_t dict;
sys/dev/pci/pm3fb.c
242
dict = device_properties(self);
sys/dev/pci/pm3fb.c
243
if (!prop_dictionary_get_uint32(dict, "width", &sc->sc_width)) {
sys/dev/pci/pm3fb.c
247
if (!prop_dictionary_get_uint32(dict, "height", &sc->sc_height)) {
sys/dev/pci/pm3fb.c
251
if (!prop_dictionary_get_uint32(dict, "depth", &sc->sc_depth)) {
sys/dev/pci/pm3fb.c
258
prop_dictionary_get_bool(dict, "is_console", &is_console);
sys/dev/pci/r128fb.c
197
prop_dictionary_t dict;
sys/dev/pci/r128fb.c
213
dict = device_properties(self);
sys/dev/pci/r128fb.c
214
if (!prop_dictionary_get_uint32(dict, "width", &sc->sc_width)) {
sys/dev/pci/r128fb.c
218
if (!prop_dictionary_get_uint32(dict, "height", &sc->sc_height)) {
sys/dev/pci/r128fb.c
228
if (!prop_dictionary_get_uint32(dict, "depth", &sc->sc_depth)) {
sys/dev/pci/r128fb.c
232
if (!prop_dictionary_get_uint32(dict, "linebytes", &sc->sc_stride)) {
sys/dev/pci/r128fb.c
238
prop_dictionary_get_bool(dict, "is_console", &is_console);
sys/dev/pci/voodoofb.c
364
prop_dictionary_t dict;
sys/dev/pci/voodoofb.c
411
dict = device_properties(self);
sys/dev/pci/voodoofb.c
412
if (!prop_dictionary_get_uint32(dict, "width", &width)) {
sys/dev/pci/voodoofb.c
416
if (!prop_dictionary_get_uint32(dict, "height", &height)) {
sys/dev/pci/voodoofb.c
420
if (!prop_dictionary_get_uint32(dict, "depth", &depth)) {
sys/dev/pci/voodoofb.c
696
prop_dictionary_t dict;
sys/dev/pci/voodoofb.c
699
dict = device_properties(sc->sc_dev);
sys/dev/pci/voodoofb.c
700
prop_dictionary_get_bool(dict, "is_console", &console);
sys/dev/pci/voyager/voyagerfb.c
605
prop_dictionary_t dict;
sys/dev/pci/voyager/voyagerfb.c
619
dict = device_properties(self);
sys/dev/pci/voyager/voyagerfb.c
620
prop_dictionary_get_bool(dict, "is_console", &is_console);
sys/dev/sdmmc/if_bwfm_sdio.c
599
prop_dictionary_t dict;
sys/dev/sdmmc/if_bwfm_sdio.c
605
dict = device_properties(self);
sys/dev/sdmmc/if_bwfm_sdio.c
606
if (prop_dictionary_get_string(dict, "device-path", &str)) {
sys/dev/sdmmc/if_bwfm_sdio.c
616
dict = device_properties(dev);
sys/dev/sdmmc/if_bwfm_sdio.c
617
if (!prop_dictionary_get_string(dict, "device-path", &str))
sys/dev/sysmon/sysmon_envsys.c
1145
prop_dictionary_t dict;
sys/dev/sysmon/sysmon_envsys.c
1154
while ((dict = prop_object_iterator_next(iter))) {
sys/dev/sysmon/sysmon_envsys.c
1155
obj = prop_dictionary_get(dict, "index");
sys/dev/sysmon/sysmon_envsys.c
1161
return dict;
sys/dev/sysmon/sysmon_envsys.c
1346
prop_dictionary_t dict)
sys/dev/sysmon/sysmon_envsys.c
1397
if (!prop_dictionary_set(dict, "device-properties", pdict)) {
sys/dev/sysmon/sysmon_envsys.c
1405
if (!prop_array_add(array, dict))
sys/dev/sysmon/sysmon_envsys.c
1422
prop_dictionary_t dict, envsys_data_t *edata)
sys/dev/sysmon/sysmon_envsys.c
1439
if (sme_sensor_upstring(dict, "index", indexstr))
sys/dev/sysmon/sysmon_envsys.c
1448
if (sme_sensor_upstring(dict, "description", edata->desc))
sys/dev/sysmon/sysmon_envsys.c
1471
if (sme_sensor_upbool(dict, "monitoring-supported", mon_supported))
sys/dev/sysmon/sysmon_envsys.c
1489
if (sme_sensor_upbool(dict, "allow-rfact", allow_rfact))
sys/dev/sysmon/sysmon_envsys.c
1493
error = sme_update_sensor_dictionary(dict, edata,
sys/dev/sysmon/sysmon_envsys.c
1507
if (!prop_array_add(array, dict)) {
sys/dev/sysmon/sysmon_envsys.c
1518
sme_evdrv_t->sed_sdict = dict;
sys/dev/sysmon/sysmon_envsys.c
1529
prop_object_release(dict);
sys/dev/sysmon/sysmon_envsys.c
1605
prop_object_t array, dict, obj, obj2;
sys/dev/sysmon/sysmon_envsys.c
1666
dict = prop_array_get(array, edata->sensor);
sys/dev/sysmon/sysmon_envsys.c
1667
if (prop_object_type(dict) != PROP_TYPE_DICTIONARY) {
sys/dev/sysmon/sysmon_envsys.c
1676
error = sme_update_sensor_dictionary(dict, edata, true);
sys/dev/sysmon/sysmon_envsys.c
1686
sme_update_sensor_dictionary(prop_object_t dict, envsys_data_t *edata,
sys/dev/sysmon/sysmon_envsys.c
1702
error = sme_sensor_upstring(dict, "state", sdt->desc);
sys/dev/sysmon/sysmon_envsys.c
1716
error = sme_sensor_upstring(dict, "type", sdt->desc);
sys/dev/sysmon/sysmon_envsys.c
1724
error = sme_sensor_upint32(dict, "cur-value", edata->value_cur);
sys/dev/sysmon/sysmon_envsys.c
1741
error = sme_sensor_upbool(dict, "want-percentage", true);
sys/dev/sysmon/sysmon_envsys.c
1751
error = sme_sensor_upint32(dict, "max-value",
sys/dev/sysmon/sysmon_envsys.c
1758
error = sme_sensor_upint32(dict, "min-value",
sys/dev/sysmon/sysmon_envsys.c
1768
error = sme_sensor_upuint32(dict, "rpms", edata->rpms);
sys/dev/sysmon/sysmon_envsys.c
1778
error = sme_sensor_upint32(dict, "rfact", edata->rfact);
sys/dev/sysmon/sysmon_envsys.c
1792
error = sme_sensor_upstring(dict, "drive-state", sdt->desc);
sys/dev/sysmon/sysmon_envsys.c
1806
error = sme_sensor_upstring(dict, "battery-capacity",
sys/dev/sysmon/sysmon_envsys.c
1827
prop_dictionary_t dict, tdict = NULL;
sys/dev/sysmon/sysmon_envsys.c
1889
dict = prop_array_get(array, edata->sensor);
sys/dev/sysmon/sysmon_envsys.c
1890
obj1 = prop_dictionary_get(dict, "index");
sys/dev/sysmon/sysmon_envsys.c
1928
error = sme_sensor_upstring(dict,
sys/dev/sysmon/sysmon_envsys.c
2048
error = sme_event_register(dict, edata, sme, &lims,
sys/dev/sysmon/sysmon_envsys.c
694
prop_dictionary_t dict, dict2;
sys/dev/sysmon/sysmon_envsys.c
750
dict = prop_dictionary_create();
sys/dev/sysmon/sysmon_envsys.c
751
if (!dict) {
sys/dev/sysmon/sysmon_envsys.c
760
dict, edata);
sys/dev/sysmon/sysmon_envsys.c
934
prop_dictionary_t dict;
sys/dev/sysmon/sysmon_envsys.c
947
while ((dict = prop_object_iterator_next(iter))) {
sys/dev/sysmon/sysmon_envsys.c
948
KASSERT(prop_object_type(dict) == PROP_TYPE_DICTIONARY);
sys/dev/sysmon/sysmon_envsys.c
949
iter2 = prop_dictionary_iterator(dict);
sys/dev/sysmon/sysmon_envsys.c
956
prop_dictionary_remove(dict,
sys/dev/sysmon/sysmon_envsys.c
962
__func__, prop_dictionary_count(dict)));
sys/dev/sysmon/sysmon_envsys.c
963
prop_object_release(dict);
sys/dev/sysmon/sysmon_envsys_util.c
100
sme_sensor_upuint32(prop_dictionary_t dict, const char *key, uint32_t val)
sys/dev/sysmon/sysmon_envsys_util.c
104
KASSERT(dict != NULL);
sys/dev/sysmon/sysmon_envsys_util.c
106
obj = prop_dictionary_get(dict, key);
sys/dev/sysmon/sysmon_envsys_util.c
109
if (!prop_dictionary_set_uint32(dict, key, val)) {
sys/dev/sysmon/sysmon_envsys_util.c
116
if (!prop_dictionary_set_uint32(dict, key, val)) {
sys/dev/sysmon/sysmon_envsys_util.c
127
sme_sensor_upstring(prop_dictionary_t dict, const char *key, const char *str)
sys/dev/sysmon/sysmon_envsys_util.c
131
KASSERT(dict != NULL);
sys/dev/sysmon/sysmon_envsys_util.c
133
obj = prop_dictionary_get(dict, key);
sys/dev/sysmon/sysmon_envsys_util.c
135
if (!prop_dictionary_set_string(dict, key, str)) {
sys/dev/sysmon/sysmon_envsys_util.c
142
if (!prop_dictionary_set_string(dict, key, str)) {
sys/dev/sysmon/sysmon_envsys_util.c
46
sme_sensor_upbool(prop_dictionary_t dict, const char *key, bool val)
sys/dev/sysmon/sysmon_envsys_util.c
50
KASSERT(dict != NULL);
sys/dev/sysmon/sysmon_envsys_util.c
52
obj = prop_dictionary_get(dict, key);
sys/dev/sysmon/sysmon_envsys_util.c
55
if (!prop_dictionary_set_bool(dict, key, val)) {
sys/dev/sysmon/sysmon_envsys_util.c
62
if (!prop_dictionary_set_bool(dict, key, val)) {
sys/dev/sysmon/sysmon_envsys_util.c
73
sme_sensor_upint32(prop_dictionary_t dict, const char *key, int32_t val)
sys/dev/sysmon/sysmon_envsys_util.c
77
KASSERT(dict != NULL);
sys/dev/sysmon/sysmon_envsys_util.c
79
obj = prop_dictionary_get(dict, key);
sys/dev/sysmon/sysmon_envsys_util.c
82
if (!prop_dictionary_set_int32(dict, key, val)) {
sys/dev/sysmon/sysmon_envsys_util.c
89
if (!prop_dictionary_set_int32(dict, key, val)) {
sys/dev/sysmon/sysmon_power.c
1008
ped->dict = prop_dictionary_create();
sys/dev/sysmon/sysmon_power.c
1013
prop_object_release(ped->dict);
sys/dev/sysmon/sysmon_power.c
104
prop_dictionary_t dict;
sys/dev/sysmon/sysmon_power.c
331
if (!ped || !ped->dict || !pev_data)
sys/dev/sysmon/sysmon_power.c
354
error = sysmon_power_make_dictionary(ped->dict,
sys/dev/sysmon/sysmon_power.c
387
error = sysmon_power_make_dictionary(ped->dict,
sys/dev/sysmon/sysmon_power.c
632
if (!ped || !ped->dict) {
sys/dev/sysmon/sysmon_power.c
658
ped->dict);
sys/dev/sysmon/sysmon_power.c
685
sysmon_power_make_dictionary(prop_dictionary_t dict, void *power_data,
sys/dev/sysmon/sysmon_power.c
708
if ((str) != NULL && !prop_dictionary_set_string(dict, \
sys/dev/sysmon/sysmon_power.c
786
iter = prop_dictionary_iterator(ped->dict);
sys/dev/sysmon/sysmon_power.c
791
prop_dictionary_remove(ped->dict,
sys/dev/sysmon/sysmon_power.c
797
prop_object_release(ped->dict);
sys/dev/sysmon/sysmon_power.c
850
ped->dict = prop_dictionary_create();
sys/dev/sysmon/sysmon_power.c
855
prop_object_release(ped->dict);
sys/dev/usb/usb_subr.c
1080
prop_dictionary_t dict = device_properties(dv);
sys/dev/usb/usb_subr.c
1090
prop_dictionary_set_uint8(dict, "address", dev->ud_addr);
sys/dev/usb/usb_subr.c
1099
prop_dictionary_set_uint8(dict, "hub-address", hdev->ud_addr);
sys/dev/usb/usb_subr.c
1102
prop_dictionary_set_uint8(dict, "hub-port", p);
sys/dev/usb/usb_subr.c
1108
prop_dictionary_set_uint8(dict, "class", class);
sys/dev/usb/usb_subr.c
1109
prop_dictionary_set_uint8(dict, "subclass", subclass);
sys/dev/usb/usb_subr.c
1110
prop_dictionary_set_uint16(dict, "release", release);
sys/dev/usb/usb_subr.c
1111
prop_dictionary_set_uint8(dict, "proto", proto);
sys/dev/usb/usb_subr.c
1112
prop_dictionary_set_uint16(dict, "vendor-id", vendor);
sys/dev/usb/usb_subr.c
1113
prop_dictionary_set_uint16(dict, "product-id", product);
sys/dev/usb/usb_subr.c
1116
prop_dictionary_set_string(dict,
sys/dev/usb/usb_subr.c
1120
prop_dictionary_set_string(dict,
sys/dev/usb/usb_subr.c
1124
prop_dictionary_set_string(dict,
sys/dev/veriexec.c
102
veriexec_delete(prop_dictionary_t dict, struct lwp *l)
sys/dev/veriexec.c
108
if (!prop_dictionary_get_string(dict, "file", &file))
sys/dev/veriexec.c
127
veriexec_query(prop_dictionary_t dict, prop_dictionary_t rdict, struct lwp *l)
sys/dev/veriexec.c
133
if (!prop_dictionary_get_string(dict, "file", &file))
sys/dev/veriexec.c
151
prop_dictionary_t dict;
sys/dev/veriexec.c
190
error = prop_dictionary_copyin_ioctl(plistref, cmd, &dict);
sys/dev/veriexec.c
194
error = veriexec_file_add(l, dict);
sys/dev/veriexec.c
195
prop_object_release(dict);
sys/dev/veriexec.c
199
error = prop_dictionary_copyin_ioctl(plistref, cmd, &dict);
sys/dev/veriexec.c
203
error = veriexec_delete(dict, l);
sys/dev/veriexec.c
204
prop_object_release(dict);
sys/dev/veriexec.c
210
error = prop_dictionary_copyin_ioctl(plistref, cmd, &dict);
sys/dev/veriexec.c
216
prop_object_release(dict);
sys/dev/veriexec.c
221
error = veriexec_query(dict, rdict, l);
sys/dev/veriexec.c
228
prop_object_release(dict);
sys/dev/wsfb/genfb.c
170
prop_dictionary_t dict;
sys/dev/wsfb/genfb.c
177
dict = device_properties(sc->sc_dev);
sys/dev/wsfb/genfb.c
179
printf("%s", prop_dictionary_externalize(dict));
sys/dev/wsfb/genfb.c
181
prop_dictionary_get_bool(dict, "is_console", &console);
sys/dev/wsfb/genfb.c
183
if (!prop_dictionary_get_uint32(dict, "width", &sc->sc_width)) {
sys/dev/wsfb/genfb.c
187
if (!prop_dictionary_get_uint32(dict, "height", &sc->sc_height)) {
sys/dev/wsfb/genfb.c
191
if (!prop_dictionary_get_uint32(dict, "depth", &sc->sc_depth)) {
sys/dev/wsfb/genfb.c
196
if (!prop_dictionary_get_uint64(dict, "address", &fboffset)) {
sys/dev/wsfb/genfb.c
204
if (prop_dictionary_get_uint64(dict, "virtual_address", &fbaddr)) {
sys/dev/wsfb/genfb.c
209
if (!prop_dictionary_get_bool(dict, "enable_shadowfb",
sys/dev/wsfb/genfb.c
217
if (!prop_dictionary_get_uint32(dict, "linebytes", &sc->sc_stride))
sys/dev/wsfb/genfb.c
231
if (prop_dictionary_get_uint64(dict, "devcmap", &devcmap)) {
sys/dev/wsfb/genfb.c
238
if (prop_dictionary_get_uint64(dict, "cmap_callback", &cmap_cb)) {
sys/dev/wsfb/genfb.c
245
if (prop_dictionary_get_uint64(dict, "pmf_callback", &pmf_cb)) {
sys/dev/wsfb/genfb.c
252
if (prop_dictionary_get_uint64(dict, "mode_callback", &mode_cb)) {
sys/dev/wsfb/genfb.c
259
if (prop_dictionary_get_uint64(dict, "backlight_callback", &bl_cb)) {
sys/dev/wsfb/genfb.c
269
if (prop_dictionary_get_uint64(dict, "brightness_callback", &br_cb)) {
sys/dev/wsfb/genfb.c
298
prop_dictionary_t dict;
sys/dev/wsfb/genfb.c
311
dict = device_properties(sc->sc_dev);
sys/dev/wsfb/genfb.c
312
prop_dictionary_get_bool(dict, "is_console", &console);
sys/dev/wsfb/genfb.c
314
if (prop_dictionary_get_uint16(dict, "cursor-row", &crow) == false)
sys/dev/wsfb/genfb.c
316
if (prop_dictionary_get_bool(dict, "clear-screen", &scp->sc_want_clear)
sys/dev/wsfb/genfb.c
756
prop_dictionary_t dict = device_properties(dev);
sys/dev/wsfb/genfb.c
762
edid_data = prop_dictionary_get(dict, "EDID");
sys/kern/kern_veriexec.c
1046
veriexec_file_add(struct lwp *l, prop_dictionary_t dict)
sys/kern/kern_veriexec.c
1056
if (!prop_dictionary_get_string(dict, "file", &file))
sys/kern/kern_veriexec.c
1075
fp_type = prop_string_value(prop_dictionary_get(dict, "fp-type"));
sys/kern/kern_veriexec.c
1083
if (prop_data_size(prop_dictionary_get(dict, "fp")) !=
sys/kern/kern_veriexec.c
1092
memcpy(vfe->fp, prop_data_value(prop_dictionary_get(dict, "fp")),
sys/kern/kern_veriexec.c
1098
if (prop_dictionary_get_uint8(dict, "entry-type", &vfe->type) == FALSE)
sys/kern/kern_veriexec.c
1117
if (prop_bool_true(prop_dictionary_get(dict, "keep-filename"))) {
sys/kern/kern_veriexec.c
1123
if (prop_bool_true(prop_dictionary_get(dict, "eval-on-load")) ||
sys/kern/subr_autoconf.c
602
prop_dictionary_t ev, dict = device_properties(dev);
sys/kern/subr_autoconf.c
618
if (prop_dictionary_get_string(dict, "location", &where)) {
sys/kern/subr_device.c
438
prop_dictionary_t dict = dev->dv_properties;
sys/kern/subr_device.c
447
propval = prop_dictionary_get(dict, args->prop);
sys/kern/sys_module.c
101
if (dict != NULL) {
sys/kern/sys_module.c
102
prop_object_release(dict);
sys/kern/sys_module.c
64
prop_dictionary_t dict;
sys/kern/sys_module.c
89
dict = prop_dictionary_internalize(props);
sys/kern/sys_module.c
90
if (dict == NULL) {
sys/kern/sys_module.c
95
dict = NULL;
sys/kern/sys_module.c
99
error = module_load(path, ml_flags, dict, MODULE_CLASS_ANY);
sys/net/bsd-comp.c
1017
dictp = &db->dict[hval];
sys/net/bsd-comp.c
1026
dictp = &db->dict[hval];
sys/net/bsd-comp.c
1034
dictp2 = &db->dict[max_ent+1];
sys/net/bsd-comp.c
1035
if (db->dict[dictp2->cptr].codem1 == max_ent) {
sys/net/bsd-comp.c
1036
db->dict[dictp2->cptr].codem1 = BADCODEM1;
sys/net/bsd-comp.c
1079
incode, finchar, db->dict[finchar].cptr, max_ent);
sys/net/bsd-comp.c
1084
db->dict[finchar].cptr, dictp->codem1);
sys/net/bsd-comp.c
127
} dict[1];
sys/net/bsd-comp.c
343
newlen = sizeof(*db) + (hsize-1) * (sizeof(db->dict[0]));
sys/net/bsd-comp.c
413
db->dict[--i].codem1 = BADCODEM1;
sys/net/bsd-comp.c
414
db->dict[i].cptr = 0;
sys/net/bsd-comp.c
566
dictp = &db->dict[hval];
sys/net/bsd-comp.c
582
dictp = &db->dict[hval];
sys/net/bsd-comp.c
602
dictp2 = &db->dict[max_ent+1];
sys/net/bsd-comp.c
603
if (db->dict[dictp2->cptr].codem1 == max_ent)
sys/net/bsd-comp.c
604
db->dict[dictp2->cptr].codem1 = BADCODEM1;
sys/net/bsd-comp.c
710
dictp = &db->dict[hval];
sys/net/bsd-comp.c
726
dictp = &db->dict[hval];
sys/net/bsd-comp.c
746
dictp2 = &db->dict[max_ent+1];
sys/net/bsd-comp.c
747
if (db->dict[dictp2->cptr].codem1 == max_ent)
sys/net/bsd-comp.c
748
db->dict[dictp2->cptr].codem1 = BADCODEM1;
sys/net/bsd-comp.c
984
dictp = &db->dict[db->dict[finchar].cptr];
tests/lib/libprop/t_proplib.c
106
prop_dictionary_t dict;
tests/lib/libprop/t_proplib.c
109
dict = prop_dictionary_create();
tests/lib/libprop/t_proplib.c
110
ATF_REQUIRE(dict != NULL);
tests/lib/libprop/t_proplib.c
116
ATF_REQUIRE_EQ(prop_dictionary_set(dict, "one", num), true);
tests/lib/libprop/t_proplib.c
124
ATF_REQUIRE_EQ(prop_dictionary_set(dict, "two", str), true);
tests/lib/libprop/t_proplib.c
137
dict_copy = prop_dictionary_copy(dict);
tests/lib/libprop/t_proplib.c
143
ATF_REQUIRE_EQ(prop_dictionary_set(dict, "three", arr), true);
tests/lib/libprop/t_proplib.c
150
ATF_REQUIRE_EQ(prop_dictionary_set(dict, "true-val", val), true);
tests/lib/libprop/t_proplib.c
155
ATF_REQUIRE_EQ(prop_dictionary_set(dict, "false-val", val), true);
tests/lib/libprop/t_proplib.c
159
ext1 = prop_dictionary_externalize(dict);
tests/lib/libprop/t_proplib.c
176
prop_object_release(dict);
tests/lib/libprop/t_proplib.c
221
prop_dictionary_t dict = prop_dictionary_internalize(
tests/lib/libprop/t_proplib.c
237
ATF_REQUIRE(dict != NULL);
tests/lib/libprop/t_proplib.c
243
ok = prop_dictionary_get_data(dict, "encoded", &data, &size);
tests/lib/libprop/t_proplib.c
248
ok = prop_dictionary_get_data(dict, "length-1", &data, &size);
tests/lib/libprop/t_proplib.c
253
ok = prop_dictionary_get_data(dict, "length-2", &data, &size);
tests/lib/libprop/t_proplib.c
258
ok = prop_dictionary_get_data(dict, "length-3", &data, &size);
tests/lib/libprop/t_proplib.c
263
prop_object_release(dict);
tests/lib/libprop/t_proplib.c
837
prop_dictionary_t dict;
tests/lib/libprop/t_proplib.c
842
dict = prop_dictionary_create();
tests/lib/libprop/t_proplib.c
843
ATF_REQUIRE(dict != NULL);
tests/lib/libprop/t_proplib.c
845
ATF_REQUIRE(prop_dictionary_set_schar(dict, "schar", SCHAR_MIN));
tests/lib/libprop/t_proplib.c
846
ATF_REQUIRE(prop_dictionary_get_schar(dict, "schar", &val.v_schar));
tests/lib/libprop/t_proplib.c
849
ATF_REQUIRE(prop_dictionary_set_short(dict, "shrt", SHRT_MIN));
tests/lib/libprop/t_proplib.c
850
ATF_REQUIRE(prop_dictionary_get_short(dict, "shrt", &val.v_shrt));
tests/lib/libprop/t_proplib.c
853
ATF_REQUIRE(prop_dictionary_set_int(dict, "int", INT_MIN));
tests/lib/libprop/t_proplib.c
854
ATF_REQUIRE(prop_dictionary_get_int(dict, "int", &val.v_int));
tests/lib/libprop/t_proplib.c
857
ATF_REQUIRE(prop_dictionary_set_long(dict, "long", LONG_MIN));
tests/lib/libprop/t_proplib.c
858
ATF_REQUIRE(prop_dictionary_get_long(dict, "long", &val.v_long));
tests/lib/libprop/t_proplib.c
861
ATF_REQUIRE(prop_dictionary_set_longlong(dict, "longlong", LLONG_MIN));
tests/lib/libprop/t_proplib.c
862
ATF_REQUIRE(prop_dictionary_get_longlong(dict, "longlong",
tests/lib/libprop/t_proplib.c
866
ATF_REQUIRE(prop_dictionary_set_intptr(dict, "intptr", INTPTR_MIN));
tests/lib/libprop/t_proplib.c
867
ATF_REQUIRE(prop_dictionary_get_intptr(dict, "intptr", &val.v_intptr));
tests/lib/libprop/t_proplib.c
870
ATF_REQUIRE(prop_dictionary_set_int8(dict, "int8", INT8_MIN));
tests/lib/libprop/t_proplib.c
871
ATF_REQUIRE(prop_dictionary_get_int8(dict, "int8", &val.v_int8));
tests/lib/libprop/t_proplib.c
874
ATF_REQUIRE(prop_dictionary_set_int16(dict, "int16", INT16_MIN));
tests/lib/libprop/t_proplib.c
875
ATF_REQUIRE(prop_dictionary_get_int16(dict, "int16", &val.v_int16));
tests/lib/libprop/t_proplib.c
878
ATF_REQUIRE(prop_dictionary_set_int32(dict, "int32", INT32_MIN));
tests/lib/libprop/t_proplib.c
879
ATF_REQUIRE(prop_dictionary_get_int32(dict, "int32", &val.v_int32));
tests/lib/libprop/t_proplib.c
882
ATF_REQUIRE(prop_dictionary_set_int64(dict, "int64", INT64_MIN));
tests/lib/libprop/t_proplib.c
883
ATF_REQUIRE(prop_dictionary_get_int64(dict, "int64", &val.v_int64));
tests/lib/libprop/t_proplib.c
887
ATF_REQUIRE(prop_dictionary_set_uchar(dict, "uchar", UCHAR_MAX));
tests/lib/libprop/t_proplib.c
888
ATF_REQUIRE(prop_dictionary_get_uchar(dict, "uchar", &val.v_uchar));
tests/lib/libprop/t_proplib.c
891
ATF_REQUIRE(prop_dictionary_set_ushort(dict, "ushrt", USHRT_MAX));
tests/lib/libprop/t_proplib.c
892
ATF_REQUIRE(prop_dictionary_get_ushort(dict, "ushrt", &val.v_ushrt));
tests/lib/libprop/t_proplib.c
895
ATF_REQUIRE(prop_dictionary_set_uint(dict, "uint", UINT_MAX));
tests/lib/libprop/t_proplib.c
896
ATF_REQUIRE(prop_dictionary_get_uint(dict, "uint", &val.v_uint));
tests/lib/libprop/t_proplib.c
899
ATF_REQUIRE(prop_dictionary_set_ulong(dict, "ulong", ULONG_MAX));
tests/lib/libprop/t_proplib.c
900
ATF_REQUIRE(prop_dictionary_get_ulong(dict, "ulong", &val.v_ulong));
tests/lib/libprop/t_proplib.c
903
ATF_REQUIRE(prop_dictionary_set_ulonglong(dict, "ulonglong",
tests/lib/libprop/t_proplib.c
905
ATF_REQUIRE(prop_dictionary_get_ulonglong(dict, "ulonglong",
tests/lib/libprop/t_proplib.c
909
ATF_REQUIRE(prop_dictionary_set_uintptr(dict, "uintptr", UINTPTR_MAX));
tests/lib/libprop/t_proplib.c
910
ATF_REQUIRE(prop_dictionary_get_uintptr(dict, "uintptr",
tests/lib/libprop/t_proplib.c
914
ATF_REQUIRE(prop_dictionary_set_uint8(dict, "uint8", UINT8_MAX));
tests/lib/libprop/t_proplib.c
915
ATF_REQUIRE(prop_dictionary_get_uint8(dict, "uint8", &val.v_uint8));
tests/lib/libprop/t_proplib.c
918
ATF_REQUIRE(prop_dictionary_set_uint16(dict, "uint16", UINT16_MAX));
tests/lib/libprop/t_proplib.c
919
ATF_REQUIRE(prop_dictionary_get_uint16(dict, "uint16", &val.v_uint16));
tests/lib/libprop/t_proplib.c
922
ATF_REQUIRE(prop_dictionary_set_uint32(dict, "uint32", UINT32_MAX));
tests/lib/libprop/t_proplib.c
923
ATF_REQUIRE(prop_dictionary_get_uint32(dict, "uint32", &val.v_uint32));
tests/lib/libprop/t_proplib.c
926
ATF_REQUIRE(prop_dictionary_set_uint64(dict, "uint64", UINT64_MAX));
tests/lib/libprop/t_proplib.c
927
ATF_REQUIRE(prop_dictionary_get_uint64(dict, "uint64", &val.v_uint64));
tests/lib/libprop/t_proplib.c
930
ATF_REQUIRE(prop_dictionary_set_string_nocopy(dict, "string",
tests/lib/libprop/t_proplib.c
932
ATF_REQUIRE(prop_dictionary_get_string(dict, "string", &cp));
tests/lib/libprop/t_proplib.c
934
prop_dictionary_remove(dict, "string");
tests/lib/libprop/t_proplib.c
936
ATF_REQUIRE(prop_dictionary_set_string(dict, "string", const_string1));
tests/lib/libprop/t_proplib.c
937
ATF_REQUIRE(prop_dictionary_get_string(dict, "string", &cp));
tests/lib/libprop/t_proplib.c
941
ATF_REQUIRE(prop_dictionary_set_data_nocopy(dict, "data",
tests/lib/libprop/t_proplib.c
944
ATF_REQUIRE(prop_dictionary_get_data(dict, "data", &v, NULL));
tests/lib/libprop/t_proplib.c
946
prop_dictionary_remove(dict, "data");
tests/lib/libprop/t_proplib.c
949
ATF_REQUIRE(prop_dictionary_set_data(dict, "data", const_data1,
tests/lib/libprop/t_proplib.c
951
ATF_REQUIRE(prop_dictionary_get_data(dict, "data", &v, &size));
tests/lib/libprop/t_proplib.c
956
prop_object_release(dict);
usr.bin/spell/spellprog/spellprog.c
105
static int dict(char *, char *);
usr.bin/spell/spellprog/spellprog.c
742
i = dict(bp, ep);
usr.bin/spell/spellprog/spellprog.c
751
i = dict(bp, ep);
usr.sbin/btdevctl/btdevctl.c
236
bthub_pioctl(unsigned long cmd, prop_dictionary_t dict)
usr.sbin/btdevctl/btdevctl.c
244
if (prop_dictionary_send_ioctl(dict, fd, cmd))
usr.sbin/btdevctl/print.c
103
obj = prop_dictionary_get(dict, BTDEVmode);
usr.sbin/btdevctl/print.c
107
if (prop_dictionary_get_uint16(dict, BTDEVvendor, &v))
usr.sbin/btdevctl/print.c
110
if (prop_dictionary_get_uint16(dict, BTDEVproduct, &v))
usr.sbin/btdevctl/print.c
113
obj = prop_dictionary_get(dict, BTDEVtype);
usr.sbin/btdevctl/print.c
121
cfg_bthidev(dict);
usr.sbin/btdevctl/print.c
126
cfg_btsco(dict);
usr.sbin/btdevctl/print.c
134
cfg_bthidev(prop_dictionary_t dict)
usr.sbin/btdevctl/print.c
138
obj = prop_dictionary_get(dict, BTHIDEVcontrolpsm);
usr.sbin/btdevctl/print.c
143
obj = prop_dictionary_get(dict, BTHIDEVinterruptpsm);
usr.sbin/btdevctl/print.c
148
obj = prop_dictionary_get(dict, BTHIDEVreconnect);
usr.sbin/btdevctl/print.c
152
obj = prop_dictionary_get(dict, BTHIDEVdescriptor);
usr.sbin/btdevctl/print.c
158
cfg_btsco(prop_dictionary_t dict)
usr.sbin/btdevctl/print.c
162
obj = prop_dictionary_get(dict, BTSCOlisten);
usr.sbin/btdevctl/print.c
165
obj = prop_dictionary_get(dict, BTSCOchannel);
usr.sbin/btdevctl/print.c
79
static void cfg_bthidev(prop_dictionary_t dict);
usr.sbin/btdevctl/print.c
80
static void cfg_btsco(prop_dictionary_t dict);
usr.sbin/btdevctl/print.c
86
cfg_print(prop_dictionary_t dict)
usr.sbin/btdevctl/print.c
91
obj = prop_dictionary_get(dict, BTDEVladdr);
usr.sbin/btdevctl/print.c
97
obj = prop_dictionary_get(dict, BTDEVraddr);
usr.sbin/btdevctl/sdp.c
152
cfg_search(sdp_session_t ss, int i, prop_dictionary_t dict)
usr.sbin/btdevctl/sdp.c
161
if (config_pnp(dict, &rec) == 0)
usr.sbin/btdevctl/sdp.c
170
errno = (*cfgtype[i].handler)(dict, &rec);
usr.sbin/btdevctl/sdp.c
181
prop_dictionary_t dict;
usr.sbin/btdevctl/sdp.c
185
dict = prop_dictionary_create();
usr.sbin/btdevctl/sdp.c
186
if (dict == NULL)
usr.sbin/btdevctl/sdp.c
195
if (!cfg_search(ss, i, dict))
usr.sbin/btdevctl/sdp.c
199
return dict;
usr.sbin/btdevctl/sdp.c
214
config_pnp(prop_dictionary_t dict, sdp_data_t *rec)
usr.sbin/btdevctl/sdp.c
259
if (!prop_dictionary_set_uint16(dict, BTDEVvendor, (uint16_t)vendor))
usr.sbin/btdevctl/sdp.c
262
if (!prop_dictionary_set_uint16(dict, BTDEVproduct, (uint16_t)product))
usr.sbin/btdevctl/sdp.c
272
config_hid(prop_dictionary_t dict, sdp_data_t *rec)
usr.sbin/btdevctl/sdp.c
321
if (!prop_dictionary_set_string_nocopy(dict, BTDEVtype, "bthidev"))
usr.sbin/btdevctl/sdp.c
324
if (!prop_dictionary_set_int32(dict, BTHIDEVcontrolpsm, control_psm) ||
usr.sbin/btdevctl/sdp.c
325
!prop_dictionary_set_int32(dict, BTHIDEVinterruptpsm,
usr.sbin/btdevctl/sdp.c
330
if (obj == NULL || !prop_dictionary_set(dict, BTHIDEVdescriptor, obj))
usr.sbin/btdevctl/sdp.c
336
if (!prop_dictionary_set_string_nocopy(dict, BTDEVmode, mode))
usr.sbin/btdevctl/sdp.c
340
if (!prop_dictionary_set_bool(dict, BTHIDEVreconnect, true))
usr.sbin/btdevctl/sdp.c
351
config_hset(prop_dictionary_t dict, sdp_data_t *rec)
usr.sbin/btdevctl/sdp.c
373
if (!prop_dictionary_set_string_nocopy(dict, BTDEVtype, "btsco"))
usr.sbin/btdevctl/sdp.c
376
if (!prop_dictionary_set_int32(dict, BTSCOchannel, channel))
usr.sbin/btdevctl/sdp.c
386
config_hf(prop_dictionary_t dict, sdp_data_t *rec)
usr.sbin/btdevctl/sdp.c
408
if (!prop_dictionary_set_string_nocopy(dict, BTDEVtype, "btsco"))
usr.sbin/btdevctl/sdp.c
411
if (!prop_dictionary_set_bool(dict, BTSCOlisten, true))
usr.sbin/btdevctl/sdp.c
414
if (!prop_dictionary_set_int32(dict, BTSCOchannel, channel))
usr.sbin/bthcid/config.c
54
prop_dictionary_t dict;
usr.sbin/bthcid/config.c
82
dict = prop_dictionary_internalize(xml);
usr.sbin/bthcid/config.c
85
return dict;
usr.sbin/envstat/config.c
129
sb->dict = prop_dictionary_create();
usr.sbin/envstat/config.c
130
if (!sb->dict)
usr.sbin/envstat/config.c
133
sb->dict = prop_dictionary_copy(sensordict);
usr.sbin/envstat/config.c
188
config_dict_extract(prop_dictionary_t dict, const char *prop, bool nflag)
usr.sbin/envstat/config.c
194
obj = dict;
usr.sbin/envstat/config.c
371
lindex = prop_dictionary_get(sb->dict, "index");
usr.sbin/envstat/config.c
395
config_devblock_check_sensorprops(sdict, sb->dict, sensor);
usr.sbin/envstat/config.c
411
if (!prop_array_add(db->array, sb->dict))
usr.sbin/envstat/config.c
436
prop_object_release(sb->dict);
usr.sbin/envstat/envstat.c
131
prop_dictionary_t dict;
usr.sbin/envstat/envstat.c
236
&dict);
usr.sbin/envstat/envstat.c
248
if (add_sensors(ndict, dict, mydevname, NULL))
usr.sbin/envstat/envstat.c
272
if (add_sensors(ndict, dict, dvstring, sstring))
usr.sbin/envstat/envstat.c
292
prop_object_release(dict);
usr.sbin/envstat/envstat.c
293
dict = ndict;
usr.sbin/envstat/envstat.c
298
config_dict_extract(dict, *argv, true);
usr.sbin/envstat/envstat.c
300
config_dict_dump(dict);
usr.sbin/envstat/envstat.c
311
dict = prop_dictionary_create();
usr.sbin/envstat/envstat.c
312
if (!dict)
usr.sbin/envstat/envstat.c
315
rval = prop_dictionary_set_bool(dict,
usr.sbin/envstat/envstat.c
322
rval = prop_dictionary_send_ioctl(dict, sysmonfd,
usr.sbin/envstat/envstat.c
429
add_sensors(prop_dictionary_t ndict, prop_dictionary_t dict, const char *dev, const char *sensor)
usr.sbin/envstat/envstat.c
440
if (prop_dictionary_count(dict) == 0)
usr.sbin/envstat/envstat.c
456
iter = prop_dictionary_iterator(dict);
usr.sbin/envstat/envstat.c
460
array = prop_dictionary_get_keysym(dict, obj);
usr.sbin/envstat/envstat.c
520
prop_dictionary_t dict;
usr.sbin/envstat/envstat.c
527
rval = prop_dictionary_recv_ioctl(fd, ENVSYS_GETDICTIONARY, &dict);
usr.sbin/envstat/envstat.c
532
if (prop_dictionary_count(dict) == 0) {
usr.sbin/envstat/envstat.c
539
obj = prop_dictionary_get(dict, mydevname);
usr.sbin/envstat/envstat.c
552
iter = prop_dictionary_iterator(dict);
usr.sbin/envstat/envstat.c
560
array = prop_dictionary_get_keysym(dict, obj);
usr.sbin/envstat/envstat.c
619
prop_object_release(dict);
usr.sbin/envstat/envstat.h
37
prop_dictionary_t dict; /* dictionary associated */
usr.sbin/hdaudioctl/hdaudioctl.c
111
prop_dictionary_t dict;
usr.sbin/hdaudioctl/hdaudioctl.c
138
dict = (prop_dictionary_t)obj;
usr.sbin/hdaudioctl/hdaudioctl.c
139
prop_dictionary_get_uint16(dict, "codecid", &codecid);
usr.sbin/hdaudioctl/hdaudioctl.c
140
prop_dictionary_get_uint16(dict, "nid", &nid);
usr.sbin/hdaudioctl/hdaudioctl.c
141
prop_dictionary_get_uint16(dict, "vendor-id", &vendor);
usr.sbin/hdaudioctl/hdaudioctl.c
142
prop_dictionary_get_uint16(dict, "product-id", &product);
usr.sbin/hdaudioctl/hdaudioctl.c
143
prop_dictionary_get_uint32(dict, "subsystem-id", &subsystem);
usr.sbin/hdaudioctl/hdaudioctl.c
144
prop_dictionary_get_string(dict, "device", &device);
usr.sbin/hdaudioctl/hdaudioctl.c
262
prop_dictionary_t request, response, dict;
usr.sbin/hdaudioctl/hdaudioctl.c
300
dict = (prop_dictionary_t)obj;
usr.sbin/hdaudioctl/hdaudioctl.c
301
prop_dictionary_get_uint32(dict, "config", &config);
usr.sbin/hdaudioctl/hdaudioctl.c
302
prop_dictionary_get_uint16(dict, "nid", &nid);
usr.sbin/ofctl/ofctl.c
161
of_tree_fill(prop_dictionary_t dict, struct of_node *node)
usr.sbin/ofctl/ofctl.c
169
prop_dictionary_get(dict, "node"));
usr.sbin/ofctl/ofctl.c
171
propdict = prop_dictionary_get(dict, "properties");
usr.sbin/ofctl/ofctl.c
178
children = prop_dictionary_get(dict, "children");
usr.sbin/ofctl/ofctl.c
191
of_tree_init(prop_dictionary_t dict)
usr.sbin/ofctl/ofctl.c
199
of_tree_fill(dict, &of_root);
usr.sbin/ofctl/ofctl.c
242
prop_dictionary_t dict, propdict;
usr.sbin/ofctl/ofctl.c
252
dict = prop_dictionary_create();
usr.sbin/ofctl/ofctl.c
253
prop_dictionary_set(dict, "node",
usr.sbin/ofctl/ofctl.c
276
prop_dictionary_set(dict, "properties", propdict);
usr.sbin/ofctl/ofctl.c
291
prop_dictionary_set(dict, "children", children);
usr.sbin/ofctl/ofctl.c
294
return dict;
usr.sbin/ofctl/ofctl.c
300
prop_dictionary_t dict;
usr.sbin/ofctl/ofctl.c
311
dict = of_proplib_tree_fill(fd, rootid);
usr.sbin/ofctl/ofctl.c
316
return dict;
usr.sbin/powerd/powerd.c
321
prop_dictionary_t dict;
usr.sbin/powerd/powerd.c
326
error = prop_dictionary_recv_ioctl(fd, POWER_EVENT_RECVDICT, &dict);
usr.sbin/powerd/powerd.c
335
buf = prop_dictionary_externalize(dict);
usr.sbin/powerd/powerd.c
341
if (!prop_dictionary_get_string(dict, "powerd-script-name", &argv[0])) {
usr.sbin/powerd/powerd.c
345
if (!prop_dictionary_get_string(dict, "driver-name", &argv[1])) {
usr.sbin/powerd/powerd.c
349
if (!prop_dictionary_get_string(dict, "powerd-event-name", &argv[2])) {
usr.sbin/powerd/powerd.c
355
if (!prop_dictionary_get_string(dict, "sensor-name", &argv[3]))
usr.sbin/powerd/powerd.c
357
if (!prop_dictionary_get_string(dict, "state-description", &argv[4]))