Lines Matching refs:spec_str
4515 const char *spec_str,
4526 if (str_is_empty(spec_str) || *spec_str == ':')
4536 if (strcmp(spec_str, "0"))
4541 /* parse spec_str="0:1:2:3:4" into array raw_spec=[0, 1, 2, 3, 4] */
4542 while (*spec_str) {
4543 if (*spec_str == ':')
4544 ++spec_str;
4545 if (sscanf(spec_str, "%d%n", &access_idx, &parsed_len) != 1)
4549 spec_str += parsed_len;
4636 type_id, spec_str, i, id, btf_kind_str(t));
5739 const char *spec_str;
5751 spec_str = btf__name_by_offset(local_btf, relo->access_str_off);
5752 if (str_is_empty(spec_str))
5755 err = bpf_core_parse_spec(local_btf, local_id, spec_str, relo->kind, &local_spec);
5760 spec_str, err);
5779 if (str_is_empty(spec_str)) {