Home
last modified time | relevance | path

Searched refs:snapshot_size (Results 1 – 6 of 6) sorted by relevance

/linux/tools/perf/arch/x86/util/
H A Dintel-bts.c44 size_t snapshot_size; member
257 unsigned long long snapshot_size = 0; in intel_bts_parse_snapshot_options() local
261 snapshot_size = strtoull(str, &endptr, 0); in intel_bts_parse_snapshot_options()
262 if (*endptr || snapshot_size > SIZE_MAX) in intel_bts_parse_snapshot_options()
267 opts->auxtrace_snapshot_size = snapshot_size; in intel_bts_parse_snapshot_options()
269 btsr->snapshot_size = snapshot_size; in intel_bts_parse_snapshot_options()
H A Dintel-pt.c59 size_t snapshot_size; member
246 unsigned long long snapshot_size = 0; in intel_pt_parse_snapshot_options() local
250 snapshot_size = strtoull(str, &endptr, 0); in intel_pt_parse_snapshot_options()
251 if (*endptr || snapshot_size > SIZE_MAX) in intel_pt_parse_snapshot_options()
256 opts->auxtrace_snapshot_size = snapshot_size; in intel_pt_parse_snapshot_options()
258 ptr->snapshot_size = snapshot_size; in intel_pt_parse_snapshot_options()
986 if (ptr->snapshot_size <= 64 * 1024) in intel_pt_snapshot_ref_buf_size()
999 if (buf_size >= ptr->snapshot_size / 2) in intel_pt_snapshot_ref_buf_size()
/linux/tools/perf/arch/arm/util/
H A Dcs-etm.c42 size_t snapshot_size; member
246 unsigned long long snapshot_size = 0; in cs_etm_parse_snapshot_options() local
250 snapshot_size = strtoull(str, &endptr, 0); in cs_etm_parse_snapshot_options()
251 if (*endptr || snapshot_size > SIZE_MAX) in cs_etm_parse_snapshot_options()
256 opts->auxtrace_snapshot_size = snapshot_size; in cs_etm_parse_snapshot_options()
257 ptr->snapshot_size = snapshot_size; in cs_etm_parse_snapshot_options()
/linux/tools/perf/arch/arm64/util/
H A Darm-spe.c450 unsigned long long snapshot_size = 0; in arm_spe_parse_snapshot_options()
454 snapshot_size = strtoull(str, &endptr, 0); in arm_spe_parse_snapshot_options()
455 if (*endptr || snapshot_size > SIZE_MAX) in arm_spe_parse_snapshot_options()
460 opts->auxtrace_snapshot_size = snapshot_size; in arm_spe_parse_snapshot_options()
449 unsigned long long snapshot_size = 0; arm_spe_parse_snapshot_options() local
/linux/tools/perf/util/
H A Dauxtrace.c1915 bool snapshot, size_t snapshot_size) in __auxtrace_mmap__read() argument
1950 if (snapshot && size > snapshot_size) in __auxtrace_mmap__read()
1951 size = snapshot_size; in __auxtrace_mmap__read()
2034 size_t snapshot_size) in auxtrace_mmap__read_snapshot() argument
2036 return __auxtrace_mmap__read(map, itr, env, tool, fn, true, snapshot_size); in auxtrace_mmap__read_snapshot()
H A Dauxtrace.h516 size_t snapshot_size);