Home
last modified time | relevance | path

Searched refs:type (Results 376 – 400 of 20542) sorted by relevance

1...<<11121314151617181920>>...822

/openbmc/linux/fs/f2fs/
H A Dextent_cache.c49 enum extent_type type) in __set_extent_info() argument
54 if (type == EX_READ) { in __set_extent_info()
69 if (type == EX_READ) in __init_may_extent_tree()
90 if (type == EX_READ) { in __may_extent_tree()
108 if (et->type != EX_READ) in __try_update_largest_extent()
120 if (type == EX_READ) { in __is_extent_mergeable()
330 et->type = type; in __grab_extent_tree()
488 if (type == EX_READ) in __lookup_extent_tree()
600 if (type == EX_READ) in __update_extent_tree_range()
659 type); in __update_extent_tree_range()
[all …]
/openbmc/openpower-proc-control/
H A Dmeson.options1 option('tests', type: 'feature', description: 'Build tests.')
2 option('p9', type: 'feature', description: 'Enable support for POWER9')
3 option('openfsi', type: 'feature', description: 'Enable support for OpenFSI')
4 option('phal', type: 'feature', description: 'Enable support for PHAL')
6 option('DEVTREE_EXPORT_FILTER_FILE', type : 'string',
10 option('DEVTREE_EXP_FILE', type : 'string',
14 option('CEC_DEVTREE_RW_PATH', type : 'string',
18 option('CEC_DEVTREE_RO_BASE_PATH', type : 'string',
22 option('CEC_INFODB_PATH', type : 'string',
26 option('DEVTREE_REINIT_ATTRS_LIST', type : 'string',
[all …]
/openbmc/linux/drivers/tty/serial/8250/
H A D8250_acorn.c28 unsigned int type; member
42 struct serial_card_type *type = id->data; in serial_card_probe() local
51 info->num_ports = type->num_ports; in serial_card_probe()
53 bus_addr = ecard_resource_start(ec, type->type); in serial_card_probe()
54 info->vaddr = ecardm_iomap(ec, type->type, 0, 0); in serial_card_probe()
65 uart.port.uartclk = type->uartclk; in serial_card_probe()
71 uart.port.membase = info->vaddr + type->offset[i]; in serial_card_probe()
72 uart.port.mapbase = bus_addr + type->offset[i]; in serial_card_probe()
97 .type = ECARD_RES_IOCSLOW,
104 .type = ECARD_RES_IOCSLOW,
/openbmc/linux/arch/mips/lantiq/xway/
H A Dprom.c50 i->type = SOC_TYPE_DANUBE; in ltq_soc_detect()
56 i->type = SOC_TYPE_DANUBE; in ltq_soc_detect()
65 i->type = SOC_TYPE_AR9; in ltq_soc_detect()
72 i->type = SOC_TYPE_AR9; in ltq_soc_detect()
90 i->type = SOC_TYPE_VR9; in ltq_soc_detect()
97 i->type = SOC_TYPE_VR9; in ltq_soc_detect()
104 i->type = SOC_TYPE_VR9_2; in ltq_soc_detect()
110 i->type = SOC_TYPE_VRX220; in ltq_soc_detect()
117 i->type = SOC_TYPE_VR9_2; in ltq_soc_detect()
127 i->type = SOC_TYPE_AR10; in ltq_soc_detect()
[all …]
/openbmc/linux/tools/testing/selftests/net/af_unix/
H A Dunix_connect.c23 int type; in FIXTURE_VARIANT() local
32 .type = SOCK_STREAM, in FIXTURE_VARIANT_ADD()
41 .type = SOCK_STREAM, in FIXTURE_VARIANT_ADD()
50 .type = SOCK_STREAM, in FIXTURE_VARIANT_ADD()
59 .type = SOCK_STREAM, in FIXTURE_VARIANT_ADD()
68 .type = SOCK_DGRAM, in FIXTURE_VARIANT_ADD()
77 .type = SOCK_DGRAM, in FIXTURE_VARIANT_ADD()
86 .type = SOCK_DGRAM, in FIXTURE_VARIANT_ADD()
95 .type = SOCK_DGRAM, in FIXTURE_VARIANT_ADD()
124 self->server = socket(self->family, variant->type, 0); in TEST_F()
[all …]
/openbmc/linux/fs/orangefs/
H A Dacl.c13 struct posix_acl *orangefs_get_acl(struct inode *inode, int type, bool rcu) in orangefs_get_acl() argument
22 switch (type) { in orangefs_get_acl()
30 gossip_err("orangefs_get_acl: bogus value of type %d\n", type); in orangefs_get_acl()
48 type); in orangefs_get_acl()
74 switch (type) { in __orangefs_set_acl()
82 gossip_err("%s: invalid type %d!\n", __func__, type); in __orangefs_set_acl()
90 type); in __orangefs_set_acl()
117 set_cached_acl(inode, type, acl); in __orangefs_set_acl()
122 struct posix_acl *acl, int type) in orangefs_set_acl() argument
131 if (type == ACL_TYPE_ACCESS && acl) { in orangefs_set_acl()
[all …]
/openbmc/linux/net/bluetooth/
H A Deir.h26 static inline u16 eir_append_data(u8 *eir, u16 eir_len, u8 type, in eir_append_data() argument
29 eir[eir_len++] = sizeof(type) + data_len; in eir_append_data()
30 eir[eir_len++] = type; in eir_append_data()
37 static inline u16 eir_append_le16(u8 *eir, u16 eir_len, u8 type, u16 data) in eir_append_le16() argument
39 eir[eir_len++] = sizeof(type) + sizeof(data); in eir_append_le16()
40 eir[eir_len++] = type; in eir_append_le16()
54 WARN_ON(sizeof(type) + data_len > U8_MAX); in eir_skb_put_data()
55 eir[0] = sizeof(type) + data_len; in eir_skb_put_data()
56 eir[1] = type; in eir_skb_put_data()
62 static inline void *eir_get_data(u8 *eir, size_t eir_len, u8 type, in eir_get_data() argument
[all …]
/openbmc/phosphor-pid-control/test/
H A Dsensors_json_unittest.cpp34 "type": "fan", in TEST()
45 EXPECT_EQ(output["fan1"].type, "fan"); in TEST()
54 Sensor::getDefaultTimeout(output["fan1"].type)); in TEST()
64 "type": "fan", in TEST()
73 EXPECT_EQ(output["fan1"].type, "fan"); in TEST()
90 "type": "temp", in TEST()
99 EXPECT_EQ(output["CPU_DTS"].type, "temp"); in TEST()
119 "type": "fan", in TEST()
127 EXPECT_EQ(output["fan1"].type, "fan"); in TEST()
149 "type": "fan", in TEST()
[all …]
/openbmc/linux/sound/pci/ctxfi/
H A Dctresource.c139 rsc->type = type; in rsc_init()
148 switch (type) { in rsc_init()
177 switch (rsc->type) { in rsc_uninit()
190 rsc->type); in rsc_uninit()
198 rsc->type = NUM_RSCTYP; in rsc_uninit()
209 mgr->type = NUM_RSCTYP; in rsc_mgr_init()
215 switch (type) { in rsc_mgr_init()
243 mgr->type = type; in rsc_mgr_init()
260 switch (mgr->type) { in rsc_mgr_uninit()
278 mgr->type); in rsc_mgr_uninit()
[all …]
/openbmc/phosphor-health-monitor/
H A Dhealth_metric.cpp16 auto HealthMetric::getPath(MType type, std::string name, in getPath() argument
57 if (type == MType::storage) in getPath()
71 subType, "TYPE", type); in getPath()
85 switch (type) in initProperties()
114 auto type = std::get<Type>(key); in initProperties() local
116 auto threshold = thresholds.find(type); in initProperties()
121 thresholds.emplace(type, bounds); in initProperties()
154 auto threshold = std::make_tuple(type, bound); in checkThreshold()
157 if (thresholds.contains(type) && thresholds[type].contains(bound)) in checkThreshold()
161 thresholds[type][bound] = thresholdValue; in checkThreshold()
[all …]
/openbmc/linux/drivers/gpu/drm/amd/display/dc/dce/
H A Ddce_dmcu.h179 type IRAM_HOST_ACCESS_EN; \
180 type IRAM_WR_ADDR_AUTO_INC; \
181 type IRAM_RD_ADDR_AUTO_INC; \
182 type DMCU_ENABLE; \
183 type UC_IN_STOP_MODE; \
184 type UC_IN_RESET; \
187 type SLAVE_COMM_INTERRUPT; \
189 type DPHY_LOAD_BS_COUNT; \
194 type DP_SEC_GSP0_LINE_NUM; \
195 type DP_SEC_GSP0_PRIORITY; \
[all …]
/openbmc/linux/drivers/staging/media/atomisp/pci/runtime/inputfifo/src/
H A Dinputfifo.c73 enum inputfifo_mipi_data_type type; member
325 type); in inputfifo_send_line()
378 two_ppc, type); in inputfifo_send_frame()
384 two_ppc, type); in inputfifo_send_frame()
395 enum inputfifo_mipi_data_type type; in inputfifo_determine_type() local
399 type = in inputfifo_determine_type()
404 type = in inputfifo_determine_type()
408 type = in inputfifo_determine_type()
411 return type; in inputfifo_determine_type()
442 two_ppc, type); in ia_css_inputfifo_send_input_frame()
[all …]
/openbmc/qemu/util/
H A Dmodule.c34 module_init_type type; member
67 return &init_type_list[type]; in find_type()
77 e->type = type; in register_module_init()
79 l = find_type(type); in register_module_init()
92 e->type = type; in register_dso_module_init()
97 void module_call_init(module_init_type type) in module_call_init() argument
102 if (modules_init_done[type]) { in module_call_init()
106 l = find_type(type); in module_call_init()
112 modules_init_done[type] = true; in module_call_init()
325 if (!type) { in module_load_qom()
[all …]
/openbmc/linux/include/linux/ceph/
H A Dlibceph.h191 static bool __insert_##name(struct rb_root *root, type *t) \
199 type *cur = rb_entry(*n, type, nodefld); \
221 static void erase_##name(struct rb_root *root, type *t) \
239 type *cur = rb_entry(n, type, nodefld); \
257 DEFINE_RB_LOOKUP_FUNC2(name, type, keyfld, cmpexp, keyexp, \
266 #define DEFINE_RB_LOOKUP_FUNC(name, type, keyfld, nodefld) \ argument
267 extern type __lookup_##name##_key; \
271 #define DEFINE_RB_FUNCS(name, type, keyfld, nodefld) \ argument
272 DEFINE_RB_INSDEL_FUNCS(name, type, keyfld, nodefld) \
273 DEFINE_RB_LOOKUP_FUNC(name, type, keyfld, nodefld)
[all …]
/openbmc/linux/tools/net/ynl/generated/
H A Dfou-user.c85 if (req->_present.type) in fou_add()
177 if (type == FOU_ATTR_PORT) { in fou_get_rsp_parse()
182 } else if (type == FOU_ATTR_IPPROTO) { in fou_get_rsp_parse()
187 } else if (type == FOU_ATTR_TYPE) { in fou_get_rsp_parse()
190 dst->_present.type = 1; in fou_get_rsp_parse()
191 dst->type = mnl_attr_get_u8(attr); in fou_get_rsp_parse()
196 } else if (type == FOU_ATTR_LOCAL_V4) { in fou_get_rsp_parse()
201 } else if (type == FOU_ATTR_PEER_V4) { in fou_get_rsp_parse()
206 } else if (type == FOU_ATTR_LOCAL_V6) { in fou_get_rsp_parse()
216 } else if (type == FOU_ATTR_PEER_V6) { in fou_get_rsp_parse()
[all …]
/openbmc/linux/drivers/irqchip/
H A Dirq-meson-gpio.c85 .gpio_irq_set_type = type, \
311 type &= IRQ_TYPE_SENSE_MASK; in meson8_gpio_irq_set_type()
359 type &= IRQ_TYPE_SENSE_MASK; in meson_s4_gpio_irq_set_type()
385 type &= ~IRQ_TYPE_SENSE_MASK; in meson_gpio_irq_type_output()
392 type |= IRQ_TYPE_LEVEL_HIGH; in meson_gpio_irq_type_output()
394 type |= IRQ_TYPE_EDGE_RISING; in meson_gpio_irq_type_output()
396 return type; in meson_gpio_irq_type_output()
429 unsigned int *type) in meson_gpio_irq_domain_translate() argument
433 *type = fwspec->param[1]; in meson_gpio_irq_domain_translate()
443 unsigned int type) in meson_gpio_irq_allocate_gic_irq() argument
[all …]
/openbmc/linux/include/linux/
H A Dmodule.h338 ((type) == MOD_INIT_TEXT || \
339 (type) == MOD_INIT_DATA || \
340 (type) == MOD_INIT_RODATA)
342 #define mod_mem_type_is_core(type) (!mod_mem_type_is_init(type)) argument
345 ((type) == MOD_TEXT || \
346 (type) == MOD_INIT_TEXT)
348 #define mod_mem_type_is_data(type) (!mod_mem_type_is_text(type)) argument
352 mod_mem_type_is_data(type))
356 (type) < MOD_MEM_NUM_TYPES; (type)++)
615 enum mod_mem_type type) in within_module_mem_type() argument
[all …]
/openbmc/linux/tools/perf/util/intel-pt-decoder/
H A Dintel-pt-pkt-decoder.c74 return packet_name[type]; in intel_pt_pkt_name()
94 packet->type = INTEL_PT_TNT; in intel_pt_get_long_tnt()
108 packet->type = INTEL_PT_PIP; in intel_pt_get_pip()
126 packet->type = INTEL_PT_CBR; in intel_pt_get_cbr()
151 packet->type = INTEL_PT_OVF; in intel_pt_get_ovf()
168 packet->type = INTEL_PT_PSB; in intel_pt_get_psb()
184 packet->type = INTEL_PT_TMA; in intel_pt_get_tma()
192 packet->type = INTEL_PT_PAD; in intel_pt_get_pad()
493 packet->type = type; in intel_pt_get_ip()
624 switch (packet->type) { in intel_pt_upd_pkt_ctx()
[all …]
/openbmc/phosphor-fan-presence/control/example/
H A Devents.yaml61 # type: [The property's data type]
85 # type: [The property's data type]
163 # - type
182 # - type
189 # - type
255 # type: bool
268 # type: bool
271 # type: uint64_t
282 # type: int64_t
315 # type: int64_t
[all …]
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Control/
H A DChassisCapabilities.interface.yaml5 type: byte
12 type: boolean
16 type: boolean
20 type: boolean
24 type: boolean
28 type: byte
32 type: byte
36 type: byte
40 type: byte
44 type: byte
/openbmc/openpower-occ-control/
H A Dmeson.options3 type : 'feature',
9 type : 'feature',
16 type : 'feature',
23 type : 'integer',
31 type : 'integer',
39 type : 'string',
45 type : 'feature',
52 type : 'string',
58 type: 'string',
65 type: 'combo',
/openbmc/phosphor-logging/
H A Dmeson.options1 option('libonly', type: 'boolean', description: 'Build library only')
2 option('tests', type: 'feature', description: 'Build tests')
5 type: 'feature',
10 option('yamldir', type: 'string', description: 'Path to YAML')
13 type: 'string',
20 type: 'integer',
26 type: 'integer',
33 type: 'feature',
40 type: 'string',
/openbmc/linux/drivers/gpu/drm/amd/display/dc/gpio/
H A Dhpd_regs.h39 #define HPD_GPIO_REG_LIST_ENTRY(type, cd, id) \ argument
40 .type ## _reg = REG(DC_GPIO_HPD_## type),\
41 .type ## _mask = DC_GPIO_HPD_ ## type ## __DC_GPIO_HPD ## id ## _ ## type ## _MASK,\
42 .type ## _shift = DC_GPIO_HPD_ ## type ## __DC_GPIO_HPD ## id ## _ ## type ## __SHIFT
/openbmc/linux/sound/soc/intel/avs/
H A Dtopology.c124 u32 type; member
299 switch (le32_to_cpu(tuples->type)) { in avs_parse_tokens()
319 count, tuples->type, ret); in avs_parse_tokens()
335 type **val = (type **)(object + offset); \
499 .type = SND_SOC_TPLG_TUPLE_TYPE_WORD,
505 .type = SND_SOC_TPLG_TUPLE_TYPE_WORD,
511 .type = SND_SOC_TPLG_TUPLE_TYPE_WORD,
517 .type = SND_SOC_TPLG_TUPLE_TYPE_WORD,
523 .type = SND_SOC_TPLG_TUPLE_TYPE_WORD,
529 .type = SND_SOC_TPLG_TUPLE_TYPE_WORD,
[all …]
/openbmc/linux/fs/ocfs2/
H A Dquota_global.c361 type); in ocfs2_global_read_info()
488 int type = dquot->dq_id.type; in __ocfs2_sync_dquot() local
607 type, sb->s_id); in ocfs2_sync_dquot_helper()
608 if (type != dquot->dq_id.type) in ocfs2_sync_dquot_helper()
667 dquot->dq_id.type); in ocfs2_write_dquot()
727 dquot->dq_id.type); in ocfs2_release_dquot()
798 int type = dquot->dq_id.type; in ocfs2_acquire_dquot() local
805 type); in ocfs2_acquire_dquot()
879 int type = qid->type; in ocfs2_get_next_id() local
919 int type = dquot->dq_id.type; in ocfs2_mark_dquot_dirty() local
[all …]

1...<<11121314151617181920>>...822