Home
last modified time | relevance | path

Searched refs:manifest (Results 1 – 9 of 9) sorted by relevance

/Linux-v4.19/drivers/staging/greybus/
Dmanifest.c455 struct greybus_manifest *manifest; in gb_manifest_parse() local
476 manifest = data; in gb_manifest_parse()
477 header = &manifest->header; in gb_manifest_parse()
494 desc = manifest->descriptors; in gb_manifest_parse()
Dinterface.c1073 void *manifest; in gb_interface_enable() local
1107 manifest = kmalloc(size, GFP_KERNEL); in gb_interface_enable()
1108 if (!manifest) { in gb_interface_enable()
1114 ret = gb_control_get_manifest_operation(intf, manifest, size); in gb_interface_enable()
1124 if (!gb_manifest_parse(intf, manifest, size)) { in gb_interface_enable()
1152 kfree(manifest); in gb_interface_enable()
1166 kfree(manifest); in gb_interface_enable()
Dcontrol.h48 int gb_control_get_manifest_operation(struct gb_interface *intf, void *manifest,
DMakefile6 manifest.o \
Dcontrol.c123 int gb_control_get_manifest_operation(struct gb_interface *intf, void *manifest, in gb_control_get_manifest_operation() argument
129 NULL, 0, manifest, size); in gb_control_get_manifest_operation()
/Linux-v4.19/tools/perf/
Dperf-archive.sh32 MANIFEST=$(mktemp /tmp/perf-archive-manifest.XXXXXX)
/Linux-v4.19/sound/soc/
Dsoc-topology.c2265 struct snd_soc_tplg_manifest **manifest) in manifest_new_ver() argument
2270 *manifest = NULL; in manifest_new_ver()
2298 *manifest = dest; in manifest_new_ver()
2305 struct snd_soc_tplg_manifest *manifest, *_manifest; in soc_tplg_manifest_load() local
2312 manifest = (struct snd_soc_tplg_manifest *)tplg->pos; in soc_tplg_manifest_load()
2315 if (manifest->size == sizeof(*manifest)) { in soc_tplg_manifest_load()
2317 _manifest = manifest; in soc_tplg_manifest_load()
2320 err = manifest_new_ver(tplg, manifest, &_manifest); in soc_tplg_manifest_load()
2326 if (tplg->comp && tplg->ops && tplg->ops->manifest) in soc_tplg_manifest_load()
2327 return tplg->ops->manifest(tplg->comp, tplg->index, _manifest); in soc_tplg_manifest_load()
/Linux-v4.19/include/sound/
Dsoc-topology.h158 int (*manifest)(struct snd_soc_component *, int index, member
/Linux-v4.19/sound/soc/intel/skylake/
Dskl-topology.c3565 static int skl_tplg_get_manifest_data(struct snd_soc_tplg_manifest *manifest, in skl_tplg_get_manifest_data() argument
3574 array = (struct snd_soc_tplg_vendor_array *)manifest->priv.data; in skl_tplg_get_manifest_data()
3584 (manifest->priv.data + off); in skl_tplg_get_manifest_data()
3593 (manifest->priv.data + off); in skl_tplg_get_manifest_data()
3603 (manifest->priv.data + off); in skl_tplg_get_manifest_data()
3605 data = (manifest->priv.data + off); in skl_tplg_get_manifest_data()
3625 struct snd_soc_tplg_manifest *manifest) in skl_manifest_load() argument
3631 if (manifest->priv.size == 0) in skl_manifest_load()
3634 skl_tplg_get_manifest_data(manifest, bus->dev, skl); in skl_manifest_load()
3652 .manifest = skl_manifest_load,