OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:lock_profiling_threshold_
(Results
1 - 5
of
5
) sorted by null
/art/runtime/
parsed_options.h
83
unsigned int
lock_profiling_threshold_
;
member in class:art::ParsedOptions
monitor.cc
69
uint32_t Monitor::
lock_profiling_threshold_
= 0;
member in class:art::Monitor
79
lock_profiling_threshold_
= lock_profiling_threshold;
169
if (success && owner_ != nullptr &&
lock_profiling_threshold_
!= 0) {
241
if (
lock_profiling_threshold_
!= 0) {
250
const bool log_contention = (
lock_profiling_threshold_
!= 0);
268
if (wait_ms >=
lock_profiling_threshold_
) {
271
sample_percent = 100 * wait_ms /
lock_profiling_threshold_
;
[
all
...]
monitor.h
193
static uint32_t
lock_profiling_threshold_
;
member in class:art::Monitor
parsed_options.cc
248
lock_profiling_threshold_
= 0;
514
if (!ParseUnsignedInteger(option, ':', &
lock_profiling_threshold_
)) {
[
all
...]
runtime.cc
667
Monitor::Init(options->
lock_profiling_threshold_
, options->hook_is_sensitive_thread_);
[
all
...]
Completed in 195 milliseconds