Home
last modified time | relevance | path

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

1234567891011

/Linux-v4.19/drivers/scsi/aic7xxx/aicasm/
Daicasm_symbol.c220 curnode = SLIST_NEXT(curnode, links); in symlist_search()
267 SLIST_INSERT_HEAD(symlist, newnode, links); in symlist_add()
272 if (SLIST_NEXT(curnode, links) == NULL) { in symlist_add()
274 links); in symlist_add()
279 cursymbol = SLIST_NEXT(curnode, links)->symbol; in symlist_add()
289 links); in symlist_add()
293 curnode = SLIST_NEXT(curnode, links); in symlist_add()
296 SLIST_INSERT_HEAD(symlist, newnode, links); in symlist_add()
307 node2 = SLIST_NEXT(node1, links); in symlist_free()
322 SLIST_REMOVE_HEAD(symlist_src2, links); in symlist_merge()
[all …]
Daicasm.c67 STAILQ_ENTRY(patch) links;
222 links)) in main()
243 links); in main()
326 cur_instr = STAILQ_NEXT(cur_instr, links)) { in back_patch()
368 cur_instr = STAILQ_NEXT(cur_instr, links)) { in output_code()
399 cur_node = SLIST_NEXT(cur_node,links)) { in output_code()
427 cur_patch = STAILQ_NEXT(cur_patch,links)) { in output_code()
445 cs = TAILQ_NEXT(cs, links)) { in output_code()
515 STAILQ_INSERT_TAIL(&patches, new_patch, links); in emit_patch()
547 cur_func = SLIST_NEXT(cur_func, links)) in output_listing()
[all …]
Daicasm_symbol.h111 STAILQ_ENTRY(macro_arg) links;
150 SLIST_ENTRY(symbol_node) links;
155 TAILQ_ENTRY(critical_section) links;
Daicasm_scan.l458 SLIST_ENTRY(include) links;
478 include_dir = include_dir->links.sle_next) {
509 SLIST_INSERT_HEAD(&include_stack, include, links);
563 STAILQ_FOREACH(marg, &macro_symbol->info.macroinfo->args, links) {
587 STAILQ_FOREACH(marg, &mac_symbol->info.macroinfo->args, links) {
617 SLIST_REMOVE_HEAD(&include_stack, links);
/Linux-v4.19/Documentation/media/uapi/mediactl/
Dmedia-ioc-enum-links.rst12 MEDIA_IOC_ENUM_LINKS - Enumerate all pads and links for a given entity
34 To enumerate pads and/or links for a given entity, applications set the
39 the ``pads`` and ``links`` fields. They then call the
47 If the ``links`` field is not NULL, the driver fills the ``links`` array
48 with information about the entity's outbound links. The array must have
49 enough room to store all the entity's outbound links. The number of
50 outbound links can be retrieved with :ref:`MEDIA_IOC_ENUM_ENTITIES`.
52 Only forward links that originate at one of the entity's source pads are
75 - \*\ ``links``
76 - Pointer to a links array allocated by the application. Ignored if
Dmedia-ioc-g-topology.rst39 and links.
110 - Total number of data and interface links in the graph
118 - A pointer to a memory area where the links array will be stored,
120 won't store the links. It will just update ``num_links``
265 - On pad to pad links: unique ID for the source pad.
267 On interface to entity links: unique ID for the interface.
271 - On pad to pad links: unique ID for the sink pad.
273 On interface to entity links: unique ID for the entity.
/Linux-v4.19/drivers/soundwire/
Dintel_init.c29 struct sdw_link_data *links; member
34 struct sdw_link_data *link = ctx->links; in sdw_intel_cleanup_pdev()
46 kfree(ctx->links); in sdw_intel_cleanup_pdev()
47 ctx->links = NULL; in sdw_intel_cleanup_pdev()
99 ctx->links = kcalloc(ctx->count, sizeof(*ctx->links), GFP_KERNEL); in sdw_intel_add_controller()
100 if (!ctx->links) in sdw_intel_add_controller()
103 link = ctx->links; in sdw_intel_add_controller()
/Linux-v4.19/drivers/staging/greybus/
Dmanifest.c38 struct list_head links; member
47 list_del(&descriptor->links); in release_manifest_descriptor()
56 list_for_each_entry_safe(descriptor, next, &intf->manifest_descs, links) in release_manifest_descriptors()
65 list_for_each_entry_safe(desc, tmp, head, links) { in release_cport_descriptors()
81 list_for_each_entry_safe(descriptor, next, &intf->manifest_descs, links) in get_next_bundle_desc()
167 list_add_tail(&descriptor->links, &intf->manifest_descs); in identify_descriptor()
196 list_for_each_entry(descriptor, &intf->manifest_descs, links) { in gb_string_get()
240 list_for_each_entry_safe(desc, next, &intf->manifest_descs, links) { in gb_manifest_parse_cports()
263 list_for_each_entry(tmp, &list, links) { in gb_manifest_parse_cports()
272 list_move_tail(&desc->links, &list); in gb_manifest_parse_cports()
[all …]
/Linux-v4.19/drivers/media/
Dmedia-device.c124 entd->links = ent->num_links - ent->num_backlinks; in media_device_enum_entities()
160 struct media_links_enum *links = arg; in media_device_enum_links() local
163 entity = find_entity(mdev, links->entity); in media_device_enum_links()
167 if (links->pads) { in media_device_enum_links()
175 if (copy_to_user(&links->pads[p], &pad, sizeof(pad))) in media_device_enum_links()
180 if (links->links) { in media_device_enum_links()
182 struct media_link_desc __user *ulink_desc = links->links; in media_device_enum_links()
184 list_for_each_entry(link, &entity->links, list) { in media_device_enum_links()
202 memset(links->reserved, 0, sizeof(links->reserved)); in media_device_enum_links()
481 compat_uptr_t links; /* struct media_link_desc * */ member
[all …]
Dmedia-entity.c173 list_add_tail(&gobj->list, &mdev->links); in media_gobj_create()
258 graph->stack[graph->top].link = entity->links.next; in stack_push()
366 while (link_top(graph) != &stack_top(graph)->links) in media_graph_walk_next()
456 list_for_each_entry(link, &entity->links, list) { in __media_pipeline_start()
645 list_for_each_entry_safe(rlink, tmp, &remote->links, list) { in __media_entity_remove_link()
676 link = media_add_link(&source->links); in media_create_pad_link()
691 backlink = media_add_link(&sink->links); in media_create_pad_link()
786 list_for_each_entry_safe(link, tmp, &entity->links, list) in __media_entity_remove_links()
895 list_for_each_entry(link, &source->entity->links, list) { in media_entity_find_link()
911 list_for_each_entry(link, &pad->entity->links, list) { in media_entity_remote_pad()
[all …]
/Linux-v4.19/drivers/net/wireless/ti/wlcore/
Dps.c98 struct wl1271_link *lnk = &wl->links[hlid]; in wl1271_ps_filter_frames()
141 "clean_queues %d", hlid, wl->links[hlid].allocated_pkts, in wl12xx_ps_link_start()
145 sta = ieee80211_find_sta(vif, wl->links[hlid].addr); in wl12xx_ps_link_start()
148 wl->links[hlid].addr); in wl12xx_ps_link_start()
176 sta = ieee80211_find_sta(vif, wl->links[hlid].addr); in wl12xx_ps_link_end()
179 wl->links[hlid].addr); in wl12xx_ps_link_end()
/Linux-v4.19/kernel/gcov/
Dfs.c59 struct dentry **links; member
376 node->links = kcalloc(num, sizeof(struct dentry *), GFP_KERNEL); in add_links()
377 if (!node->links) in add_links()
388 node->links[i] = debugfs_create_symlink(deskew(basename), in add_links()
390 if (!node->links[i]) in add_links()
399 debugfs_remove(node->links[i]); in add_links()
400 kfree(node->links); in add_links()
401 node->links = NULL; in add_links()
476 if (!node->links) in remove_links()
479 debugfs_remove(node->links[i]); in remove_links()
[all …]
/Linux-v4.19/drivers/fsi/
Dfsi-master-hub.c248 uint32_t reg, links; in hub_master_probe() local
257 links = (reg >> 8) & 0xff; in hub_master_probe()
258 dev_dbg(dev, "hub version %08x (%d links)\n", reg, links); in hub_master_probe()
261 FSI_HUB_LINK_SIZE * links); in hub_master_probe()
274 hub->size = FSI_HUB_LINK_SIZE * links; in hub_master_probe()
281 hub->master.n_links = links; in hub_master_probe()
307 FSI_HUB_LINK_SIZE * links); in hub_master_probe()
/Linux-v4.19/net/tipc/
Dnode.c109 struct tipc_link_entry links[MAX_BEARERS]; member
183 return n->links[bearer_id].link; in node_active_link()
198 mtu = n->links[bearer_id].mtu; in tipc_node_get_mtu()
380 l = n->links[bearer_id].link; in tipc_node_create()
407 spin_lock_init(&n->links[i].lock); in tipc_node_create()
574 struct tipc_link_entry *le = &node->links[i]; in tipc_node_clear_links()
626 le = &n->links[bearer_id]; in tipc_node_timeout()
654 struct tipc_link *nl = n->links[bearer_id].link; in __tipc_node_link_up()
668 n->links[bearer_id].mtu = tipc_link_mtu(nl) - INT_H_SIZE; in __tipc_node_link_up()
721 maddr = &n->links[bearer_id].maddr; in tipc_node_link_up()
[all …]
/Linux-v4.19/Documentation/sound/soc/
Ddpcm.rst119 1. Define the FE and BE DAI links.
126 FE and BE DAI links
146 For the example above we have to define 4 FE DAI links and 6 BE DAI links. The
147 FE DAI links are defined as follows :-
162 .....< other FE and BE DAI links here >
180 .....< FE DAI links here >
195 .....< other BE DAI links here >
261 The other PCM operation are the same as for regular DAI links. Use as necessary.
267 The BE DAI links will normally be connected to the graph at initialisation time
339 2. Hostless FE. This FE has a virtual connection to the BE DAI links on the DAPM
[all …]
/Linux-v4.19/Documentation/devicetree/bindings/mailbox/
Dmeson-mhu.txt5 that has 3 independent channels/links to communicate with remote processor(s).
6 MHU links are hardwired on a platform. A link raises interrupt for any
21 each of the 2 links of MHU.
Darm-mhu.txt5 3 independent channels/links to communicate with remote processor(s).
6 MHU links are hardwired on a platform. A link raises interrupt for any
23 each of the 3 links of MHU.
/Linux-v4.19/tools/perf/
Dperf-with-kcore.sh122 …find "$USER_HOME/.debug" -xdev -type f -links 1 ! -user "$SUDO_USER" -ls -exec chown "$SUDO_USE…
127 …find "$USER_HOME/.debug" -xdev -type f -links 1 ! -group "$SUDO_GID" -ls -exec chgrp "$SUDO_GID…
141 PERMISSIONS_OK+=$(find "$HOME/.debug" -xdev -type f -links 1 ! -user "$USER" -print -quit)
145 PERMISSIONS_OK+=$(find "$HOME/.debug" -xdev -type f -links 1 ! -group "$GROUPS" -print -quit)
/Linux-v4.19/Documentation/driver-api/
Ddevice_link.rst5 Device links
26 Device links allow representation of such dependencies in the driver core.
48 The earliest point in time when device links can be added is after
115 scope of device links.
142 device links from the hotplug ports (consumers) to the NHI device
183 becomes a directed acyclic graph once device links are added.
187 no device links present, the two lists are a flattened, one-dimensional
193 Once device links are added, the lists need to satisfy the additional
239 * When a supplier device is bound to a driver, links to its consumers
245 verified by checking that links to suppliers are in ``DL_STATE_AVAILABLE``
[all …]
/Linux-v4.19/Documentation/ABI/testing/
Dsysfs-devices-power_resources_D09 If present, it contains symbolic links to device directories
12 of the links are the same as the names of the directories they
Dsysfs-devices-power_resources_wakeup9 If present, it contains symbolic links to device directories
12 the links are the same as the names of the directories they
Dsysfs-devices-power_resources_D3hot10 If present, it contains symbolic links to device directories
13 names of the links are the same as the names of the directories
Dsysfs-devices-power_resources_D110 If present, it contains symbolic links to device directories
13 of the links are the same as the names of the directories they
Dsysfs-devices-power_resources_D210 If present, it contains symbolic links to device directories
13 of the links are the same as the names of the directories they
/Linux-v4.19/drivers/base/
Dcore.c115 list_for_each_entry(link, &dev->links.consumers, s_node) { in device_is_dependent()
141 list_for_each_entry(link, &dev->links.consumers, s_node) in device_reorder_to_tail()
219 list_for_each_entry(link, &supplier->links.consumers, s_node) in device_link_add()
245 if (consumer->links.status == DL_DEV_PROBING) in device_link_add()
261 switch (supplier->links.status) { in device_link_add()
263 switch (consumer->links.status) { in device_link_add()
301 list_add_tail_rcu(&link->s_node, &supplier->links.consumers); in device_link_add()
302 list_add_tail_rcu(&link->c_node, &consumer->links.suppliers); in device_link_add()
394 list_for_each_entry(link, &supplier->links.consumers, s_node) { in device_link_remove()
410 list_for_each_entry(link, &dev->links.suppliers, c_node) in device_links_missing_supplier()
[all …]

1234567891011