Lines Matching refs:syscalls
79 - we could enable every event under the tracing/events/syscalls
80 directory, but this is over 600 syscalls, well beyond the number
84 individual syscalls of interest.
86 - we can enable the sys_enter and/or sys_exit syscalls found under
87 tracing/events/raw_syscalls. These are called for all syscalls; the
241 syscalls = autodict()
244 syscalls[id] += 1
246 syscalls[id] = 1
249 The syscalls 'autodict' object is a special kind of Python dictionary
253 levels if they don't exist e.g syscalls[comm][pid][id] = 1 will create
288 syscalls = autodict()
297 syscalls[id] += 1
299 syscalls[id] = 1
311 for id, val in sorted(syscalls.iteritems(), key = lambda(k, v): (v, k), \