Home
last modified time | relevance | path

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

/openbmc/libpldm/tests/fuzz/
H A Dfd-fuzz.cpp117 .str_len = 3,
128 .str_len = 4,
164 active->str_len = 4; in cb_imageset_versions()
167 pending->str_len = 4; in cb_imageset_versions()
/openbmc/openbmc/poky/meta/lib/patchtest/selftest/files/
H A DTestPatch.test_signed_off_by_presence.fail42 + printf("%d\n", str_len(string1));
43 + printf("%d\n", str_len(string2));
H A DTestMbox.test_commit_message_presence.fail39 + printf("%d\n", str_len(string1));
40 + printf("%d\n", str_len(string2));
H A DTestMbox.test_signed_off_by_presence.1.fail42 + printf("%d\n", str_len(string1));
43 + printf("%d\n", str_len(string2));
H A DTestMbox.test_commit_message_presence.pass43 + printf("%d\n", str_len(string1));
44 + printf("%d\n", str_len(string2));
H A DTestPatch.test_cve_tag_format.fail43 + printf("%d\n", str_len(string1));
44 + printf("%d\n", str_len(string2));
H A DTestPatch.test_cve_tag_format.pass43 + printf("%d\n", str_len(string1));
44 + printf("%d\n", str_len(string2));
H A DTestMbox.test_bugzilla_entry_format.pass44 + printf("%d\n", str_len(string1));
45 + printf("%d\n", str_len(string2));
H A DTestMbox.test_shortlog_format.fail43 + printf("%d\n", str_len(string1));
44 + printf("%d\n", str_len(string2));
H A DTestPatch.test_signed_off_by_presence.pass43 + printf("%d\n", str_len(string1));
44 + printf("%d\n", str_len(string2));
H A DTestMbox.test_mbox_format.pass43 + printf("%d\n", str_len(string1));
44 + printf("%d\n", str_len(string2));
H A DTestMbox.test_commit_message_user_tags.fail42 + printf("%d\n", str_len(string1));
43 + printf("%d\n", str_len(string2));
H A DTestMbox.test_signed_off_by_presence.2.fail43 + printf("%d\n", str_len(string1));
44 + printf("%d\n", str_len(string2));
H A DTestMbox.test_mbox_format.fail43 + printf("%d\n", str_len(string1));
44 + printf("%d\n", str_len(string2));
H A DTestMbox.test_shortlog_length.pass43 + printf("%d\n", str_len(string1));
44 + printf("%d\n", str_len(string2));
H A DTestMbox.test_shortlog_format.pass43 + printf("%d\n", str_len(string1));
44 + printf("%d\n", str_len(string2));
H A DTestMbox.test_signed_off_by_presence.pass43 + printf("%d\n", str_len(string1));
44 + printf("%d\n", str_len(string2));
H A DTestMbox.test_bugzilla_entry_format.fail44 + printf("%d\n", str_len(string1));
45 + printf("%d\n", str_len(string2));
H A DTestMbox.test_commit_message_user_tags.pass43 + printf("%d\n", str_len(string1));
44 + printf("%d\n", str_len(string2));
H A DTestMbox.test_shortlog_length.fail43 + printf("%d\n", str_len(string1));
44 + printf("%d\n", str_len(string2));
/openbmc/u-boot/lib/libavb/
H A Davb_util.c338 size_t str_len = avb_strlen(str); in avb_strdupv() local
340 lengths[num_strings] = str_len; in avb_strdupv()
341 if (!avb_safe_add_to(&total_length, str_len)) { in avb_strdupv()
/openbmc/libpldm/src/dsp/
H A Dfirmware_update.c1352 resp_data->active_comp_image_set_ver_str.str_len); in encode_get_firmware_parameters_resp()
1356 resp_data->pending_comp_image_set_ver_str.str_len); in encode_get_firmware_parameters_resp()
1359 buf, resp_data->active_comp_image_set_ver_str.str_len, in encode_get_firmware_parameters_resp()
1361 resp_data->active_comp_image_set_ver_str.str_len); in encode_get_firmware_parameters_resp()
1366 buf, resp_data->pending_comp_image_set_ver_str.str_len, in encode_get_firmware_parameters_resp()
1368 resp_data->pending_comp_image_set_ver_str.str_len); in encode_get_firmware_parameters_resp()
1402 pldm_msgbuf_insert(buf, comp->active_ver.str.str_len); in encode_get_firmware_parameters_resp_comp_entry()
1412 pldm_msgbuf_insert(buf, comp->pending_ver.str.str_len); in encode_get_firmware_parameters_resp_comp_entry()
1423 rc = pldm_msgbuf_insert_array(buf, comp->active_ver.str.str_len, in encode_get_firmware_parameters_resp_comp_entry()
1425 comp->active_ver.str.str_len); in encode_get_firmware_parameters_resp_comp_entry()
[all …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/ncp/libowfat/
H A D0001-replace-__pure__-with-compiler-attribute-pure.patch364 #define str_len(foo) strlen(foo)
366 /* str_len returns the index of \0 in s */
367 -size_t str_len(const char *s) __pure__;
368 +size_t str_len(const char *s) __PURE;
/openbmc/libpldm/tests/dsp/
H A Dfirmware_update.cpp1616 .str_len = activeCompVerStrLen, in TEST()
1624 .str_len = pendingCompVerStrLen, in TEST()
3282 EXPECT_EQ(req.version.str_len, compVerStrLen); in TEST()
3284 req.version.str_data + req.version.str_len, in TEST()
3547 EXPECT_EQ(req.version.str_len, compVerStrLen); in TEST()
3549 req.version.str_data + req.version.str_len, in TEST()
/openbmc/libpldm/include/libpldm/
H A Dfirmware_update.h447 uint8_t str_len; member