/openbmc/openbmc-test-automation/ipmi/ |
H A D | test_ipmi_mc_id.robot | 19 Verify Get And Set Management Controller ID String 24 # Get Management Controller Identifier String: witherspoon 34 # Set Management Controller Identifier String Command: HOST 36 Set Management Controller ID String ${new_mc_id} 39 Get Management Controller ID String And Verify ${new_mc_id} 42 Set Management Controller ID String ${initial_mc_id} 45 Get Management Controller ID String And Verify ${initial_mc_id} 48 Test Management Controller ID String Status via IPMI 53 Verify Management Controller ID String Status disable 57 Verify Management Controller ID String Status enable [all …]
|
H A D | test_ipmi_network_verification.robot | 124 ${ipmi_output}= Split String ${ipmi_output} 139 ${cipher_suite_entry_count}= Split String ${ipmi_output} 156 ${authentication_type_support}= Split String ${ipmi_output} 183 ${ipmi_output}= Split String ${ipmi_output} 197 ${ipmi_output}= Split String ${ipmi_output} 209 ${Invalid_mac_address_hex}= Mac Address To Hex String ${Invalid_mac_address} 226 ${mac_address_hex}= Mac Address To Hex String ${set_mac_address} 236 ${ipmi_output_split}= Split String ${ipmi_output} 250 ${cipher_suite_privilege}= Split String ${ipmi_output} 365 ${ipmi_default_mac_split}= Split String ${ipmi_get_default_mac} [all …]
|
H A D | test_ipmi_fru_device.robot | 180 ${output}= Split String ${output} \n\n 187 ${dev}= Split String ${devices} \n 194 ... Get Lines Containing String ${frudata} Board Serial 196 ... Get Lines Containing String ${frudata} Product Serial 200 ${data}= Split String ${serial_nos} : 204 ${entry}= Split String ${entry} ${SPACE}:${SPACE} 257 ... Get Lines Containing String ${dbus_output} .BOARD_SERIAL 259 ... Get Lines Containing String ${dbus_output} .PRODUCT_SERIAL 260 ${serial_no}= Split String ${serial_no} " 294 ${dbus_data}= Get Lines Containing String ${dbus_resp} ${property_name} [all …]
|
/openbmc/linux/tools/power/cpupower/utils/helpers/ |
H A D | helpers.h | 22 #define _(String) gettext(String) argument 24 #define gettext_noop(String) String argument 26 #define N_(String) gettext_noop(String) argument 30 #define _(String) String argument 31 #define N_(String) String argument
|
/openbmc/linux/scripts/ |
H A D | generate_rust_target.rs | 22 String(String), enumerator 26 type Object = Vec<(String, Value)>; 35 Value::String(string) => write!(formatter, "\"{}\"", string), in fmt() 74 impl Push<String> for TargetSpec { 75 fn push(&mut self, key: &str, value: String) { in push() argument 76 self.0.push((key.to_string(), Value::String(value))); in push() 106 struct KernelConfig(HashMap<String, String>); 115 let mut line = String::new(); in from_stdin() 172 vec![("kind".to_string(), Value::String("none".to_string()))], in main()
|
H A D | rustdoc_test_gen.rs | 120 let mut rust_tests = String::new(); in main() 121 let mut c_test_declarations = String::new(); in main() 122 let mut c_test_cases = String::new(); in main() 123 let mut body = String::new(); in main() 124 let mut last_file = String::new(); in main()
|
/openbmc/openbmc-test-automation/ipmi/dcmi/ |
H A D | test_dcmi_management_controller.robot | 27 ${rsp}= Get DCMI Management Controller Identifier String 28 @{ipmi_cmd_rsp_list}= Split String ${rsp} 44 Test Hostname Is Same With Management Controller Identifier String 49 ${rsp}= Get DCMI Management Controller Identifier String 50 @{ipmi_cmd_rsp_list}= Split String ${rsp} 56 Test Get Management Controller Identifier String 62 # Set Hostname via DCMI Management Controller Identifier String Command. 63 ${cmd_rsp}= Set DCMI Management Controller Identifier String 64 @{cmd_rsp_list}= Split String ${cmd_rsp} 68 ${rsp}= Get DCMI Management Controller Identifier String [all …]
|
H A D | test_dcmi_asset_tag.robot | 18 Set Asset Tag With Valid String Length 22 ${random_string}= Generate Random String 63 29 Set Asset Tag With Invalid String Length 33 ${random_string}= Generate Random String 64 44 ${random_string}= Generate Random String 63 51 Set Asset Tag With Valid String Length Via DCMI Command 56 @{cmd_resp_list}= Split String ${cmd_resp} 62 Set Asset Tag With Invalid String Length Via DCMI Command 66 ${random_string}= Generate Random String ${17} 82 @{cmd_resp_list}= Split String ${cmd_resp} [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/opencv/opencv/ |
H A D | 0008-Do-not-embed-build-directory-in-binaries.patch | 76 @@ -280,32 +280,8 @@ cv::String findDataFile(const cv::String& relative_path, 80 - cv::String cwd = utils::fs::getcwd(); 81 - cv::String build_dir(OPENCV_BUILD_DIR); 90 - cv::String datapath = utils::fs::join(build_dir, build_subdirs[k]); 95 - const cv::String& subdir = search_subdir[i - 1]; 96 - cv::String prefix = utils::fs::join(datapath, subdir); 104 cv::String source_dir; 105 - cv::String try_source_dir = cwd; 106 + cv::String try_source_dir = utils::fs::getcwd(); 110 @@ -341,28 +317,6 @@ cv::String findDataFile(const cv::String& relative_path, [all …]
|
/openbmc/linux/rust/macros/ |
H A D | module.rs | 7 fn expect_string_array(it: &mut token_stream::IntoIter) -> Vec<String> { in expect_string_array() argument 28 buffer: String, 36 buffer: String::new(), in new() 94 type_: String, 95 license: String, 96 name: String, 97 author: Option<String>, 98 description: Option<String>, 99 alias: Option<Vec<String>>,
|
H A D | helpers.rs | 5 pub(crate) fn try_ident(it: &mut token_stream::IntoIter) -> Option<String> { in try_ident() argument 13 pub(crate) fn try_literal(it: &mut token_stream::IntoIter) -> Option<String> { in try_literal() argument 21 pub(crate) fn try_string(it: &mut token_stream::IntoIter) -> Option<String> { in try_string() argument 37 pub(crate) fn expect_ident(it: &mut token_stream::IntoIter) -> String { in expect_ident() argument 49 pub(crate) fn expect_string(it: &mut token_stream::IntoIter) -> String { in expect_string() argument 53 pub(crate) fn expect_string_ascii(it: &mut token_stream::IntoIter) -> String { in expect_string_ascii() argument
|
/openbmc/bmcweb/redfish-core/include/generated/enums/ |
H A D | metric_definition.hpp | 17 String, enumerator 34 String, enumerator 60 {MetricType::String, "String"}, 77 {MetricDataType::String, "String"},
|
H A D | action_info.hpp | 15 String, enumerator 26 {ParameterTypes::String, "String"},
|
/openbmc/openbmc-test-automation/pldm/ |
H A D | test_pldm_bios_attributes.robot | 6 Library String 30 ${random_attr}= Generate Random String 8 [LETTERS][NUMBERS] 46 ${random_str}= Generate Random String 8 [LETTERS][NUMBERS] 95 Verify Set Out Of Range String Value For BIOS String Attribute Type 103 ${random_value}= Generate Random String ${count} [LETTERS][NUMBERS] 115 Verify Set BIOS String Attribute Type 227 ${value1}= Convert To String ${output["CurrentValue"]} 228 ${value2}= Convert To String ${j} 229 ${value2}= Replace String ${value2} " ${EMPTY} 250 ${value1}= Convert To String ${output["CurrentValue"]} [all …]
|
H A D | test_pldm_bios.robot | 6 Library String 30 @{date_time}= Split String ${pldm_output['Response']} ${SPACE} 31 @{time}= Split String ${date_time}[1] : 37 @{current_time}= Split String ${bmc_date} ${EMPTY} 152 ${date}= Split String ${date}
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/tcltk/tk8/ |
H A D | tkprivate.diff | 11 # String to pass to linker to pick up the Tk library from its 16 # String to pass to linker to pick up the Tk library from its 29 # String to pass to linker to pick up the Tk stub library from its 34 # String to pass to linker to pick up the Tk stub library from its
|
/openbmc/webui-vue/src/components/Global/ |
H A D | TableRowAction.vue | 65 type: String, 73 type: String, 81 type: String, 85 type: String,
|
H A D | FormFile.vue | 52 type: String, 60 type: String, 68 type: String,
|
/openbmc/openbmc-test-automation/network/ |
H A D | test_host_network.robot | 35 ${mac_address_hex}= Mac Address To Hex String ${mac_address} 36 ${ip_address_hex}= IP Address To Hex String ${ip_address} 37 ${gateway_hex}= IP Address To Hex String ${gateway_ip} 62 ${mac_address_hex}= Mac Address To Hex String ${mac_address}
|
/openbmc/openbmc-test-automation/security/ |
H A D | test_slp.robot | 5 Library String 32 @{parameters}= Split String ${SLP_SERVICES} ${\n} 63 ${remove_prefix}= Remove String ${SLP_SERVICES} service: 64 @{services}= Split String ${remove_prefix} ${\n}
|
/openbmc/webui-vue/src/views/Overview/ |
H A D | OverviewCard.vue | 48 type: String, 52 type: String, 56 type: String,
|
/openbmc/openbmc-test-automation/openpower/localuser/ |
H A D | test_ipmi_redfish_user.robot | 32 ${random_username}= Generate Random String 8 [LETTERS] 46 ${random_username}= Generate Random String 8 [LETTERS] 72 ${random_username}= Generate Random String 8 [LETTERS] 100 ${random_username}= Generate Random String 8 [LETTERS] 127 ${random_username}= Generate Random String 8 [LETTERS] 159 ... Get Lines Containing String ${resp} ${random_username} 175 ${random_username}= Generate Random String 8 [LETTERS] 248 ${name_line}= Get Lines Containing String ${access_output} User Name
|
/openbmc/openbmc-test-automation/redfish/dmtf_tools/ |
H A D | test_redfishtool_certificate.robot | 7 Library String 120 ${file_data}= Decode Bytes To String ${bytes} UTF-8 138 ${file_data}= Decode Bytes To String ${bytes} UTF-8 146 ${string}= Convert To String ${dict_objects} 147 ${string}= Replace String ${string} ' " 232 ${string}= Convert To String ${csr_dict} 234 ${string2}= Replace String ${string} ' " 267 ${file_data}= Decode Bytes To String ${bytes} UTF-8 294 ${cmd_output}= Convert String to JSON ${cmd_output} 390 ${file_data}= Decode Bytes To String ${bytes} UTF-8 [all …]
|
/openbmc/openbmc-test-automation/redfish/account_service/ |
H A D | test_ipmi_redfish_user.robot | 31 ${random_username}= Generate Random String 8 [LETTERS] 51 ${random_username}= Generate Random String 8 [LETTERS] 76 ${random_username}= Generate Random String 8 [LETTERS] 102 ... Get Lines Containing String ${resp} ${random_username} 111 ${random_username}= Generate Random String 8 [LETTERS] 233 ${random_username}= Generate Random String 8 [LETTERS] 241 ${random_username}= Generate Random String 8 [LETTERS] 271 ${random_username}= Generate Random String 8 [LETTERS] 331 ${name_line}= Get Lines Containing String ${access} User Name
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/netcat/netcat/ |
H A D | netcat-locale_h.patch | 25 #define _(String) gettext(String)
|