Home
last modified time | relevance | path

Searched defs:s (Results 1 – 25 of 121) sorted by relevance

12345

/tools/lib/traceevent/
Dtrace-seq.c34 #define TRACE_SEQ_CHECK(s) \ argument
41 #define TRACE_SEQ_CHECK_RET_N(s, n) \ argument
48 #define TRACE_SEQ_CHECK_RET(s) TRACE_SEQ_CHECK_RET_N(s, ) argument
49 #define TRACE_SEQ_CHECK_RET0(s) TRACE_SEQ_CHECK_RET_N(s, 0) argument
55 void trace_seq_init(struct trace_seq *s) in trace_seq_init()
71 void trace_seq_reset(struct trace_seq *s) in trace_seq_reset()
86 void trace_seq_destroy(struct trace_seq *s) in trace_seq_destroy()
95 static void expand_buffer(struct trace_seq *s) in expand_buffer()
124 trace_seq_printf(struct trace_seq *s, const char *fmt, ...) in trace_seq_printf()
161 trace_seq_vprintf(struct trace_seq *s, const char *fmt, va_list args) in trace_seq_vprintf()
[all …]
Dplugin_sched_switch.c26 static void write_state(struct trace_seq *s, int val) in write_state()
49 struct trace_seq *s, int pid) in write_and_save_comm()
67 static int sched_wakeup_handler(struct trace_seq *s, in sched_wakeup_handler()
96 static int sched_switch_handler(struct trace_seq *s, in sched_switch_handler()
Dplugin_kvm.c250 static int print_exit_reason(struct trace_seq *s, struct pevent_record *record, in print_exit_reason()
271 static int kvm_exit_handler(struct trace_seq *s, struct pevent_record *record, in kvm_exit_handler()
293 static int kvm_emulate_insn_handler(struct trace_seq *s, in kvm_emulate_insn_handler()
333 static int kvm_nested_vmexit_inject_handler(struct trace_seq *s, struct pevent_record *record, in kvm_nested_vmexit_inject_handler()
347 static int kvm_nested_vmexit_handler(struct trace_seq *s, struct pevent_record *record, in kvm_nested_vmexit_handler()
373 static int kvm_mmu_print_role(struct trace_seq *s, struct pevent_record *record, in kvm_mmu_print_role()
419 static int kvm_mmu_get_page_handler(struct trace_seq *s, in kvm_mmu_get_page_handler()
441 process_is_writable_pte(struct trace_seq *s, unsigned long long *args) in process_is_writable_pte()
Dplugin_hrtimer.c27 static int timer_expire_handler(struct trace_seq *s, in timer_expire_handler()
47 static int timer_start_handler(struct trace_seq *s, in timer_start_handler()
Dplugin_jbd2.c33 process_jbd2_dev_to_name(struct trace_seq *s, unsigned long long *args) in process_jbd2_dev_to_name()
42 process_jiffies_to_msecs(struct trace_seq *s, unsigned long long *args) in process_jiffies_to_msecs()
Dplugin_mac80211.c28 static void print_string(struct trace_seq *s, struct event_format *event, in print_string()
60 static int drv_bss_info_changed(struct trace_seq *s, in drv_bss_info_changed()
Devent-parse.c3578 struct trace_seq s; in eval_num_arg() local
3813 static void print_str_to_seq(struct trace_seq *s, const char *format, in print_str_to_seq()
3823 struct trace_seq *s, const char *format, in print_bitmask_to_seq()
3876 static void print_str_arg(struct trace_seq *s, void *data, int size, in print_str_arg()
4124 process_defined_func(struct trace_seq *s, void *data, int size, in process_defined_func()
4410 static void print_mac_arg(struct trace_seq *s, int mac, void *data, int size, in print_mac_arg()
4446 static void print_ip4_addr(struct trace_seq *s, char i, unsigned char *buf) in print_ip4_addr()
4469 static void print_ip6c_addr(struct trace_seq *s, unsigned char *addr) in print_ip6c_addr()
4544 static void print_ip6_addr(struct trace_seq *s, char i, unsigned char *buf) in print_ip6_addr()
4563 static int print_ipv4_arg(struct trace_seq *s, const char *ptr, char i, in print_ipv4_arg()
[all …]
/tools/lib/subcmd/
Dparse-options.h123 #define OPT_BIT(s, l, v, h, b) { .type = OPTION_BIT, .short_name = (s), .long_name = (l), .val… argument
124 #define OPT_BOOLEAN(s, l, v, h) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), … argument
125 #define OPT_BOOLEAN_FLAG(s, l, v, h, f) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name… argument
126 #define OPT_BOOLEAN_SET(s, l, v, os, h) \ argument
130 #define OPT_INCR(s, l, v, h) { .type = OPTION_INCR, .short_name = (s), .long_name = (l), .va… argument
131 #define OPT_SET_UINT(s, l, v, h, i) { .type = OPTION_SET_UINT, .short_name = (s), .long_name = (l)… argument
132 #define OPT_SET_PTR(s, l, v, h, p) { .type = OPTION_SET_PTR, .short_name = (s), .long_name = (l), … argument
133 #define OPT_INTEGER(s, l, v, h) { .type = OPTION_INTEGER, .short_name = (s), .long_name = (l), … argument
134 #define OPT_UINTEGER(s, l, v, h) { .type = OPTION_UINTEGER, .short_name = (s), .long_name = (l),… argument
135 #define OPT_LONG(s, l, v, h) { .type = OPTION_LONG, .short_name = (s), .long_name = (l), .va… argument
[all …]
Dsigchain.c23 struct sigchain_signal *s = signals + sig; in sigchain_push() local
36 struct sigchain_signal *s = signals + sig; in sigchain_pop() local
/tools/virtio/virtio-trace/
Dtrace-agent.c51 struct agent_info *s; in agent_info_new() local
152 static void *agent_info_init(struct agent_info *s) in agent_info_init()
187 static void *parse_args(int argc, char *argv[], struct agent_info *s) in parse_args()
220 static void agent_main_loop(struct agent_info *s) in agent_main_loop()
243 static void agent_info_free(struct agent_info *s) in agent_info_free()
260 struct agent_info *s = NULL; in main() local
/tools/virtio/linux/
Ddma-mapping.h18 #define dma_alloc_coherent(d, s, hp, f) ({ \ argument
24 #define dma_free_coherent(d, s, p, h) kfree(p) argument
26 #define dma_map_page(d, p, o, s, dir) (page_to_phys(p) + (o)) argument
28 #define dma_map_single(d, p, s, dir) (virt_to_phys(p)) argument
Dkernel.h53 static inline void *kmalloc(size_t s, gfp_t gfp) in kmalloc()
59 static inline void *kzalloc(size_t s, gfp_t gfp) in kzalloc()
67 static inline void *alloc_pages_exact(size_t s, gfp_t gfp) in alloc_pages_exact()
79 static inline void free_pages_exact(void *p, size_t s) in free_pages_exact()
84 static inline void *krealloc(void *p, size_t s, gfp_t gfp) in krealloc()
/tools/build/feature/
Dtest-cxx.cpp5 static void print_str(std::string s) in print_str()
12 std::string s("Hello World!"); in main() local
Dtest-glibc.c7 #define XSTR(s) STR(s) argument
8 #define STR(s) #s argument
/tools/vm/
Dslabinfo.c194 static void set_obj(struct slabinfo *s, const char *name, int n) in set_obj()
208 static unsigned long read_slab_obj(struct slabinfo *s, const char *name) in read_slab_obj()
290 static void slab_validate(struct slabinfo *s) in slab_validate()
298 static void slab_shrink(struct slabinfo *s) in slab_shrink()
338 static unsigned long slab_size(struct slabinfo *s) in slab_size()
343 static unsigned long slab_activity(struct slabinfo *s) in slab_activity()
349 static unsigned long slab_waste(struct slabinfo *s) in slab_waste()
354 static void slab_numa(struct slabinfo *s, int mode) in slab_numa()
399 static void show_tracking(struct slabinfo *s) in show_tracking()
417 static void ops(struct slabinfo *s) in ops()
[all …]
/tools/power/cpupower/utils/idle_monitor/
Dcpupower-monitor.c76 int fill_string_with_spaces(char *s, int n) in fill_string_with_spaces()
91 cstate_t s; in print_header() local
143 cstate_t s; in print_results() local
258 cstate_t s; in list_monitors() local
/tools/testing/selftests/powerpc/include/
Dutils.h73 #define _str(s) #s argument
74 #define str(s) _str(s) argument
/tools/testing/selftests/size/
Dget_size.c36 static int print(const char *s) in print()
69 static int print_k_value(const char *s, unsigned long num, unsigned long units) in print_k_value()
/tools/testing/selftests/memfd/
Dfuse_test.c80 __u64 s; in mfd_assert_has_seals() local
93 __u64 s; in mfd_assert_add_seals() local
107 __u64 s; in mfd_busy_add_seals() local
/tools/perf/util/
Dstrlist.c18 const char *s = entry; in strlist__node_new() local
112 static int strlist__parse_list_entry(struct strlist *slist, const char *s, in strlist__parse_list_entry()
143 static int strlist__parse_list(struct strlist *slist, const char *s, const char *subst_dir) in strlist__parse_list()
Dstring.c314 char *strxfrchar(char *s, char from, char to) in strxfrchar()
330 char *ltrim(char *s) in ltrim()
345 char *rtrim(char *s) in rtrim()
Dterm.c10 char *s = getenv("LINES"); in get_term_dimensions() local
/tools/perf/scripts/python/
Dfutex-contention.py24 def syscalls__sys_enter_futex(event, ctxt, cpu, s, ns, tid, comm, callchain, argument
34 def syscalls__sys_exit_futex(event, ctxt, cpu, s, ns, tid, comm, callchain, argument
/tools/objtool/
Delf.c145 Elf_Scn *s = NULL; in read_sections() local
282 struct symbol *s; in read_symbols() local
471 struct Elf_Scn *s; in elf_create_section() local
631 Elf_Scn *s; in elf_write() local
/tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/
Dmisc.h48 #define rcu_lockdep_assert(c, s) do { } while (0) argument
49 #define RCU_LOCKDEP_WARN(c, s) do { } while (0) argument

12345