| /linux/arch/powerpc/mm/ |
| H A D | drmem.c | 40 static struct property *clone_property(struct property *prop, u32 prop_sz) in clone_property() 65 struct property *prop) in drmem_update_dt_v1() 104 struct property *prop) in drmem_update_dt_v2() 175 struct property *prop; in drmem_update_dt() local 202 const __be32 **prop) in read_drconf_v1_cell() 219 __walk_drmem_v1_lmbs(const __be32 *prop, const __be32 *usm, void *data, in __walk_drmem_v1_lmbs() 238 const __be32 **prop) in read_drconf_v2_cell() 253 __walk_drmem_v2_lmbs(const __be32 *prop, const __be32 *usm, void *data, in __walk_drmem_v2_lmbs() 288 const __be32 *prop, *usm; in walk_drmem_lmbs_early() local 342 void drmem_update_lmbs(struct property *prop) in drmem_update_lmbs() [all …]
|
| /linux/scripts/dtc/ |
| H A D | checks.c | 63 struct property *prop, in check_msg() argument 127 #define FAIL_PROP(c, dti, node, prop, ...) \ argument 210 struct property *prop; in check_is_string() local 229 struct property *prop; check_is_string_list() local 257 struct property *prop; check_is_cell() local 293 struct property *prop, *prop2; check_duplicate_property_names() local 361 struct property *prop = get_property(node, "reg"); check_unit_address_vs_reg() local 387 struct property *prop; check_property_name_chars() local 403 struct property *prop; check_property_name_chars_strict() local 432 DESCLABEL_ARGS(node,prop,mark) global() argument 440 check_duplicate_label(struct check * c,struct dt_info * dti,const char * label,struct node * node,struct property * prop,struct marker * mark) check_duplicate_label() argument 469 struct property *prop; check_duplicate_label_node() local 490 struct property *prop; check_phandle_prop() local 572 struct property **pp, *prop = NULL; check_name_properties() local 607 struct property *prop; fixup_phandle_references() local 642 struct property *prop; fixup_path_references() local 695 struct property *prop; check_names_is_string_list() local 710 struct property *prop; check_alias_paths() local 735 struct property *prop; fixup_addr_size_cells() local 759 struct property *prop; check_reg_format() local 788 struct property *prop; check_ranges_format() local 835 struct property *prop; check_pci_bridge() local 876 struct property *prop; check_pci_device_bus_num() local 906 struct property *prop; check_pci_device_reg() local 953 struct property *prop; node_is_compatible() local 978 struct property *prop; check_simple_bus_reg() local 1050 struct property *prop; check_i2c_bus_reg() local 1111 struct property *prop; check_spi_bus_bridge() local 1140 struct property *prop; check_spi_bus_reg() local 1220 struct property *prop; check_avoid_unnecessary_addr_size() local 1243 struct property *prop; node_is_disabled() local 1313 struct property *prop; check_obsolete_chosen_interrupt_controller() local 1345 struct property *prop; check_chosen_node_bootargs() local 1362 struct property *prop; check_chosen_node_stdout_path() local 1389 check_property_phandle_args(struct check * c,struct dt_info * dti,struct node * node,struct property * prop,const struct provider * provider) check_property_phandle_args() argument 1471 struct property *prop; check_provider_cells_property() local 1501 prop_is_gpio(struct property * prop) prop_is_gpio() argument 1520 struct property *prop; check_gpios_property() local 1545 struct property *prop; check_deprecated_gpio_property() local 1563 struct property *prop; node_is_interrupt_provider() local 1580 struct property *prop; check_interrupt_provider() local 1603 struct property *prop, *irq_map_prop; check_interrupt_map() local 1692 struct property *irq_prop, *prop = NULL; check_interrupts_property() local 1797 struct property *prop; check_graph_reg() local 1845 struct property *prop; get_remote_endpoint() local 1900 struct property *prop = get_property(child, "reg"); check_graph_child_address() local [all...] |
| H A D | livetree.c | 267 void add_property(struct node *node, struct property *prop) in add_property() argument 282 struct property *prop = node->proplist; in delete_property_by_name() local 293 void delete_property(struct property *prop) in delete_property() argument 328 struct property *prop; delete_node() local 427 struct property *prop; get_property() local 436 propval_cell(struct property * prop) propval_cell() argument 442 propval_cell_n(struct property * prop,unsigned int n) propval_cell_n() argument 451 struct property *prop; get_property_by_label() local 475 get_marker_label(struct node * tree,const char * label,struct node ** node,struct property ** prop) get_marker_label() argument 743 struct property *prop, **tbl; sort_properties() local 902 struct property *prop; any_fixup_tree() local 922 add_fixup_entry(struct dt_info * dti,struct node * fn,struct node * node,struct property * prop,struct marker * m) add_fixup_entry() argument 953 struct property *prop; generate_fixups_tree_internal() local 973 struct property *prop; any_local_fixup_tree() local 994 add_local_fixup_entry(struct dt_info * dti,struct node * lfn,struct node * node,struct property * prop,struct marker * m,struct node * refnode) add_local_fixup_entry() argument 1034 struct property *prop; generate_local_fixups_tree_internal() local [all...] |
| H A D | treesource.c | 142 add_string_markers(struct property * prop) add_string_markers() argument 164 guess_value_type(struct property * prop) guess_value_type() argument 199 write_propval(FILE * f,struct property * prop) write_propval() argument 301 struct property *prop; write_tree_source_node() local [all...] |
| /linux/samples/rust/ |
| H A D | rust_driver_platform.rs | 136 let prop = fwnode.property_read::<CString>(name).required_by(dev)?; in properties_parse() localVariable 140 let prop = fwnode.property_read_bool(c_str!("test,bool-prop")); in properties_parse() localVariable 148 let prop in properties_parse() localVariable 157 let prop: u32 = fwnode.property_read(name).required_by(dev)?; properties_parse() localVariable 161 let prop: [i16; 4] = fwnode.property_read(name).required_by(dev)?; properties_parse() localVariable 167 let prop: KVec<i16> = fwnode.property_read_array_vec(name, 4)?.required_by(dev)?; properties_parse() localVariable 173 let prop: FwNodeReferenceArgs = child.property_get_reference_args(name, nargs, 0)?; properties_parse() localVariable [all...] |
| /linux/tools/testing/selftests/bpf/ |
| H A D | json_writer.c | 247 void jsonw_string_field(json_writer_t *self, const char *prop, const char *val) in jsonw_string_field() 253 void jsonw_bool_field(json_writer_t *self, const char *prop, bool val) in jsonw_bool_field() 260 void jsonw_float_field(json_writer_t *self, const char *prop, double val) in jsonw_float_field() 268 const char *prop, in jsonw_float_field_fmt() 276 void jsonw_uint_field(json_writer_t *self, const char *prop, uint64_t num) in jsonw_uint_field() 282 void jsonw_hu_field(json_writer_t *self, const char *prop, unsigned short num) in jsonw_hu_field() 289 const char *prop, in jsonw_lluint_field() 296 void jsonw_int_field(json_writer_t *self, const char *prop, int64_t num) in jsonw_int_field() 302 void jsonw_null_field(json_writer_t *self, const char *prop) in jsonw_null_field()
|
| /linux/tools/bpf/bpftool/ |
| H A D | json_writer.c | 247 void jsonw_string_field(json_writer_t *self, const char *prop, const char *val) in jsonw_string_field() 253 void jsonw_bool_field(json_writer_t *self, const char *prop, bool val) in jsonw_bool_field() 260 void jsonw_float_field(json_writer_t *self, const char *prop, double val) in jsonw_float_field() 268 const char *prop, in jsonw_float_field_fmt() 276 void jsonw_uint_field(json_writer_t *self, const char *prop, uint64_t num) in jsonw_uint_field() 282 void jsonw_hu_field(json_writer_t *self, const char *prop, unsigned short num) in jsonw_hu_field() 289 const char *prop, in jsonw_lluint_field() 296 void jsonw_int_field(json_writer_t *self, const char *prop, int64_t num) in jsonw_int_field() 302 void jsonw_null_field(json_writer_t *self, const char *prop) in jsonw_null_field()
|
| /linux/drivers/of/ |
| H A D | dynamic.c | 77 #define _do_print(func, prefix, action, node, prop, ...) ({ \ argument 109 struct property *prop, *old_prop = NULL; in of_reconfig_get_state_change() local 186 struct property *prop, struct property *oldprop) in of_property_notify() 310 void __of_prop_free(struct property *prop) in __of_prop_free() 319 struct property *prop, *next; in property_list_free() local 410 struct property *__of_prop_dup(const struct property *prop, gfp_t allocflags) in __of_prop_dup() 904 struct device_node *np, struct property *prop) in of_changeset_action() 965 struct property prop; in of_changeset_add_prop_string() local 994 struct property prop; in of_changeset_add_prop_string_array() local 1039 struct property prop; in of_changeset_add_prop_u32_array() local [all …]
|
| H A D | kexec.c | 101 static int do_get_kexec_buffer(const void *prop, int len, unsigned long *addr, in do_get_kexec_buffer() 133 const void *prop; in ima_get_kexec_buffer() local 173 struct property *prop; in ima_free_kexec_buffer() local 206 const void *prop; in remove_ima_buffer() local 323 const void *prop; in of_kexec_alloc_and_setup_fdt() local
|
| /linux/drivers/memory/ |
| H A D | stm32-fmc2-ebi.c | 242 const struct stm32_fmc2_prop *prop, in stm32_fmc2_ebi_check_mux() 259 const struct stm32_fmc2_prop *prop, in stm32_fmc2_ebi_check_waitcfg() 276 const struct stm32_fmc2_prop *prop, in stm32_fmc2_ebi_check_sync_trans() 293 const struct stm32_fmc2_prop *prop, in stm32_fmc2_ebi_mp25_check_cclk() 303 const struct stm32_fmc2_prop *prop, in stm32_fmc2_ebi_mp25_check_clk_period() 320 const struct stm32_fmc2_prop *prop, in stm32_fmc2_ebi_check_async_trans() 337 const struct stm32_fmc2_prop *prop, in stm32_fmc2_ebi_check_cpsize() 354 const struct stm32_fmc2_prop *prop, in stm32_fmc2_ebi_check_address_hold() 379 const struct stm32_fmc2_prop *prop, in stm32_fmc2_ebi_check_clk_period() 404 const struct stm32_fmc2_prop *prop, in stm32_fmc2_ebi_check_cclk() [all …]
|
| /linux/arch/sparc/prom/ |
| H A D | tree_32.c | 90 int prom_getproplen(phandle node, const char *prop) in prom_getproplen() 110 int prom_getproperty(phandle node, const char *prop, char *buffer, int bufsize) in prom_getproperty() 130 int prom_getint(phandle node, char *prop) in prom_getint() 156 int prom_getbool(phandle node, char *prop) in prom_getbool() 170 void prom_getstring(phandle node, char *prop, char *user_buf, int ubuf_size) in prom_getstring() 207 char *prop; in __prom_nextprop() local
|
| /linux/scripts/kconfig/ |
| H A D | symbol.c | 122 struct property *prop; in sym_get_default_prop() local 134 struct property *prop; in sym_get_range_prop() local 162 struct property *prop; in sym_validate_range() local 214 struct property *prop; in sym_calc_visibility() local 276 struct property *prop; in sym_choice_default() local 414 struct property *prop = NULL; in sym_calc_value() local 716 struct property *prop; in sym_string_within_range() local 814 struct property *prop; in sym_get_string_default() local 1085 struct property *prop; member 1217 struct property *prop; in sym_check_sym_deps() local [all …]
|
| H A D | menu.c | 52 static void prop_warn(const struct property *prop, const char *fmt, ...) in prop_warn() 154 struct property *prop; in menu_add_prop() local 182 struct property *prop = menu_add_prop(type, NULL, dep); in menu_add_prompt() local 235 struct property *prop; in sym_check_prop() local 299 struct property *prop; in _menu_finalize() local 631 static void get_prompt_str(struct gstr *r, struct property *prop, in get_prompt_str() 694 struct property *prop; in get_symbol_props_str() local 714 struct property *prop; in get_symbol_str() local
|
| H A D | parser.y | 502 struct property *prop; variable 538 struct property *prop; in choice_check_sanity() local 678 struct property *prop; in print_symbol() local 761 struct property *prop; in zconfdump() local
|
| /linux/drivers/accel/habanalabs/common/mmu/ |
| H A D | mmu_v2_hr.c | 48 struct asic_fixed_properties *prop = &hdev->asic_prop; in hl_mmu_v2_hr_init() local 66 struct asic_fixed_properties *prop = &hdev->asic_prop; in hl_mmu_v2_hr_fini() local 121 struct asic_fixed_properties *prop; in _hl_mmu_v2_hr_unmap() local 214 struct asic_fixed_properties *prop = &hdev->asic_prop; in _hl_mmu_v2_hr_map() local 338 struct asic_fixed_properties *prop = &hdev->asic_prop; in hl_mmu_v2_hr_get_tlb_mapping_params() local
|
| H A D | mmu_v1.c | 29 struct asic_fixed_properties *prop = &hdev->asic_prop; in dram_default_mapping_init() local 129 struct asic_fixed_properties *prop = &hdev->asic_prop; in dram_default_mapping_fini() local 224 struct asic_fixed_properties *prop = &hdev->asic_prop; in hl_mmu_v1_unmap() local 328 struct asic_fixed_properties *prop = &hdev->asic_prop; in hl_mmu_v1_map() local 457 struct asic_fixed_properties *prop = &hdev->asic_prop; in hl_mmu_v1_get_tlb_info() local
|
| H A D | mmu.c | 31 struct asic_fixed_properties *prop = &hdev->asic_prop; in hl_is_dram_va() local 196 struct asic_fixed_properties *prop = &hdev->asic_prop; in hl_mmu_get_prop() local 386 struct asic_fixed_properties *prop = &hdev->asic_prop; in hl_mmu_map_contiguous() local 446 struct asic_fixed_properties *prop = &hdev->asic_prop; in hl_mmu_unmap_contiguous() local 480 struct asic_fixed_properties *prop = &ctx->hdev->asic_prop; in hl_mmu_pa_page_with_offset() local 552 struct asic_fixed_properties *prop; in hl_mmu_get_tlb_info() local 589 struct asic_fixed_properties *prop = &hdev->asic_prop; in hl_mmu_if_set_funcs() local 782 struct asic_fixed_properties *prop = &hdev->asic_prop; in hl_mmu_hr_pool_destroy() local 827 struct asic_fixed_properties *prop = &hdev->asic_prop; in hl_mmu_hr_init() local 1324 struct asic_fixed_properties *prop = &hdev->asic_prop; in hl_mmu_dr_alloc_hop() local [all …]
|
| H A D | mmu_v2.c | 62 struct asic_fixed_properties *prop = &ctx->hdev->asic_prop; in hl_mmu_v2_unmap() local 135 struct asic_fixed_properties *prop = &ctx->hdev->asic_prop; in hl_mmu_v2_map() local 247 struct asic_fixed_properties *prop = &ctx->hdev->asic_prop; in hl_mmu_v2_get_tlb_info() local
|
| /linux/security/integrity/ima/ |
| H A D | ima_main.c | 217 process_measurement(struct file * file,const struct cred * cred,struct lsm_prop * prop,char * buf,loff_t size,int mask,enum ima_hooks func) process_measurement() argument 459 struct lsm_prop prop; ima_file_mmap() local 504 struct lsm_prop prop; ima_file_mprotect() local 557 struct lsm_prop prop; ima_bprm_check() local 610 struct lsm_prop prop; ima_file_check() local 812 struct lsm_prop prop; ima_read_file() local 862 struct lsm_prop prop; ima_post_read_file() local 1011 struct lsm_prop prop; process_buffer_measurement() local [all...] |
| /linux/drivers/staging/greybus/ |
| H A D | power_supply.c | 18 enum power_supply_property prop; member 82 enum power_supply_property prop; member 108 int prop; in get_psp_from_gb_prop() local 329 struct gb_power_supply_prop *prop; in is_psy_prop_writeable() local 359 struct gb_power_supply_prop *prop) in gb_power_supply_state_change() 393 struct gb_power_supply_prop *prop) in check_changed() 430 enum power_supply_property prop) in prop_append() 593 struct gb_power_supply_prop *prop; in __gb_power_supply_property_update() local 626 struct gb_power_supply_prop *prop; in __gb_power_supply_property_get() local 769 struct gb_power_supply_prop *prop; in gb_power_supply_property_set() local
|
| /linux/drivers/accel/habanalabs/common/pci/ |
| H A D | pci.c | 215 struct asic_fixed_properties *prop = &hdev->asic_prop; in hl_pci_iatu_write() local 248 struct asic_fixed_properties *prop = &hdev->asic_prop; in hl_pci_set_inbound_region() local 311 struct asic_fixed_properties *prop = &hdev->asic_prop; in hl_pci_set_outbound_region() local 380 struct asic_fixed_properties *prop = &hdev->asic_prop; in hl_pci_init() local
|
| /linux/include/linux/ |
| H A D | extcon-provider.h | 115 unsigned int prop, in extcon_set_property() 122 unsigned int id, unsigned int prop, in extcon_set_property_sync() 129 unsigned int id, unsigned int prop) in extcon_set_property_capability()
|
| /linux/drivers/extcon/ |
| H A D | extcon.c | 279 static int get_extcon_type(unsigned int prop) in get_extcon_type() 307 static bool is_extcon_property_supported(unsigned int id, unsigned int prop) in is_extcon_property_supported() 321 unsigned int id, int index,unsigned int prop) in is_extcon_property_capability() 625 unsigned int prop, in extcon_get_property() 704 unsigned int prop, in extcon_set_property() 772 unsigned int prop, in extcon_set_property_sync() 795 unsigned int prop) in extcon_get_property_capability() 829 unsigned int prop) in extcon_set_property_capability()
|
| /linux/drivers/video/fbdev/omap2/omapfb/dss/ |
| H A D | omapdss-boot-init.c | 32 static int __init omapdss_count_strings(const struct property *prop) in omapdss_count_strings() 47 struct property *prop; in omapdss_update_prop() local 82 struct property *prop; in omapdss_omapify_node() local
|
| /linux/drivers/soundwire/ |
| H A D | mipi_disco.c | 52 struct sdw_master_prop *prop = &bus->prop; in sdw_master_read_prop() local 378 struct sdw_slave_prop *prop = &slave->prop; in sdw_slave_read_lane_mapping() local 413 struct sdw_slave_prop *prop = &slave->prop; in sdw_slave_read_prop() local
|