Symbol: lock_stat
drivers/media/dvb-frontends/drx39xyj/drx_driver.h
200
lock_stat);
drivers/media/dvb-frontends/drx39xyj/drxj.c
1019
ctrl_lock_status(struct drx_demod_instance *demod, enum drx_lock_status *lock_stat);
drivers/media/dvb-frontends/drx39xyj/drxj.c
10781
ctrl_lock_status(struct drx_demod_instance *demod, enum drx_lock_status *lock_stat)
drivers/media/dvb-frontends/drx39xyj/drxj.c
10797
if ((demod == NULL) || (lock_stat == NULL))
drivers/media/dvb-frontends/drx39xyj/drxj.c
10804
*lock_stat = DRX_NOT_LOCKED;
drivers/media/dvb-frontends/drx39xyj/drxj.c
10840
*lock_stat = DRX_NOT_LOCKED;
drivers/media/dvb-frontends/drx39xyj/drxj.c
10842
*lock_stat = DRXJ_DEMOD_LOCK;
drivers/media/dvb-frontends/drx39xyj/drxj.c
10846
*lock_stat = DRX_LOCKED;
drivers/media/dvb-frontends/drx39xyj/drxj.c
10850
*lock_stat = DRX_NEVER_LOCK;
kernel/locking/lockdep.c
350
if (!lock_stat)
kernel/locking/lockdep.c
6136
if (unlikely(!lock_stat || !lockdep_enabled()))
kernel/locking/lockdep.c
6154
if (unlikely(!lock_stat || !lockdep_enabled()))
kernel/locking/lockdep.c
77
static int lock_stat = 1;
kernel/locking/lockdep.c
78
module_param(lock_stat, int, 0644);
kernel/locking/lockdep.c
97
.data = &lock_stat,
tools/perf/builtin-lock.c
1130
struct lock_stat *ls;
tools/perf/builtin-lock.c
1275
struct lock_stat *st;
tools/perf/builtin-lock.c
1353
static int compare_maps(struct lock_stat *a, struct lock_stat *b)
tools/perf/builtin-lock.c
1371
struct lock_stat *st;
tools/perf/builtin-lock.c
1456
struct lock_stat *st;
tools/perf/builtin-lock.c
1471
struct lock_stat *st;
tools/perf/builtin-lock.c
160
static int lock_stat_key_ ## member(struct lock_stat *one, \
tools/perf/builtin-lock.c
161
struct lock_stat *two) \
tools/perf/builtin-lock.c
1624
static void print_lock_stat_stdio(struct lock_contention *con, struct lock_stat *st)
tools/perf/builtin-lock.c
1674
static void print_lock_stat_csv(struct lock_contention *con, struct lock_stat *st,
tools/perf/builtin-lock.c
172
static int lock_stat_key_wait_time_min(struct lock_stat *one,
tools/perf/builtin-lock.c
1728
static void print_lock_stat(struct lock_contention *con, struct lock_stat *st)
tools/perf/builtin-lock.c
173
struct lock_stat *two)
tools/perf/builtin-lock.c
1797
struct lock_stat *st;
tools/perf/builtin-lock.c
196
int (*key)(struct lock_stat*, struct lock_stat*);
tools/perf/builtin-lock.c
198
void (*print)(struct lock_key*, struct lock_stat*);
tools/perf/builtin-lock.c
236
struct lock_stat *ls) \
tools/perf/builtin-lock.c
243
struct lock_stat *ls) \
tools/perf/builtin-lock.c
255
struct lock_stat *ls)
tools/perf/builtin-lock.c
268
static int (*compare)(struct lock_stat *, struct lock_stat *);
tools/perf/builtin-lock.c
381
static void combine_lock_stats(struct lock_stat *st)
tools/perf/builtin-lock.c
385
struct lock_stat *p;
tools/perf/builtin-lock.c
389
p = container_of(*rb, struct lock_stat, rb);
tools/perf/builtin-lock.c
425
static void insert_to(struct rb_root *rr, struct lock_stat *st,
tools/perf/builtin-lock.c
426
int (*bigger)(struct lock_stat *, struct lock_stat *))
tools/perf/builtin-lock.c
430
struct lock_stat *p;
tools/perf/builtin-lock.c
433
p = container_of(*rb, struct lock_stat, rb);
tools/perf/builtin-lock.c
446
static inline void insert_to_result(struct lock_stat *st,
tools/perf/builtin-lock.c
447
int (*bigger)(struct lock_stat *,
tools/perf/builtin-lock.c
448
struct lock_stat *))
tools/perf/builtin-lock.c
455
static inline struct lock_stat *pop_from(struct rb_root *rr)
tools/perf/builtin-lock.c
466
return container_of(node, struct lock_stat, rb);
tools/perf/builtin-lock.c
471
static struct lock_stat *pop_from_result(void)
tools/perf/builtin-lock.c
564
struct lock_stat *ls;
tools/perf/builtin-lock.c
638
struct lock_stat *ls;
tools/perf/builtin-lock.c
703
struct lock_stat *ls;
tools/perf/builtin-lock.c
760
struct lock_stat *ls;
tools/perf/builtin-lock.c
967
struct lock_stat *ls;
tools/perf/util/bpf_lock_contention.c
201
bpf_map__set_max_entries(skel->maps.lock_stat, con->map_nr_entries);
tools/perf/util/bpf_lock_contention.c
508
stat_fd = bpf_map__fd(skel->maps.lock_stat);
tools/perf/util/bpf_lock_contention.c
668
struct lock_stat *pop_owner_stack_trace(struct lock_contention *con)
tools/perf/util/bpf_lock_contention.c
676
struct lock_stat *st = NULL;
tools/perf/util/bpf_lock_contention.c
694
st = zalloc(sizeof(struct lock_stat));
tools/perf/util/bpf_lock_contention.c
730
struct lock_stat *st = NULL;
tools/perf/util/bpf_lock_contention.c
735
fd = bpf_map__fd(skel->maps.lock_stat);
tools/perf/util/bpf_skel/lock_contention.bpf.c
844
data = bpf_map_lookup_elem(&lock_stat, &key);
tools/perf/util/bpf_skel/lock_contention.bpf.c
883
err = bpf_map_update_elem(&lock_stat, &key, &first, BPF_NOEXIST);
tools/perf/util/bpf_skel/lock_contention.bpf.c
887
data = bpf_map_lookup_elem(&lock_stat, &key);
tools/perf/util/bpf_skel/lock_contention.bpf.c
90
} lock_stat SEC(".maps");
tools/perf/util/lock-contention.c
58
struct lock_stat *lock_stat_find(u64 addr)
tools/perf/util/lock-contention.c
61
struct lock_stat *ret;
tools/perf/util/lock-contention.c
70
struct lock_stat *lock_stat_findnew(u64 addr, const char *name, int flags)
tools/perf/util/lock-contention.c
73
struct lock_stat *ret, *new;
tools/perf/util/lock-contention.c
80
new = zalloc(sizeof(struct lock_stat));
tools/perf/util/lock-contention.h
167
struct lock_stat *lock_stat_find(u64 addr);
tools/perf/util/lock-contention.h
168
struct lock_stat *lock_stat_findnew(u64 addr, const char *name, int flags);
tools/perf/util/lock-contention.h
180
struct lock_stat *pop_owner_stack_trace(struct lock_contention *con);
tools/perf/util/lock-contention.h
201
static inline struct lock_stat *pop_owner_stack_trace(struct lock_contention *con __maybe_unused)