Home
last modified time | relevance | path

Searched refs:Value (Results 1 – 25 of 812) sorted by relevance

12345678910>>...33

/openbmc/linux/drivers/staging/rtl8723bs/hal/
H A Dodm.c818 void ODM_CmnInfoInit(struct dm_odm_t *pDM_Odm, enum odm_cmninfo_e CmnInfo, u32 Value) in ODM_CmnInfoInit() argument
828 pDM_Odm->SupportAbility = (u32)Value; in ODM_CmnInfoInit()
832 pDM_Odm->SupportPlatform = (u8)Value; in ODM_CmnInfoInit()
836 pDM_Odm->SupportInterface = (u8)Value; in ODM_CmnInfoInit()
840 pDM_Odm->SupportICType = Value; in ODM_CmnInfoInit()
844 pDM_Odm->CutVersion = (u8)Value; in ODM_CmnInfoInit()
848 pDM_Odm->FabVersion = (u8)Value; in ODM_CmnInfoInit()
852 pDM_Odm->RFEType = (u8)Value; in ODM_CmnInfoInit()
856 pDM_Odm->AntDivType = (u8)Value; in ODM_CmnInfoInit()
860 pDM_Odm->PackageType = (u8)Value; in ODM_CmnInfoInit()
[all …]
H A Dhal_com_phycfg.c41 enum rate_section RateSection, u8 Value) in phy_SetTxPowerByRateBase() argument
50 pHalData->TxPwrByRateBase2_4G[RfPath][0] = Value; in phy_SetTxPowerByRateBase()
53 pHalData->TxPwrByRateBase2_4G[RfPath][1] = Value; in phy_SetTxPowerByRateBase()
56 pHalData->TxPwrByRateBase2_4G[RfPath][2] = Value; in phy_SetTxPowerByRateBase()
142 u32 Value, in PHY_GetRateValuesOfTxPowerByRate() argument
158 PwrByRateVal[i] = (s8) ((((Value >> (i * 8 + 4)) & 0xF)) * 10 + in PHY_GetRateValuesOfTxPowerByRate()
159 ((Value >> (i * 8)) & 0xF)); in PHY_GetRateValuesOfTxPowerByRate()
171 PwrByRateVal[i] = (s8) ((((Value >> (i * 8 + 4)) & 0xF)) * 10 + in PHY_GetRateValuesOfTxPowerByRate()
172 ((Value >> (i * 8)) & 0xF)); in PHY_GetRateValuesOfTxPowerByRate()
179 PwrByRateVal[0] = (s8) ((((Value >> (8 + 4)) & 0xF)) * 10 + in PHY_GetRateValuesOfTxPowerByRate()
[all …]
/openbmc/linux/drivers/staging/rtl8723bs/core/
H A Drtw_efuse.c34 Efuse_Read1ByteFromFakeContent(u16 Offset, u8 *Value) in Efuse_Read1ByteFromFakeContent() argument
39 *Value = fakeEfuseContent[Offset]; in Efuse_Read1ByteFromFakeContent()
41 *Value = fakeBTEfuseContent[fakeEfuseBank-1][Offset]; in Efuse_Read1ByteFromFakeContent()
46 Efuse_Write1ByteToFakeContent(u16 Offset, u8 Value) in Efuse_Write1ByteToFakeContent() argument
51 fakeEfuseContent[Offset] = Value; in Efuse_Write1ByteToFakeContent()
53 fakeBTEfuseContent[fakeEfuseBank-1][Offset] = Value; in Efuse_Write1ByteToFakeContent()
452 static void efuse_ShadowRead1Byte(struct adapter *padapter, u16 Offset, u8 *Value) in efuse_ShadowRead1Byte() argument
456 *Value = pEEPROM->efuse_eeprom_data[Offset]; in efuse_ShadowRead1Byte()
461 static void efuse_ShadowRead2Byte(struct adapter *padapter, u16 Offset, u16 *Value) in efuse_ShadowRead2Byte() argument
465 *Value = pEEPROM->efuse_eeprom_data[Offset]; in efuse_ShadowRead2Byte()
[all …]
/openbmc/openbmc-test-automation/redfish/service_root/
H A Dtest_sessions_management.robot73 #timeout Value
100 Valid Value session_service['@odata.id'] ['/redfish/v1/SessionService/']
101 Valid Value session_service['Description'] ['Session Service']
102 Valid Value session_service['Id'] ['SessionService']
103 Valid Value session_service['Name'] ['Session Service']
104 Valid Value session_service['ServiceEnabled'] [True]
105 Valid Value session_service['SessionTimeout'] [${Default_Timeout_Value}]
106 Valid Value session_service['Sessions']['@odata.id'] ['/redfish/v1/SessionService/Sessions']
117 Valid Value sessions['@odata.id'] ['/redfish/v1/SessionService/Sessions/']
118 Valid Value sessions['Description'] ['Session Collection']
[all …]
/openbmc/openbmc-tools/pwmtachtool/src/
H A Dpwmtachtool.c142 int Value = 0; in main() local
168 Value = set_fan_speed (dev_id, fannum, rpmvalue); in main()
169 if ( -1 == Value ) in main()
178 Value = get_fan_speed (dev_id, fannum, &rpmvalue); in main()
179 if ( -1 == Value) in main()
189 Value = set_pwm_dutycycle (dev_id, fannum, rpmvalue); in main()
190 if ( -1 == Value ) in main()
199 Value = set_pwm_dutycycle_value (dev_id, fannum, rpmvalue); in main()
200 if ( -1 == Value ) in main()
209 Value = get_pwm_dutycycle (dev_id, fannum, &dutycycle); in main()
[all …]
/openbmc/linux/Documentation/devicetree/bindings/remoteproc/
H A Dqcom,q6v5.txt8 Value type: <string>
15 Value type: <prop-encoded-array>
21 Value type: <stringlist>
26 Value type: <prop-encoded-array>
31 Value type: <stringlist>
36 Value type: <phandle>
41 Value type: <stringlist>
53 Value type: <phandle>
59 Value type: <stringlist>
65 Value type: <phandle>
[all …]
/openbmc/linux/scripts/
H A Dgenerate_rust_target.rs19 enum Value { enum
26 type Object = Vec<(String, Value)>;
30 impl Display for Value { implementation
33 Value::Boolean(boolean) => write!(formatter, "{}", boolean), in fmt()
34 Value::Number(number) => write!(formatter, "{}", number), in fmt()
35 Value::String(string) => write!(formatter, "\"{}\"", string), in fmt()
36 Value::Object(object) => { in fmt()
64 self.0.push((key.to_string(), Value::Boolean(value))); in push()
70 self.0.push((key.to_string(), Value::Number(value))); in push()
76 self.0.push((key.to_string(), Value::String(value))); in push()
[all …]
/openbmc/linux/Documentation/devicetree/bindings/phy/
H A Dqcom,usb-8x16-phy.txt5 Value type: <string>
10 Value type: <prop-encoded-array>
15 Value type: <prop-encoded-array>
22 Value type: <string>
27 Value type: <phandle>
32 Value type: <phandle>
37 Value type: <phandle>
42 Value type: <prop-encoded-array>
47 Value type: <string>
52 Value type: <prop-encoded-array>
/openbmc/linux/Documentation/devicetree/bindings/input/
H A Dqcom,pm8xxx-keypad.txt7 Value type: <string>
14 Value type: <prop-encoded-array>
19 Value type: <prop-encoded-array>
27 Value type: <prop-encoded-array>
33 Value type: <bool>
38 Value type: <bool>
44 Value type: <u32>
50 Value type: <u32>
56 Value type: <u32>
62 Value type: <u32>
[all …]
/openbmc/google-ipmi-sys/
H A DREADME.md15 | Byte(s) | Value | Data |
23 | Byte(s) | Value | Data |
35 | Byte(s) | Value | Data |
42 | Byte(s) | Value | Data |
66 | Byte(s) | Value | Data |
73 | Byte(s) | Value | Data …
87 | Byte(s) | Value | Data |
94 | Byte(s) | Value | Data |
107 | Byte(s) | Value | Data |
113 | Byte(s) | Value | Data |
[all …]
/openbmc/u-boot/arch/arm/mach-davinci/
H A DKconfig79 Value written to PLLC0 PLL Post-Divider Control Register
85 Value written to PLLC0 Divider 1 register
91 Value written to PLLC0 Divider 2 register
97 Value written to PLLC0 Divider 3 register
103 Value written to PLLC0 Divider 4 register
109 Value written to PLLC0 Divider 5 register
115 Value written to PLLC0 Divider 6 register
121 Value written to PLLC0 Divider 7 register
127 Value written to PLLC1 PLL Post-Divider Control Register
133 Value written to PLLC1 Divider 1 register
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/etcd/etcd-cpp-apiv3/
H A D0001-include-stdint.h-for-int64_t-types.patch12 src/Value.cpp | 1 +
15 diff --git a/src/Value.cpp b/src/Value.cpp
17 --- a/src/Value.cpp
18 +++ b/src/Value.cpp
23 #include "etcd/Value.hpp"
/openbmc/linux/Documentation/devicetree/bindings/pinctrl/
H A Dqcom,apq8084-pinctrl.txt8 Value type: <string>
13 Value type: <prop-encoded-array>
18 Value type: <prop-encoded-array>
23 Value type: <none>
28 Value type: <u32>
34 Value type: <none>
39 Value type: <u32>
82 Value type: <string-array>
95 Value type: <string>
124 Value type: <none>
[all …]
/openbmc/ibm-logging/test/
H A Dtest_policy.cpp281 {"Message"s, Value{"xyz.openbmc_project.Error.Test1"s}}}; in TEST_F()
292 {"Message"s, Value{"xyz.openbmc_project.Error.Test3"s}}, in TEST_F()
305 {"Message"s, Value{"xyz.openbmc_project.Error.Test4"s}}, in TEST_F()
318 {"Message"s, Value{"xyz.openbmc_project.Error.Test4"s}}, in TEST_F()
330 {"Message"s, Value{"xyz.openbmc_project.Error.Test5"s}}, in TEST_F()
342 {"Message"s, Value{"xyz.openbmc_project.Error.Test6"s}}, in TEST_F()
354 {"Message"s, Value{"xyz.openbmc_project.Error.Test7"s}}, in TEST_F()
364 DbusPropertyMap testProperties{{"Message"s, Value{"hello world"s}}}; in TEST_F()
375 {"Message"s, Value{"xyz.openbmc_project.Error.Test7"s}}, in TEST_F()
387 {"Message"s, Value{"xyz.openbmc_project.Error.Test8"s}}, in TEST_F()
[all …]
/openbmc/witherspoon-pfault-analysis/
H A Dgpio.hpp33 enum class Value enum
74 Value read();
83 void set(Value value);
92 void requestLine(Value defaultValue = Value::high);
/openbmc/phosphor-power/
H A Dgpio.hpp33 enum class Value enum
74 Value read();
83 void set(Value value);
92 void requestLine(Value defaultValue = Value::high);
/openbmc/linux/Documentation/devicetree/bindings/powerpc/fsl/
H A Ddcsr.txt23 Value type: <string>
29 Value type: <u32>
35 Value type: <u32>
42 Value type: <prop-encoded-array>
63 Value type: <string>
68 Value type: <prop_encoded-array>
89 Value type: <prop-encoded-array>
113 Value type: <string>
118 Value type: <prop-encoded-array>
150 Value type: <string>
[all …]
/openbmc/linux/Documentation/devicetree/bindings/sound/
H A Dqcom,apq8096.txt7 Value type: <stringlist>
12 Value type: <stringlist>
55 Value type: <stringlist>
60 Value type: <array of phandles>
72 Value type: <string>
78 Value type: <subnode>
83 Value type: <subnode>
88 Value type: <subnode>
93 Value type: <phandle with arguments>
/openbmc/phosphor-dbus-monitor/src/
H A Ddata_types.hpp45 template <typename Key, typename Value>
46 using RefKeyMap = std::map<std::reference_wrapper<Key>, Value, std::less<Key>>;
49 template <typename Value, typename... Keys>
50 using TupleRefMap = std::map<TupleOfRefs<Keys...>, Value, TupleOfRefsLess>;
68 using Value = sdbusplus::utility::merge_variants_t< typedef
77 using PathInterfacesAdded = std::map<Interface, std::map<Property, Value>>;
/openbmc/openbmc-tools/expectedJsonChecker/
H A DREADME.md59 "Value": {}
63 "Value": {}
78 "Value": {}
82 "Value": {}
106 "Unit": "xyz.openbmc_project.Sensor.Value.Unit.RPMS",
107 "Value": 0
126 "Unit": "xyz.openbmc_project.Sensor.Value.Unit.RPMS",
127 "Value": 3393
147 "Unit": "xyz.openbmc_project.Sensor.Value.Unit.RPMS",
148 "Value": 0
[all …]
/openbmc/openbmc-test-automation/ipmi/
H A Dtest_ipmi_network_configuration.robot48 Valid Value lan_print_output['IP Address'] ["${STATIC_IP}"]
49 Valid Value lan_print_output['Subnet Mask'] ["${NETMASK}"]
50 Valid Value lan_print_output['Default Gateway IP'] ["${GATEWAY}"]
86 Valid Value lan_config['802.1q VLAN ID'] ['Disabled']
99 Valid Value lan_config['802.1q VLAN ID'] ['${vlan_id_for_ipmi}']
100 Valid Value lan_config['IP Address'] ["${STATIC_IP}"]
111 Valid Value lan_config['802.1q VLAN ID'] ['${vlan_id_for_ipmi}']
121 Valid Value lan_config['802.1q VLAN ID'] ['${vlan_id_for_ipmi}']
122 Valid Value lan_config['IP Address'] ['${ip_address}']
123 Valid Value lan_config['Subnet Mask'] ['${subnet_mask}']
[all …]
H A Dtest_ipmi_general.robot48 Valid Value uuid ['${guids}']
88 …Valid Value medium_type_ipmi_conf_map['${channel_info_ipmi['channel_0x${CHANNEL_NUMBER}_info']['c…
91 …Valid Value protocol_type_ipmi_conf_map['${channel_info_ipmi['channel_0x${CHANNEL_NUMBER}_info'][…
94 Valid Value channel_info_ipmi['channel_0x${CHANNEL_NUMBER}_info']['session_support']
97 Valid Value channel_info_ipmi['channel_0x${CHANNEL_NUMBER}_info']['active_session_count']
100 … Valid Value channel_info_ipmi['channel_0x${CHANNEL_NUMBER}_info']['protocol_vendor_id'] ['7154']
103 …Valid Value disabled_ipmi_conf_map['${channel_info_ipmi['volatile(active)_settings']['alerting']}…
106 …Valid Value disabled_ipmi_conf_map['${channel_info_ipmi['volatile(active)_settings']['per-message…
109 …Valid Value disabled_ipmi_conf_map['${channel_info_ipmi['volatile(active)_settings']['user_level_…
112 …Valid Value access_mode_ipmi_conf_map['${channel_info_ipmi['volatile(active)_settings']['access_m…
[all …]
/openbmc/openbmc-test-automation/tools/
H A Dsensors_dbus_list.sh18 exist=`busctl introspect $dobj $i | grep yz.openbmc_project.Sensor.Value`
20 cmd_value=` busctl get-property $dobj $i xyz.openbmc_project.Sensor.Value Value`
21 echo $i Value=${cmd_value##*d}
/openbmc/linux/Documentation/devicetree/bindings/soc/fsl/
H A Dqman-portals.txt20 Value type: <stringlist>
26 Value type: <prop-encoded-array>
33 Value type: <prop-encoded-array>
38 Value type: <prop-encoded-array>
44 Value type: <phandle>
51 Value type: <u32>
70 Value type: <prop-encoded-array>
75 Value type: <phandle>
80 Value type: <phandle>
/openbmc/openbmc-tools/dbus-pcap/
H A DREADME.md34 …Type.SENDER: 7>, data=':1.95')]), body=['xyz.openbmc_project.Sensor.Value', [['Value', 3210]], []])
36 …Type.SENDER: 7>, data=':1.95')]), body=['xyz.openbmc_project.Sensor.Value', [['Value', 3081]], []])
47 …ed"], [8, "sa{sv}as"], [7, ":1.95"]]], ["xyz.openbmc_project.Sensor.Value", [["Value", 3210]], []]]
48 …ed"], [8, "sa{sv}as"], [7, ":1.95"]]], ["xyz.openbmc_project.Sensor.Value", [["Value", 3081]], []]]

12345678910>>...33