Home
last modified time | relevance | path

Searched refs:syscalls (Results 1 – 25 of 214) sorted by relevance

123456789

/kernel/linux/linux-5.10/tools/perf/util/
Dsyscalltbl.c68 entries = tbl->syscalls.entries = malloc(sizeof(struct syscall) * nr_entries); in syscalltbl__init_native()
69 if (tbl->syscalls.entries == NULL) in syscalltbl__init_native()
80 qsort(tbl->syscalls.entries, nr_entries, sizeof(struct syscall), syscallcmp); in syscalltbl__init_native()
81 tbl->syscalls.nr_entries = nr_entries; in syscalltbl__init_native()
82 tbl->syscalls.max_id = syscalltbl_native_max_id; in syscalltbl__init_native()
100 zfree(&tbl->syscalls.entries); in syscalltbl__delete()
111 struct syscall *sc = bsearch(name, tbl->syscalls.entries, in syscalltbl__id()
112 tbl->syscalls.nr_entries, sizeof(*sc), in syscalltbl__id()
121 struct syscall *syscalls = tbl->syscalls.entries; in syscalltbl__strglobmatch_next() local
123 for (i = *idx + 1; i < tbl->syscalls.nr_entries; ++i) { in syscalltbl__strglobmatch_next()
[all …]
/kernel/linux/build/test/kernel_ltp/syscalls/futex/
DBUILD.gn20 "//third_party/ltp/testcases/kernel/syscalls/futex/futex_cmp_requeue01.c",
27 "//third_party/ltp/testcases/kernel/syscalls/futex/futex_cmp_requeue02.c",
34 [ "//third_party/ltp/testcases/kernel/syscalls/futex/futex_wait01.c" ]
40 [ "//third_party/ltp/testcases/kernel/syscalls/futex/futex_wait02.c" ]
46 [ "//third_party/ltp/testcases/kernel/syscalls/futex/futex_wait03.c" ]
52 [ "//third_party/ltp/testcases/kernel/syscalls/futex/futex_wait04.c" ]
58 [ "//third_party/ltp/testcases/kernel/syscalls/futex/futex_wait05.c" ]
64 "//third_party/ltp/testcases/kernel/syscalls/futex/futex_wait_bitset01.c",
71 [ "//third_party/ltp/testcases/kernel/syscalls/futex/futex_wake01.c" ]
77 [ "//third_party/ltp/testcases/kernel/syscalls/futex/futex_wake02.c" ]
[all …]
/kernel/linux/build/test/kernel_ltp/syscalls/chown/
DBUILD.gn18 include_dirs = [ "//third_party/ltp/testcases/kernel/syscalls/utils" ]
20 sources = [ "//third_party/ltp/testcases/kernel/syscalls/chown/chown01.c" ]
24 include_dirs = [ "//third_party/ltp/testcases/kernel/syscalls/utils" ]
26 sources = [ "//third_party/ltp/testcases/kernel/syscalls/chown/chown02.c" ]
30 include_dirs = [ "//third_party/ltp/testcases/kernel/syscalls/utils" ]
32 sources = [ "//third_party/ltp/testcases/kernel/syscalls/chown/chown03.c" ]
36 include_dirs = [ "//third_party/ltp/testcases/kernel/syscalls/utils" ]
38 sources = [ "//third_party/ltp/testcases/kernel/syscalls/chown/chown04.c" ]
42 include_dirs = [ "//third_party/ltp/testcases/kernel/syscalls/utils" ]
44 sources = [ "//third_party/ltp/testcases/kernel/syscalls/chown/chown05.c" ]
/kernel/linux/build/test/kernel_ltp/syscalls/fchown/
DBUILD.gn18 include_dirs = [ "//third_party/ltp/testcases/kernel/syscalls/utils" ]
20 sources = [ "//third_party/ltp/testcases/kernel/syscalls/fchown/fchown01.c" ]
24 include_dirs = [ "//third_party/ltp/testcases/kernel/syscalls/utils" ]
26 sources = [ "//third_party/ltp/testcases/kernel/syscalls/fchown/fchown02.c" ]
30 include_dirs = [ "//third_party/ltp/testcases/kernel/syscalls/utils" ]
32 sources = [ "//third_party/ltp/testcases/kernel/syscalls/fchown/fchown03.c" ]
36 include_dirs = [ "//third_party/ltp/testcases/kernel/syscalls/utils" ]
38 sources = [ "//third_party/ltp/testcases/kernel/syscalls/fchown/fchown04.c" ]
42 include_dirs = [ "//third_party/ltp/testcases/kernel/syscalls/utils" ]
44 sources = [ "//third_party/ltp/testcases/kernel/syscalls/fchown/fchown05.c" ]
/kernel/linux/linux-5.10/tools/perf/scripts/python/
Dfailed-syscalls-by-pid.py34 syscalls = autodict() variable
51 syscalls[common_comm][common_pid][id][ret] += 1
53 syscalls[common_comm][common_pid][id][ret] = 1
69 comm_keys = syscalls.keys()
71 pid_keys = syscalls[comm].keys()
74 id_keys = syscalls[comm][pid].keys()
77 ret_keys = syscalls[comm][pid][id].keys()
78 …for ret, val in sorted(syscalls[comm][pid][id].items(), key = lambda kv: (kv[1], kv[0]), reverse =…
Dsyscall-counts-by-pid.py33 syscalls = autodict() variable
48 syscalls[common_comm][common_pid][id] += 1
50 syscalls[common_comm][common_pid][id] = 1
67 comm_keys = syscalls.keys()
69 pid_keys = syscalls[comm].keys()
72 id_keys = syscalls[comm][pid].keys()
73 for id, val in sorted(syscalls[comm][pid].items(),
Dsctop.py46 syscalls = autodict() variable
59 syscalls[id] += 1
61 syscalls[id] = 1
81 for id, val in sorted(syscalls.items(),
88 syscalls.clear()
Dsyscall-counts.py30 syscalls = autodict() variable
45 syscalls[id] += 1
47 syscalls[id] = 1
63 for id, val in sorted(syscalls.items(),
/kernel/linux/build/test/kernel_ltp/syscalls/clone/
DBUILD.gn19 sources = [ "//third_party/ltp/testcases/kernel/syscalls/clone/clone01.c" ]
24 sources = [ "//third_party/ltp/testcases/kernel/syscalls/clone/clone02.c" ]
29 sources = [ "//third_party/ltp/testcases/kernel/syscalls/clone/clone03.c" ]
34 sources = [ "//third_party/ltp/testcases/kernel/syscalls/clone/clone04.c" ]
39 sources = [ "//third_party/ltp/testcases/kernel/syscalls/clone/clone05.c" ]
44 sources = [ "//third_party/ltp/testcases/kernel/syscalls/clone/clone06.c" ]
49 sources = [ "//third_party/ltp/testcases/kernel/syscalls/clone/clone07.c" ]
54 sources = [ "//third_party/ltp/testcases/kernel/syscalls/clone/clone08.c" ]
59 sources = [ "//third_party/ltp/testcases/kernel/syscalls/clone/clone09.c" ]
/kernel/linux/build/test/kernel_ltp/syscalls/creat/
DBUILD.gn19 sources = [ "//third_party/ltp/testcases/kernel/syscalls/creat/creat01.c" ]
24 sources = [ "//third_party/ltp/testcases/kernel/syscalls/creat/creat03.c" ]
29 sources = [ "//third_party/ltp/testcases/kernel/syscalls/creat/creat04.c" ]
34 sources = [ "//third_party/ltp/testcases/kernel/syscalls/creat/creat05.c" ]
39 sources = [ "//third_party/ltp/testcases/kernel/syscalls/creat/creat06.c" ]
44 sources = [ "//third_party/ltp/testcases/kernel/syscalls/creat/creat07.c" ]
50 [ "//third_party/ltp/testcases/kernel/syscalls/creat/creat07_child.c" ]
55 sources = [ "//third_party/ltp/testcases/kernel/syscalls/creat/creat08.c" ]
60 sources = [ "//third_party/ltp/testcases/kernel/syscalls/creat/creat09.c" ]
/kernel/linux/build/test/kernel_ltp/syscalls/bpf/
DBUILD.gn19 "//third_party/ltp/testcases/kernel/syscalls/bpf/bpf_common.c",
20 "//third_party/ltp/testcases/kernel/syscalls/bpf/bpf_common.h",
26 sources += [ "//third_party/ltp/testcases/kernel/syscalls/bpf/bpf_map01.c" ]
32 sources += [ "//third_party/ltp/testcases/kernel/syscalls/bpf/bpf_prog01.c" ]
38 sources += [ "//third_party/ltp/testcases/kernel/syscalls/bpf/bpf_prog02.c" ]
44 sources += [ "//third_party/ltp/testcases/kernel/syscalls/bpf/bpf_prog03.c" ]
50 sources += [ "//third_party/ltp/testcases/kernel/syscalls/bpf/bpf_prog04.c" ]
56 sources += [ "//third_party/ltp/testcases/kernel/syscalls/bpf/bpf_prog05.c" ]
/kernel/linux/build/test/kernel_ltp/syscalls/keyctl/
DBUILD.gn19 sources = [ "//third_party/ltp/testcases/kernel/syscalls/keyctl/keyctl01.c" ]
24 sources = [ "//third_party/ltp/testcases/kernel/syscalls/keyctl/keyctl02.c" ]
29 sources = [ "//third_party/ltp/testcases/kernel/syscalls/keyctl/keyctl03.c" ]
34 sources = [ "//third_party/ltp/testcases/kernel/syscalls/keyctl/keyctl04.c" ]
39 sources = [ "//third_party/ltp/testcases/kernel/syscalls/keyctl/keyctl05.c" ]
44 sources = [ "//third_party/ltp/testcases/kernel/syscalls/keyctl/keyctl06.c" ]
49 sources = [ "//third_party/ltp/testcases/kernel/syscalls/keyctl/keyctl07.c" ]
54 sources = [ "//third_party/ltp/testcases/kernel/syscalls/keyctl/keyctl08.c" ]
/kernel/linux/linux-5.10/tools/perf/scripts/perl/bin/
Drwtop-record2 perf record -e syscalls:sys_enter_read -e syscalls:sys_exit_read -e syscalls:sys_enter_write -e sys…
Drw-by-pid-record2 perf record -e syscalls:sys_enter_read -e syscalls:sys_exit_read -e syscalls:sys_enter_write -e sys…
/kernel/linux/build/test/kernel_ltp/syscalls/dup2/
DBUILD.gn19 sources = [ "//third_party/ltp/testcases/kernel/syscalls/dup2/dup201.c" ]
24 sources = [ "//third_party/ltp/testcases/kernel/syscalls/dup2/dup202.c" ]
29 sources = [ "//third_party/ltp/testcases/kernel/syscalls/dup2/dup203.c" ]
34 sources = [ "//third_party/ltp/testcases/kernel/syscalls/dup2/dup204.c" ]
39 sources = [ "//third_party/ltp/testcases/kernel/syscalls/dup2/dup205.c" ]
44 sources = [ "//third_party/ltp/testcases/kernel/syscalls/dup2/dup206.c" ]
49 sources = [ "//third_party/ltp/testcases/kernel/syscalls/dup2/dup207.c" ]
/kernel/linux/build/test/kernel_ltp/syscalls/dup/
DBUILD.gn19 sources = [ "//third_party/ltp/testcases/kernel/syscalls/dup/dup01.c" ]
24 sources = [ "//third_party/ltp/testcases/kernel/syscalls/dup/dup02.c" ]
29 sources = [ "//third_party/ltp/testcases/kernel/syscalls/dup/dup03.c" ]
34 sources = [ "//third_party/ltp/testcases/kernel/syscalls/dup/dup04.c" ]
39 sources = [ "//third_party/ltp/testcases/kernel/syscalls/dup/dup05.c" ]
44 sources = [ "//third_party/ltp/testcases/kernel/syscalls/dup/dup06.c" ]
49 sources = [ "//third_party/ltp/testcases/kernel/syscalls/dup/dup07.c" ]
/kernel/linux/build/test/kernel_ltp/syscalls/execve/
DBUILD.gn19 sources = [ "//third_party/ltp/testcases/kernel/syscalls/execve/execve01.c" ]
25 [ "//third_party/ltp/testcases/kernel/syscalls/execve/execve01_child.c" ]
30 sources = [ "//third_party/ltp/testcases/kernel/syscalls/execve/execve02.c" ]
35 sources = [ "//third_party/ltp/testcases/kernel/syscalls/execve/execve03.c" ]
40 sources = [ "//third_party/ltp/testcases/kernel/syscalls/execve/execve04.c" ]
45 sources = [ "//third_party/ltp/testcases/kernel/syscalls/execve/execve05.c" ]
51 [ "//third_party/ltp/testcases/kernel/syscalls/execve/execve_child.c" ]
/kernel/linux/build/test/kernel_ltp/syscalls/getresgid/
DBUILD.gn18 include_dirs = [ "//third_party/ltp/testcases/kernel/syscalls/utils" ]
21 [ "//third_party/ltp/testcases/kernel/syscalls/getresgid/getresgid01.c" ]
25 include_dirs = [ "//third_party/ltp/testcases/kernel/syscalls/utils" ]
28 [ "//third_party/ltp/testcases/kernel/syscalls/getresgid/getresgid02.c" ]
32 include_dirs = [ "//third_party/ltp/testcases/kernel/syscalls/utils" ]
35 [ "//third_party/ltp/testcases/kernel/syscalls/getresgid/getresgid03.c" ]
/kernel/linux/build/test/kernel_ltp/syscalls/getresuid/
DBUILD.gn18 include_dirs = [ "//third_party/ltp/testcases/kernel/syscalls/utils" ]
21 [ "//third_party/ltp/testcases/kernel/syscalls/getresuid/getresuid01.c" ]
25 include_dirs = [ "//third_party/ltp/testcases/kernel/syscalls/utils" ]
28 [ "//third_party/ltp/testcases/kernel/syscalls/getresuid/getresuid02.c" ]
32 include_dirs = [ "//third_party/ltp/testcases/kernel/syscalls/utils" ]
35 [ "//third_party/ltp/testcases/kernel/syscalls/getresuid/getresuid03.c" ]
/kernel/linux/build/test/kernel_ltp/syscalls/bind/
DBUILD.gn19 sources = [ "//third_party/ltp/testcases/kernel/syscalls/bind/bind01.c" ]
24 sources = [ "//third_party/ltp/testcases/kernel/syscalls/bind/bind02.c" ]
29 sources = [ "//third_party/ltp/testcases/kernel/syscalls/bind/bind03.c" ]
34 sources = [ "//third_party/ltp/testcases/kernel/syscalls/bind/bind04.c" ]
39 sources = [ "//third_party/ltp/testcases/kernel/syscalls/bind/bind05.c" ]
44 sources = [ "//third_party/ltp/testcases/kernel/syscalls/bind/bind06.c" ]
/kernel/linux/build/test/kernel_ltp/syscalls/add_key/
DBUILD.gn20 [ "//third_party/ltp/testcases/kernel/syscalls/add_key/add_key01.c" ]
26 [ "//third_party/ltp/testcases/kernel/syscalls/add_key/add_key02.c" ]
32 [ "//third_party/ltp/testcases/kernel/syscalls/add_key/add_key03.c" ]
38 [ "//third_party/ltp/testcases/kernel/syscalls/add_key/add_key04.c" ]
44 [ "//third_party/ltp/testcases/kernel/syscalls/add_key/add_key05.c" ]
/kernel/linux/build/test/kernel_ltp/syscalls/chmod/
DBUILD.gn19 sources = [ "//third_party/ltp/testcases/kernel/syscalls/chmod/chmod01.c" ]
24 sources = [ "//third_party/ltp/testcases/kernel/syscalls/chmod/chmod03.c" ]
29 sources = [ "//third_party/ltp/testcases/kernel/syscalls/chmod/chmod05.c" ]
34 sources = [ "//third_party/ltp/testcases/kernel/syscalls/chmod/chmod06.c" ]
39 sources = [ "//third_party/ltp/testcases/kernel/syscalls/chmod/chmod07.c" ]
/kernel/linux/build/test/kernel_ltp/syscalls/epoll_ctl/
DBUILD.gn20 [ "//third_party/ltp/testcases/kernel/syscalls/epoll_ctl/epoll_ctl01.c" ]
26 [ "//third_party/ltp/testcases/kernel/syscalls/epoll_ctl/epoll_ctl02.c" ]
32 [ "//third_party/ltp/testcases/kernel/syscalls/epoll_ctl/epoll_ctl03.c" ]
38 [ "//third_party/ltp/testcases/kernel/syscalls/epoll_ctl/epoll_ctl04.c" ]
44 [ "//third_party/ltp/testcases/kernel/syscalls/epoll_ctl/epoll_ctl05.c" ]
/kernel/linux/build/test/kernel_ltp/syscalls/flock/
DBUILD.gn19 sources = [ "//third_party/ltp/testcases/kernel/syscalls/flock/flock01.c" ]
24 sources = [ "//third_party/ltp/testcases/kernel/syscalls/flock/flock02.c" ]
29 sources = [ "//third_party/ltp/testcases/kernel/syscalls/flock/flock03.c" ]
34 sources = [ "//third_party/ltp/testcases/kernel/syscalls/flock/flock04.c" ]
39 sources = [ "//third_party/ltp/testcases/kernel/syscalls/flock/flock06.c" ]
/kernel/linux/build/test/kernel_ltp/syscalls/alarm/
DBUILD.gn19 sources = [ "//third_party/ltp/testcases/kernel/syscalls/alarm/alarm02.c" ]
24 sources = [ "//third_party/ltp/testcases/kernel/syscalls/alarm/alarm03.c" ]
29 sources = [ "//third_party/ltp/testcases/kernel/syscalls/alarm/alarm05.c" ]
34 sources = [ "//third_party/ltp/testcases/kernel/syscalls/alarm/alarm06.c" ]
39 sources = [ "//third_party/ltp/testcases/kernel/syscalls/alarm/alarm07.c" ]

123456789