Home
last modified time | relevance | path

Searched refs:query (Results 1 – 15 of 15) sorted by relevance

/tools/testing/selftests/kvm/s390/
A Dcpumodel_subfuncs_test.c69 : [query] "=R" (*query) in test_kmac_asm_block()
80 : [query] "=R" (*query) in test_kmc_asm_block()
91 : [query] "=R" (*query) in test_km_asm_block()
102 : [query] "=R" (*query) in test_kimd_asm_block()
113 : [query] "=R" (*query) in test_klmd_asm_block()
124 : [query] "=R" (*query) in test_kmctr_asm_block()
135 : [query] "=R" (*query) in test_kmf_asm_block()
146 : [query] "=R" (*query) in test_kmo_asm_block()
157 : [query] "=R" (*query) in test_pcc_asm_block()
168 : [query] "=R" (*query) in test_prno_asm_block()
[all …]
/tools/perf/scripts/python/
A Dexport-to-sqlite.py160 query = QSqlQuery(db) variable
163 do_query(query, 'BEGIN TRANSACTION')
178 do_query(query, 'CREATE TABLE comms ('
188 do_query(query, 'CREATE TABLE dsos ('
284 do_query(query, 'CREATE TABLE cbr ('
290 do_query(query, 'CREATE TABLE mwait ('
295 do_query(query, 'CREATE TABLE pwre ('
305 do_query(query, 'CREATE TABLE pwrx ('
570 do_query(query, 'END TRANSACTION')
633 if query.next():
[all …]
A Dexport-to-postgresql.py323 query = QSqlQuery(db) variable
331 query.finish()
332 query.clear()
338 query = QSqlQuery(db) variable
364 do_query(query, 'CREATE TABLE dsos ('
460 do_query(query, 'CREATE TABLE cbr ('
471 do_query(query, 'CREATE TABLE pwre ('
481 do_query(query, 'CREATE TABLE pwrx ('
751 do_query(query, sql)
819 if query.next():
[all …]
A Dexported-sql-viewer.py1191 if query.value(2) and Decimal(query.value(1)) <= Decimal(time):
1357 if query.next():
1365 if query.next():
3043 data.append(tohex(query.value(8)).rjust(16) + " " + query.value(9) + offstr(query.value(10)) +
3045 tohex(query.value(12)) + " " + query.value(13) + offstr(query.value(14)) +
3447 if query.next():
3458 if query.next():
4511 if query.next():
4524 if query.next():
4840 if query.next():
[all …]
/tools/testing/selftests/bpf/prog_tests/
A Dtp_attach_query.c10 struct perf_event_query_bpf *query; in serial_test_tp_attach_query() local
41 query = malloc(sizeof(*query) + sizeof(__u32) * num_progs); in serial_test_tp_attach_query()
73 query->ids_len = num_progs; in serial_test_tp_attach_query()
78 err, errno, query->prog_cnt)) in serial_test_tp_attach_query()
89 query->ids_len = 0; in serial_test_tp_attach_query()
94 err, errno, query->prog_cnt)) in serial_test_tp_attach_query()
107 query->ids_len = 1; in serial_test_tp_attach_query()
112 err, errno, query->prog_cnt)) in serial_test_tp_attach_query()
116 query->ids_len = num_progs; in serial_test_tp_attach_query()
121 err, errno, query->prog_cnt)) in serial_test_tp_attach_query()
[all …]
A Dtc_opts.c2558 attr.query.attach_type = target; in test_tc_opts_query_target()
2601 attr.query.attach_type = target; in test_tc_opts_query_target()
2605 attr.query.count = 2; in test_tc_opts_query_target()
2630 attr.query.attach_type = target; in test_tc_opts_query_target()
2634 attr.query.count = 10; in test_tc_opts_query_target()
2659 attr.query.attach_type = target; in test_tc_opts_query_target()
2687 attr.query.attach_type = target; in test_tc_opts_query_target()
2713 attr.query.attach_flags = 0; in test_tc_opts_query_target()
2714 attr.query.query_flags = 1; in test_tc_opts_query_target()
2720 attr.query.attach_flags = 1; in test_tc_opts_query_target()
[all …]
/tools/testing/selftests/mm/
A Dmerge.c97 ASSERT_EQ(procmap->query.vma_start, (unsigned long)ptr); in TEST_F()
147 ASSERT_EQ(procmap->query.vma_start, (unsigned long)ptr); in TEST_F()
198 ASSERT_EQ(procmap->query.vma_start, (unsigned long)ptr); in TEST_F()
257 ASSERT_EQ(procmap->query.vma_start, (unsigned long)ptr); in TEST_F()
316 ASSERT_EQ(procmap->query.vma_start, (unsigned long)ptr); in TEST_F()
380 ASSERT_EQ(procmap->query.vma_start, (unsigned long)ptr); in TEST_F()
444 ASSERT_EQ(procmap->query.vma_start, (unsigned long)ptr2); in TEST_F()
535 ASSERT_EQ(procmap->query.vma_start, (unsigned long)ptr); in TEST_F()
561 ASSERT_EQ(procmap->query.vma_start, (unsigned long)ptr); in TEST_F()
576 ASSERT_EQ(procmap->query.vma_start, (unsigned long)ptr); in TEST_F()
[all …]
A Dvm_util.c440 procmap_out->query.size = sizeof(procmap_out->query); in open_procmap()
453 if (ioctl(procmap->fd, PROCMAP_QUERY, &procmap->query) == -1) in query_procmap()
469 procmap->query.query_flags = 0; in find_vma_procmap()
470 procmap->query.query_addr = (unsigned long)address; in find_vma_procmap()
A Dvm_util.h37 struct procmap_query query; member
/tools/testing/selftests/drivers/net/netdevsim/
A Dethtool-coalesce.sh7 local query="${SETTINGS_MAP[$1]}"
10 awk -F':' -v pattern="$query:" '$0 ~ pattern {gsub(/[ \t]/, "", $2); print $2}')
A Dethtool-ring.sh7 local query="${SETTINGS_MAP[$1]}"
11 awk -F':' -v pattern="$query:" '$0 ~ pattern {gsub(/[\t ]/, "", $2); print $2}')
/tools/lib/bpf/
A Dbpf.c979 const size_t attr_sz = offsetofend(union bpf_attr, query); in bpf_prog_query_opts()
987 attr.query.target_fd = target; in bpf_prog_query_opts()
988 attr.query.attach_type = type; in bpf_prog_query_opts()
989 attr.query.query_flags = OPTS_GET(opts, query_flags, 0); in bpf_prog_query_opts()
990 attr.query.count = OPTS_GET(opts, count, 0); in bpf_prog_query_opts()
991 attr.query.prog_ids = ptr_to_u64(OPTS_GET(opts, prog_ids, NULL)); in bpf_prog_query_opts()
992 attr.query.link_ids = ptr_to_u64(OPTS_GET(opts, link_ids, NULL)); in bpf_prog_query_opts()
993 attr.query.prog_attach_flags = ptr_to_u64(OPTS_GET(opts, prog_attach_flags, NULL)); in bpf_prog_query_opts()
998 OPTS_SET(opts, attach_flags, attr.query.attach_flags); in bpf_prog_query_opts()
999 OPTS_SET(opts, revision, attr.query.revision); in bpf_prog_query_opts()
[all …]
/tools/perf/Documentation/
A Dperf-daemon.txt36 User need perf session that either produces data on query, like the
A Dperf-config.txt146 To query the record mode of call graph, do
154 To query the config value of sort order of call graph in user config file (i.e. `~/.perfconfig`), do
158 To query the config value of buildid directory in system config file (i.e. `$(sysconf)/perfconfig`)…
/tools/include/uapi/linux/
A Dbpf.h1703 } query; member

Completed in 54 milliseconds