/src/common/include/prop/ |
proplib.h | 35 #include <prop/prop_array.h> 36 #include <prop/prop_bool.h> 37 #include <prop/prop_data.h> 38 #include <prop/prop_dictionary.h> 39 #include <prop/prop_number.h> 40 #include <prop/prop_string.h> 42 #include <prop/prop_ingest.h> 44 #include <prop/plistref.h>
|
Makefile | 7 INCSDIR= /usr/include/prop
|
prop_bool.h | 35 #include <prop/prop_object.h>
|
/src/usr.sbin/memswitch/ |
methods.c | 98 fill_uchar(struct property *prop) 103 prop->current_value.byte[0] = current_values[prop->offset]; 104 prop->current_value.byte[1] = 0; 105 prop->current_value.byte[2] = 0; 106 prop->current_value.byte[3] = 0; 107 prop->value_valid = 1; 113 fill_ushort(struct property *prop) 118 prop->current_value.byte[0] = current_values[prop->offset] [all...] |
/src/sys/sys/ |
devmon.h | 29 #include <prop/proplib.h>
|
/src/sys/dev/fdt/ |
fdt_console.c | 79 const char *prop; local in function:fdtbus_get_stdout_path 83 prop = fdt_getprop(fdtbus_get_data(), off, "stdout-path", NULL); 84 if (prop != NULL) 85 return prop; 95 const char *prop, *p; local in function:fdtbus_get_stdout_phandle 98 prop = fdtbus_get_stdout_path(); 99 if (prop == NULL) 102 p = strchr(prop, ':'); 103 len = p == NULL ? strlen(prop) : (p - prop); 121 const char *prop, *p; local in function:fdtbus_get_stdout_speed 137 const char *prop, *p; local in function:fdtbus_get_stdout_flags [all...] |
fdt_rtc.c | 45 const char *prop; local in function:fdtbus_device_is_system_todr 52 prop = fdt_get_alias(fdtbus_get_data(), "rtc0"); 53 if (prop == NULL) { 57 args->result = OF_finddevice(prop) == phandle;
|
fdt_openfirm.c | 119 OF_nextprop(int phandle, const char *prop, void *nextprop) 135 if (*prop == '\0') { 142 if (strcmp(prop, "name") != 0) { 153 if (strcmp(name, prop) == 0) 169 OF_getprop(int phandle, const char *prop, void *buf, int buflen) 185 if (strcmp(prop, "name") == 0) { 211 if (strcmp(name, prop) == 0) { 229 OF_getproplen(int phandle, const char *prop) 245 if (strcmp(prop, "name") == 0) { 265 if (strcmp(name, prop) == 0) [all...] |
fdt_boot.h | 38 void fdt_map_efi_runtime(const char *prop, enum cpu_efirt_mem_type type);
|
/src/sys/external/bsd/drm2/dist/drm/ |
drm_mode_config.c | 226 struct drm_property *prop; local in function:drm_mode_create_standard_properties 233 prop = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE, 236 if (!prop) 238 dev->mode_config.plane_type_property = prop; 240 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC, 242 if (!prop) 244 dev->mode_config.prop_src_x = prop; 246 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC, 248 if (!prop) 250 dev->mode_config.prop_src_y = prop; [all...] |
drm_blend.c | 211 struct drm_property *prop; local in function:drm_plane_create_alpha_property 213 prop = drm_property_create_range(plane->dev, 0, "alpha", 215 if (!prop) 218 drm_object_attach_property(&plane->base, prop, DRM_BLEND_ALPHA_OPAQUE); 219 plane->alpha_property = prop; 274 struct drm_property *prop; local in function:drm_plane_create_rotation_property 280 prop = drm_property_create_bitmask(plane->dev, 0, "rotation", 283 if (!prop) 286 drm_object_attach_property(&plane->base, prop, rotation); 291 plane->rotation_property = prop; 363 struct drm_property *prop; local in function:drm_plane_create_zpos_property 401 struct drm_property *prop; local in function:drm_plane_create_zpos_immutable_property 566 struct drm_property *prop; local in function:drm_plane_create_blend_mode_property [all...] |
/src/sbin/ifconfig/ |
media.h | 6 #include <prop/proplib.h>
|
/src/sys/kern/ |
subr_device.c | 431 propval = prop_dictionary_get(dict, args->prop); 581 device_getprop_buf_internal(device_t dev, const char *prop, void *buf, 585 .prop = prop, 624 device_getprop_alloc_internal(device_t dev, const char *prop, size_t *retsizep, 628 .prop = prop, 689 device_hasprop(device_t dev, const char *prop) 691 return device_getproplen(dev, prop) >= 0; 700 device_getproplen(device_t dev, const char *prop) [all...] |
/src/games/monop/ |
monop.c | 149 PROP prop[N_PROP] = { /* typical properties */ variable in typeref:typename:PROP[] 179 {"Mediterranean Ave. (P)", -1, PRPTY, &prop[0], 60 }, 181 {"Baltic Ave. (P)", -1, PRPTY, &prop[1], 60 }, 184 {"Oriental Ave. (L)", -1, PRPTY, &prop[2], 100 }, 186 {"Vermont Ave. (L)", -1, PRPTY, &prop[3], 100 }, 187 {"Connecticut Ave. (L)", -1, PRPTY, &prop[4], 120 }, 189 {"St. Charles Pl. (V)", -1, PRPTY, &prop[5], 140 }, 191 {"States Ave. (V)", -1, PRPTY, &prop[6], 140 }, 192 {"Virginia Ave. (V)", -1, PRPTY, &prop[7], 160 } [all...] |
/src/sys/dev/ofw/ |
ofw_subr.c | 167 of_is_bool_prop(int node, const char *prop, bool *valp) 181 if (prop[strlen(prop) - 1] != '?') { 186 int propsize = OF_getprop(node, prop, propval, sizeof(propval)); 209 propsize = OF_getproplen(node, args->prop); 222 if (of_is_bool_prop(node, args->prop, &boolval)) { 237 if (OF_getprop(node, args->prop, &val32, 247 if (OF_getprop(node, args->prop, &val64, 268 rv = OF_getprop(node, args->prop, args->buf, args->buflen); 360 char *prop, propbuf[OFW_MAX_STACK_BUF_SIZE] local in function:of_compatible 418 char *prop, propbuf[OFW_MAX_STACK_BUF_SIZE]; local in function:of_compatible_match 465 char *prop, propbuf[OFW_MAX_STACK_BUF_SIZE]; local in function:of_compatible_lookup 630 uint32_t prop; local in function:of_to_uint32_prop 647 uint8_t prop[256]; local in function:of_to_dataprop [all...] |
/src/sys/external/bsd/drm2/dist/drm/i915/display/ |
intel_connector.c | 229 struct drm_property *prop; local in function:intel_attach_force_audio_property 231 prop = dev_priv->force_audio_property; 232 if (prop == NULL) { 233 prop = drm_property_create_enum(dev, 0, 237 if (prop == NULL) 240 dev_priv->force_audio_property = prop; 242 drm_object_attach_property(&connector->base, prop, 0); 256 struct drm_property *prop; local in function:intel_attach_broadcast_rgb_property 258 prop = dev_priv->broadcast_rgb_property; 259 if (prop == NULL) [all...] |
/src/sys/external/bsd/libfdt/dist/ |
fdt_addresses.c | 63 uint8_t data[sizeof(fdt64_t) * 2], *prop; local in function:fdt_appendprop_addrrange 76 prop = data; 81 fdt32_st(prop, (uint32_t)addr); 83 fdt64_st(prop, addr); 89 prop += addr_cells * sizeof(fdt32_t); 94 fdt32_st(prop, (uint32_t)size); 96 fdt64_st(prop, size);
|
fdt_wip.c | 63 struct fdt_property *prop; local in function:fdt_nop_property 66 prop = fdt_get_property_w(fdt, nodeoffset, name, &len); 67 if (!prop) 70 fdt_nop_region_(prop, len + sizeof(*prop));
|
fdt_rw.c | 173 int len, struct fdt_property **prop) 178 *prop = fdt_get_property_w(fdt, nodeoffset, name, &oldlen); 179 if (!*prop) 182 if ((err = fdt_splice_struct_(fdt, (*prop)->data, FDT_TAGALIGN(oldlen), 186 (*prop)->len = cpu_to_fdt32(len); 191 int len, struct fdt_property **prop) 206 *prop = fdt_offset_ptr_w_(fdt, nextoffset); 207 proplen = sizeof(**prop) + FDT_TAGALIGN(len); 209 err = fdt_splice_struct_(fdt, *prop, 0, proplen); 216 (*prop)->tag = cpu_to_fdt32(FDT_PROP) 248 struct fdt_property *prop; local in function:fdt_setprop_placeholder 281 struct fdt_property *prop; local in function:fdt_appendprop 307 struct fdt_property *prop; local in function:fdt_delprop [all...] |
/src/games/adventure/ |
subr.c | 99 i = prop[bottle]; 137 if ((cond[loc] % 2) == 0 && (prop[lamp] == 0 || !here(lamp))) 219 if (loc == chloc || prop[chest] >= 0) 232 && here(lamp) && prop[lamp] == 1) 372 if (prop[k] != (newloc / 100) - 3) 447 if (prop[troll] == 1) { 449 prop[troll] = 0; 459 if (prop[troll] == 0) 460 prop[troll] = 1; 464 prop[chasm] = 1 [all...] |
/src/usr.sbin/wsmoused/ |
wsmoused.h | 69 struct prop { struct 85 struct prop *b_prop[MAX_PROPS]; 98 struct prop *prop_new(void); 99 void prop_free(struct prop *); 102 void block_add_prop(struct block *, struct prop *);
|
/src/sys/arch/powerpc/ibm4xx/ |
board_prop.c | 40 #include <prop/proplib.h>
|
/src/sys/dev/hdaudio/ |
hdaudioio.h | 36 #include <prop/proplib.h>
|
/src/sys/external/bsd/drm2/drm/ |
drm_sysfs.c | 60 struct drm_property *prop)
|
/src/sys/external/bsd/drm2/dist/drm/amd/amdkfd/ |
kfd_kernel_queue.c | 48 struct queue_properties prop; local in function:kq_initialize 58 memset(&prop, 0, sizeof(prop)); 82 prop.doorbell_ptr = kfd_get_kernel_doorbell(dev, &prop.doorbell_off); 84 if (!prop.doorbell_ptr) { 132 prop.queue_size = queue_size; 133 prop.is_interop = false; 134 prop.priority = 1; 135 prop.queue_percent = 100 [all...] |