Home
last modified time | relevance | path

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

/device/google/cuttlefish/guest/hals/hwcomposer/common/
Dstats_keeper.h120 int num_layers_ GUARDED_BY(mutex_);
121 int num_hwcomposited_layers_ GUARDED_BY(mutex_);
122 int num_prepare_calls_ GUARDED_BY(mutex_);
123 int num_set_calls_ GUARDED_BY(mutex_);
124 cuttlefish::time::Nanoseconds prepare_call_total_time_ GUARDED_BY(mutex_);
125 cuttlefish::time::Nanoseconds set_call_total_time_ GUARDED_BY(mutex_);
128 std::multiset<int> prepare_calls_per_set_calls_ GUARDED_BY(mutex_);
129 std::multiset<int> layers_per_compositions_ GUARDED_BY(mutex_);
130 std::multiset<cuttlefish::time::Nanoseconds> prepare_call_times_ GUARDED_BY(mutex_);
131 std::multiset<cuttlefish::time::Nanoseconds> set_call_times_ GUARDED_BY(mutex_);
[all …]
/device/google/cuttlefish/host/frontend/vnc_server/
Dblackboard.h102 SeqNumberVec most_recent_stripe_seq_nums_ GUARDED_BY(m_) = MakeSeqNumberVec();
104 GUARDED_BY(m_);
105 int jpeg_quality_level_ GUARDED_BY(m_) = 100;
109 FrameBufferWatcher* frame_buffer_watcher_ GUARDED_BY(m_){}; in GUARDED_BY() function
Dframe_buffer_watcher.h66 std::array<StripePtrVec, kNumOrientations> stripes_ GUARDED_BY(stripes_lock_);
68 GUARDED_BY(stripes_lock_) = MakeSeqNumberVec();
70 bool closed_ GUARDED_BY(m_){}; in GUARDED_BY() function
Dvnc_client_connection.h147 bool use_jpeg_compression_ GUARDED_BY(m_) = false;
150 bool closed_ GUARDED_BY(m_){}; in GUARDED_BY() function
152 PixelFormat pixel_format_ GUARDED_BY(m_) = {
166 ScreenOrientation current_orientation_ GUARDED_BY(m_) =
Dsimulated_hw_composer.h58 bool closed_ GUARDED_BY(m_){}; in GUARDED_BY() function
/device/google/cuttlefish/common/libs/threads/
Dthread_annotations.h30 #define GUARDED_BY(x) \ macro