Home
last modified time | relevance | path

Searched refs:add_entry (Results 1 – 12 of 12) sorted by relevance

/linux/tools/testing/kunit/
H A Dkunit_config.py49 def add_entry(self, name: str, value: str) -> None: member in Kconfig
97 kconfig.add_entry(match.group(1), match.group(2))
102 kconfig.add_entry(empty_match.group(1), 'n')
H A Dkunit_tool_test.py51 kconfig1.add_entry('TEST', 'y')
62 expected_kconfig.add_entry('UML', 'y')
63 expected_kconfig.add_entry('MMU', 'y')
64 expected_kconfig.add_entry('TEST', 'y')
65 expected_kconfig.add_entry('EXAMPLE_TEST', 'y')
66 expected_kconfig.add_entry('MK8', 'n')
74 expected_kconfig.add_entry('UML', 'y')
75 expected_kconfig.add_entry('MMU', 'y')
76 expected_kconfig.add_entry('TEST', 'y')
77 expected_kconfig.add_entry('EXAMPLE_TEST', 'y')
[all …]
/linux/net/mptcp/
H A Dpm.c437 struct mptcp_pm_add_entry *add_entry = NULL; in mptcp_pm_alloc_anno_list() local
443 add_entry = mptcp_lookup_anno_list_by_saddr(msk, addr); in mptcp_pm_alloc_anno_list()
445 if (add_entry) { in mptcp_pm_alloc_anno_list()
452 add_entry = kmalloc_obj(*add_entry, GFP_ATOMIC); in mptcp_pm_alloc_anno_list()
453 if (!add_entry) in mptcp_pm_alloc_anno_list()
456 list_add(&add_entry->list, &msk->pm.anno_list); in mptcp_pm_alloc_anno_list()
458 add_entry->addr = *addr; in mptcp_pm_alloc_anno_list()
459 add_entry->sock = msk; in mptcp_pm_alloc_anno_list()
460 add_entry->retrans_times = 0; in mptcp_pm_alloc_anno_list()
462 timer_setup(&add_entry->add_timer, mptcp_pm_add_timer, 0); in mptcp_pm_alloc_anno_list()
[all …]
/linux/tools/perf/util/
H A Darm64-frame-pointer-unwind-support.c30 static int add_entry(struct unwind_entry *entry, void *arg) in add_entry() function
64 ret = unwind__get_entries(add_entry, &entries, thread, sample, 2, true); in get_leaf_frame_caller_aarch64()
/linux/tools/perf/dlfilters/
H A Ddlfilter-show-cycles.c72 static void add_entry(__s32 tid, int pos, __u64 cnt) in add_entry() function
94 add_entry(tid, pos, sample->cyc_cnt); in filter_event_early()
/linux/drivers/rapidio/switches/
H A Didtcps.c120 .add_entry = idtcps_route_add_entry,
H A Didt_gen3.c263 .add_entry = idtg3_route_add_entry,
H A Didt_gen2.c407 .add_entry = idtg2_route_add_entry,
/linux/fs/
H A Dbinfmt_misc.c770 static int add_entry(Node *e, struct super_block *sb) in add_entry() function
831 err = add_entry(e, sb); in bm_register_write()
/linux/include/linux/
H A Drio.h122 int (*add_entry) (struct rio_mport *mport, u16 destid, u8 hopcount, member
/linux/drivers/rapidio/
H A Drio.c1629 if (!ops || !ops->add_entry) { in rio_route_add_entry()
1634 rc = ops->add_entry(rdev->net->hport, rdev->destid, in rio_route_add_entry()
/linux/fs/affs/
H A DChanges197 - Fixed bug in add_entry(): When doing a sorted insert,