Home
last modified time | relevance | path

Searched refs:spec_str (Results 1 – 3 of 3) sorted by relevance

/linux-6.1.9/tools/lib/bpf/
Drelo_core.c270 const char *name, *spec_str; in bpf_core_parse_spec() local
274 spec_str = btf__name_by_offset(btf, relo->access_str_off); in bpf_core_parse_spec()
275 if (str_is_empty(spec_str) || *spec_str == ':') in bpf_core_parse_spec()
285 if (strcmp(spec_str, "0")) in bpf_core_parse_spec()
291 while (*spec_str) { in bpf_core_parse_spec()
292 if (*spec_str == ':') in bpf_core_parse_spec()
293 ++spec_str; in bpf_core_parse_spec()
294 if (sscanf(spec_str, "%d%n", &access_idx, &parsed_len) != 1) in bpf_core_parse_spec()
298 spec_str += parsed_len; in bpf_core_parse_spec()
387 prog_name, relo->type_id, spec_str, i, id, btf_kind_str(t)); in bpf_core_parse_spec()
[all …]
Dusdt.c240 const char *spec_str; member
777 target->spec_str = note.args; in collect_usdt_targets()
899 if (hashmap__find(specs_hash, target->spec_str, &tmp)) { in allocate_spec_id()
918 err = hashmap__add(specs_hash, target->spec_str, (void *)(long)*spec_id); in allocate_spec_id()
931 err = hashmap__add(specs_hash, target->spec_str, (void *)(long)*spec_id); in allocate_spec_id()
/linux-6.1.9/sound/pci/hda/
Dhda_generic.c5653 const struct hda_pcm_stream *spec_str, in setup_pcm_stream() argument
5659 if (spec_str) { in setup_pcm_stream()
5660 if (spec_str->substreams) in setup_pcm_stream()
5661 str->substreams = spec_str->substreams; in setup_pcm_stream()
5662 if (spec_str->channels_min) in setup_pcm_stream()
5663 str->channels_min = spec_str->channels_min; in setup_pcm_stream()
5664 if (spec_str->channels_max) in setup_pcm_stream()
5665 str->channels_max = spec_str->channels_max; in setup_pcm_stream()
5666 if (spec_str->rates) in setup_pcm_stream()
5667 str->rates = spec_str->rates; in setup_pcm_stream()
[all …]