/kernel/liteos_m/tools/ |
H A D | mem_analysis.py | 82 target_list = []
85 target_list.append('{:<10s}'.format(values.get('offsets')))
86 target_list.append('{:<30s}'.format(values.get('section')))
87 target_list.append('{:<10}'.format(values.get('sizeH')))
88 target_list.append('{:<10}'.format(values.get('sizeD')))
89 target_list.append('{:<55s}{:<55s}{:<55s}'.format(values.get('symbol'), values.get('lib'), values.get('obj')))
90 target_list.append("\r")
93 out_fd.write("".join(target_list))
160 target_list = []
164 target_list [all...] |
/kernel/linux/linux-5.10/drivers/net/ |
H A D | netconsole.c | 65 static LIST_HEAD(target_list); 78 * @list: Links this target into the target_list. 642 list_add(&nt->list, &target_list); in make_netconsole_target() 705 list_for_each_entry(nt, &target_list, list) { in netconsole_netdev_event() 825 if ((oops_only && !oops_in_progress) || list_empty(&target_list)) in write_ext_msg() 829 list_for_each_entry(nt, &target_list, list) in write_ext_msg() 845 if (list_empty(&target_list)) in write_msg() 849 list_for_each_entry(nt, &target_list, list) { in write_msg() 904 list_add(&nt->list, &target_list); in init_netconsole() 935 list_for_each_entry_safe(nt, tmp, &target_list, lis in init_netconsole() [all...] |
/kernel/linux/linux-6.6/fs/btrfs/ |
H A D | defrag.c | 821 * @target_list: list of targets file extents 826 bool locked, struct list_head *target_list, in defrag_collect_targets() 931 if (list_empty(target_list)) in defrag_collect_targets() 933 last = list_entry(target_list->prev, in defrag_collect_targets() 939 /* Mergeable, fall through to add it to @target_list. */ in defrag_collect_targets() 949 if (!list_empty(target_list)) { in defrag_collect_targets() 952 last = list_entry(target_list->prev, in defrag_collect_targets() 972 list_add_tail(&new->list, target_list); in defrag_collect_targets() 982 list_for_each_entry_safe(entry, tmp, target_list, list) { in defrag_collect_targets() 1064 LIST_HEAD(target_list); in defrag_one_range() 823 defrag_collect_targets(struct btrfs_inode *inode, u64 start, u64 len, u32 extent_thresh, u64 newer_than, bool do_compress, bool locked, struct list_head *target_list, u64 *last_scanned_ret) defrag_collect_targets() argument [all...] |
/kernel/linux/linux-6.6/drivers/net/ |
H A D | netconsole.c | 66 static LIST_HEAD(target_list); 79 * @list: Links this target into the target_list. 697 list_add(&nt->list, &target_list); in make_netconsole_target() 760 list_for_each_entry(nt, &target_list, list) { in netconsole_netdev_event() 897 if ((oops_only && !oops_in_progress) || list_empty(&target_list)) in write_ext_msg() 901 list_for_each_entry(nt, &target_list, list) in write_ext_msg() 917 if (list_empty(&target_list)) in write_msg() 921 list_for_each_entry(nt, &target_list, list) { in write_msg() 978 list_add(&nt->list, &target_list); in init_netconsole() 1009 list_for_each_entry_safe(nt, tmp, &target_list, lis in init_netconsole() [all...] |
/kernel/linux/linux-6.6/kernel/module/ |
H A D | sysfs.c | 249 list_for_each_entry(use, &mod->target_list, target_list) in del_usage_links() 262 list_for_each_entry(use, &mod->target_list, target_list) { in add_usage_links()
|
H A D | main.c | 554 INIT_LIST_HEAD(&mod->target_list); in module_unload_init() 594 list_add(&use->target_list, &a->target_list); in add_module_usage() 625 list_for_each_entry_safe(use, tmp, &mod->target_list, target_list) { in module_unload_free() 630 list_del(&use->target_list); in module_unload_free()
|
/kernel/linux/linux-5.10/drivers/net/wireless/broadcom/brcm80211/brcmfmac/ |
H A D | bcmsdh.c | 384 struct sk_buff_head local_list, *target_list; in brcmf_sdiod_sglist_rw() local 396 target_list = pktlist; in brcmf_sdiod_sglist_rw() 419 target_list = &local_list; in brcmf_sdiod_sglist_rw() 425 target_list->qlen); in brcmf_sdiod_sglist_rw() 447 skb_queue_walk(target_list, pkt_next) { in brcmf_sdiod_sglist_rw()
|
/kernel/linux/linux-6.6/drivers/net/wireless/broadcom/brcm80211/brcmfmac/ |
H A D | bcmsdh.c | 385 struct sk_buff_head local_list, *target_list; in brcmf_sdiod_sglist_rw() local 397 target_list = pktlist; in brcmf_sdiod_sglist_rw() 420 target_list = &local_list; in brcmf_sdiod_sglist_rw() 426 target_list->qlen); in brcmf_sdiod_sglist_rw() 448 skb_queue_walk(target_list, pkt_next) { in brcmf_sdiod_sglist_rw()
|
/kernel/linux/linux-5.10/drivers/infiniband/ulp/srp/ |
H A D | ib_srp.h | 118 struct list_head target_list; member
|
H A D | ib_srp.c | 3110 list_add_tail(&target->list, &host->target_list); in srp_add_target() 3167 list_for_each_entry(t, &host->target_list, list) { in srp_conn_unique() 3928 INIT_LIST_HEAD(&host->target_list); in srp_add_port() 4073 list_for_each_entry(target, &host->target_list, list) in srp_remove_one()
|
/kernel/linux/linux-6.6/drivers/infiniband/ulp/srp/ |
H A D | ib_srp.h | 120 * @target_list: List of connected target ports (struct srp_target_port). 121 * @target_lock: Protects @target_list. 127 struct list_head target_list; member
|
H A D | ib_srp.c | 3133 list_add_tail(&target->list, &host->target_list); in srp_add_target() 3195 list_for_each_entry(t, &host->target_list, list) { in srp_conn_unique() 3963 INIT_LIST_HEAD(&host->target_list); in srp_add_port() 4098 list_for_each_entry(target, &host->target_list, list) in srp_remove_one()
|
/kernel/linux/linux-5.10/drivers/android/ |
H A D | binder.c | 829 * @target_list: list to add work to 838 struct list_head *target_list) in binder_enqueue_work_ilocked() 840 BUG_ON(target_list == NULL); in binder_enqueue_work_ilocked() 842 list_add_tail(&work->entry, target_list); in binder_enqueue_work_ilocked() 1228 struct list_head *target_list) in binder_inc_node_nilocked() 1237 if (target_list == NULL && in binder_inc_node_nilocked() 1249 if (!node->has_strong_ref && target_list) { in binder_inc_node_nilocked() 1250 struct binder_thread *thread = container_of(target_list, in binder_inc_node_nilocked() 1253 BUG_ON(&thread->todo != target_list); in binder_inc_node_nilocked() 1261 if (target_list in binder_inc_node_nilocked() 837 binder_enqueue_work_ilocked(struct binder_work *work, struct list_head *target_list) binder_enqueue_work_ilocked() argument 1226 binder_inc_node_nilocked(struct binder_node *node, int strong, int internal, struct list_head *target_list) binder_inc_node_nilocked() argument 1275 binder_inc_node(struct binder_node *node, int strong, int internal, struct list_head *target_list) binder_inc_node() argument 1593 binder_inc_ref_olocked(struct binder_ref *ref, int strong, struct list_head *target_list) binder_inc_ref_olocked() argument 1786 binder_inc_ref_for_node(struct binder_proc *proc, struct binder_node *node, bool strong, struct list_head *target_list, struct binder_ref_data *rdata) binder_inc_ref_for_node() argument [all...] |
/kernel/linux/linux-5.10/include/linux/ |
H A D | module.h | 310 struct list_head target_list; member 528 struct list_head target_list; member
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | module.h | 308 struct list_head target_list; member 565 struct list_head target_list; member
|
/kernel/linux/linux-5.10/kernel/ |
H A D | module.c | 834 INIT_LIST_HEAD(&mod->target_list); in module_unload_init() 876 list_add(&use->target_list, &a->target_list); in add_module_usage() 907 list_for_each_entry_safe(use, tmp, &mod->target_list, target_list) { in module_unload_free() 912 list_del(&use->target_list); in module_unload_free() 1784 list_for_each_entry(use, &mod->target_list, target_list) in del_usage_links() 1797 list_for_each_entry(use, &mod->target_list, target_list) { in add_usage_links() [all...] |
/kernel/linux/linux-6.6/drivers/android/ |
H A D | binder.c | 456 * @target_list: list to add work to 465 struct list_head *target_list) in binder_enqueue_work_ilocked() 467 BUG_ON(target_list == NULL); in binder_enqueue_work_ilocked() 469 list_add_tail(&work->entry, target_list); in binder_enqueue_work_ilocked() 855 struct list_head *target_list) in binder_inc_node_nilocked() 864 if (target_list == NULL && in binder_inc_node_nilocked() 876 if (!node->has_strong_ref && target_list) { in binder_inc_node_nilocked() 877 struct binder_thread *thread = container_of(target_list, in binder_inc_node_nilocked() 880 BUG_ON(&thread->todo != target_list); in binder_inc_node_nilocked() 888 if (target_list in binder_inc_node_nilocked() 464 binder_enqueue_work_ilocked(struct binder_work *work, struct list_head *target_list) binder_enqueue_work_ilocked() argument 853 binder_inc_node_nilocked(struct binder_node *node, int strong, int internal, struct list_head *target_list) binder_inc_node_nilocked() argument 902 binder_inc_node(struct binder_node *node, int strong, int internal, struct list_head *target_list) binder_inc_node() argument 1220 binder_inc_ref_olocked(struct binder_ref *ref, int strong, struct list_head *target_list) binder_inc_ref_olocked() argument 1413 binder_inc_ref_for_node(struct binder_proc *proc, struct binder_node *node, bool strong, struct list_head *target_list, struct binder_ref_data *rdata) binder_inc_ref_for_node() argument 2759 binder_find_outdated_transaction_ilocked(struct binder_transaction *t, struct list_head *target_list) binder_find_outdated_transaction_ilocked() argument [all...] |
/kernel/linux/linux-6.6/drivers/cxl/core/ |
H A D | hdm.c | 810 } target_list; in init_hdm_decoder() local 911 target_list.value = (hi << 32) + lo; in init_hdm_decoder() 913 target_map[i] = target_list.target_id[i]; in init_hdm_decoder()
|
H A D | port.c | 189 static DEVICE_ATTR_RO(target_list);
|
/kernel/linux/linux-6.6/drivers/hwtracing/ptt/ |
H A D | hisi_ptt.c | 584 struct list_head *target_list; in hisi_ptt_update_filters() local 586 target_list = info.is_port ? &hisi_ptt->port_filters : in hisi_ptt_update_filters() 589 list_for_each_entry_safe(filter, tmp, target_list, list) in hisi_ptt_update_filters()
|