/openbmc/phosphor-logging/test/openpower-pels/ |
H A D | additional_data_test.cpp | 25 {"KEY1", "VALUE1"}, {"KEY2", "VALUE2"}, {"KEY3", ""}}; in TEST() 31 EXPECT_TRUE(ad.getValue("KEY2")); in TEST() 32 EXPECT_EQ(*(ad.getValue("KEY2")), "VALUE2"); in TEST() 44 std::string expected = R"({"KEY1":"VALUE1","KEY2":"VALUE2","KEY3":""})"; in TEST() 58 ad.add("KEY2", "VALUE2"); in TEST() 59 EXPECT_EQ(*(ad.getValue("KEY2")), "VALUE2"); in TEST() 62 {"KEY2", "VALUE2"}}; in TEST()
|
H A D | pel_test.cpp | 363 {"KEY2", "VALUE2"}, in TEST_F() 381 R"({"KEY1":"VALUE1","KEY2":"VALUE2","KEY3":"VALUE3"})"; in TEST_F() 393 EXPECT_EQ(newJSON["KEY2"], "VALUE2"); in TEST_F() 504 "key2": 42, in getJSONFFDC() 543 EXPECT_EQ(42, json["key2"].get<int>()); in TEST_F() 578 "key2": 42, in getCBORFFDC() 622 EXPECT_EQ(42, json["key2"].get<int>()); in TEST_F()
|
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Logging/ |
H A D | Create.interface.yaml | 25 "key2": "value2" 28 ["KEY1=value1", "KEY2=value2"] 61 "key2": "value2" 64 ["KEY1=value1", "KEY2=value2"]
|
/openbmc/u-boot/fs/ubifs/ |
H A D | key.h | 466 * @key2: the second key to compare 469 * @key2, %0 if the keys are equivalent and %1 if @key1 is greater than @key2. 473 const union ubifs_key *key2) in keys_cmp() argument 475 if (key1->u32[0] < key2->u32[0]) in keys_cmp() 477 if (key1->u32[0] > key2->u32[0]) in keys_cmp() 479 if (key1->u32[1] < key2->u32[1]) in keys_cmp() 481 if (key1->u32[1] > key2->u32[1]) in keys_cmp() 491 * @key2: the second key to compare 493 * This function compares 2 keys and returns %1 if @key1 is equal to @key2 and 498 const union ubifs_key *key2) in keys_eq() argument [all …]
|
H A D | tnc_misc.c | 357 const union ubifs_key *key1, *key2; in read_znode() local 360 key2 = &znode->zbranch[i + 1].key; in read_znode() 362 cmp = keys_cmp(c, key1, key2); in read_znode()
|
H A D | tnc.c | 714 * collision with Key2. in resolve_collision() 723 * level 0 | Key0 | | Key2 | in resolve_collision() 726 * The lookup finds Key2 in znode zb. Lets say in resolve_collision() 731 * according to the parent's keys. Key2 must in resolve_collision() 2669 union ubifs_key key1, key2; in ubifs_tnc_remove_ino() local 2705 highest_ino_key(c, &key2, xattr_inum); in ubifs_tnc_remove_ino() 2706 err = ubifs_tnc_remove_range(c, &key1, &key2); in ubifs_tnc_remove_ino() 2719 highest_ino_key(c, &key2, inum); in ubifs_tnc_remove_ino() 2721 return ubifs_tnc_remove_range(c, &key1, &key2); in ubifs_tnc_remove_ino()
|
/openbmc/qemu/qga/ |
H A D | commands-posix-ssh.c | 247 .value = (char *)"algo key2 comments" 331 test_authorized_keys_equal("algo key2 comments"); in test_add_keys() 339 /* key2 came first, and shouldn't be duplicated */ in test_add_keys() 340 test_authorized_keys_equal("algo key2 comments\n" in test_add_keys() 355 /* reset with key2 only */ in test_add_reset_keys() 357 "algo key2 comments"); in test_add_reset_keys() 365 test_authorized_keys_equal("algo key2 comments"); in test_add_reset_keys()
|
/openbmc/qemu/tests/qapi-schema/ |
H A D | quoted-structural-chars.json | 1 '{' 'key1' ':' 'value1' ',' 'key2' ':' '[' ']' '}'
|
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Dump/ |
H A D | Create.interface.yaml | 29 "key2": "value2" 32 ["KEY1=value1", "KEY2=value2"]
|
/openbmc/phosphor-dbus-interfaces/yaml/org/open_power/Logging/ |
H A D | PEL.interface.yaml | 85 "key2": "value2" 88 ["KEY1=value1", "KEY2=value2"]
|
/openbmc/u-boot/common/ |
H A D | hwconfig.c | 245 env_set("hwconfig", "key1:subkey1=value1,subkey2=value2;key2:value3;;;;" in main() 266 ret = hwconfig_arg("key2", &len); in main() 269 assert(hwconfig_arg_cmp("key2", "value3")); in main()
|
/openbmc/qemu/net/ |
H A D | colo.c | 38 int connection_key_equal(const void *key1, const void *key2) in connection_key_equal() argument 40 return memcmp(key1, key2, sizeof(ConnectionKey)) == 0; in connection_key_equal()
|
/openbmc/phosphor-psu-code-mgmt/src/ |
H A D | version.cpp | 79 // e.g. key1=value1,key2=value2 in getExtVersionInfo()
|
/openbmc/phosphor-logging/extensions/openpower-pels/ |
H A D | additional_data.hpp | 84 * Looks like: {"key1":"value1","key2":"value2"}
|
/openbmc/qemu/tests/unit/ |
H A D | test-crypto-xts.c | 35 unsigned char key2[32]; member 350 AES_set_encrypt_key(data->key2, data->keylen / 2 * 8, &aestweak.enc); in test_xts() 351 AES_set_decrypt_key(data->key2, data->keylen / 2 * 8, &aestweak.dec); in test_xts() 386 AES_set_encrypt_key(data->key2, data->keylen / 2 * 8, &aestweak.enc); in test_xts_split() 387 AES_set_decrypt_key(data->key2, data->keylen / 2 * 8, &aestweak.dec); in test_xts_split() 431 AES_set_encrypt_key(data->key2, data->keylen / 2 * 8, &aestweak.enc); in test_xts_unaligned() 432 AES_set_decrypt_key(data->key2, data->keylen / 2 * 8, &aestweak.dec); in test_xts_unaligned()
|
H A D | check-qdict.c | 208 qdict_put_int(tests_dict, "key2", 2); in qdict_iterapi_test()
|
/openbmc/u-boot/scripts/kconfig/lxdialog/ |
H A D | util.c | 550 int key2; in on_key_esc() local 556 key2 = wgetch(win); in on_key_esc() 562 if (key == KEY_ESC && key2 == ERR) in on_key_esc() 564 else if (key != ERR && key != KEY_ESC && key2 == ERR) in on_key_esc()
|
/openbmc/entity-manager/docs/ |
H A D | entity_manager_dbus_api.md | 127 "key2": "value"
|
/openbmc/docs/designs/ |
H A D | dump-manager.md | 166 "key2": "value2" } ends up in AdditionaData like: ["KEY1=value1", 167 "KEY2=value2"]
|
/openbmc/u-boot/lib/rsa/ |
H A D | rsa-mod-exp.c | 280 uint32_t key1[key.len], key2[key.len]; in rsa_mod_exp_sw() local 283 key.rr = key2; in rsa_mod_exp_sw()
|
/openbmc/u-boot/arch/arm/mach-at91/include/mach/ |
H A D | atmel_mpddrc.h | 44 u32 ocms_key2; /* 0x40: OCMS KEY2 Register */
|
/openbmc/u-boot/doc/ |
H A D | README.mediatek | 96 key1=value1;key2=value2;...
|
/openbmc/u-boot/board/mpr2/ |
H A D | mpr2.c | 86 /* G7 (x); G6 IRQ5(TOUCH_BUSY); G5 IRQ4(TOUCH_IRQ);G4 GPI(KEY2); in board_init()
|
/openbmc/qemu/hw/i386/ |
H A D | intel_iommu.c | 227 const struct vtd_iotlb_key *key2 = v2; in vtd_iotlb_equal() local 229 return key1->sid == key2->sid && in vtd_iotlb_equal() 230 key1->pasid == key2->pasid && in vtd_iotlb_equal() 231 key1->level == key2->level && in vtd_iotlb_equal() 232 key1->gfn == key2->gfn; in vtd_iotlb_equal() 248 const struct vtd_as_key *key2 = v2; in vtd_as_equal() local 250 return (key1->bus == key2->bus) && (key1->devfn == key2->devfn) && in vtd_as_equal() 251 (key1->pasid == key2->pasid); in vtd_as_equal() 276 const struct vtd_hiod_key *key2 = v2; in vtd_hiod_equal() local 278 return (key1->bus == key2->bus) && (key1->devfn == key2->devfn); in vtd_hiod_equal()
|
/openbmc/bmcweb/test/redfish-core/include/utils/ |
H A D | json_utils_test.cpp | 628 "key2": [1, 2, 3], in TEST() 653 "key2": [1, 2, 3], in TEST()
|