HomeSort by relevance Sort by last modified time
    Searched refs:GUARDED_BY (Results 26 - 50 of 143) sorted by null

12 3 4 5 6

  /art/runtime/
thread_pool.h 154 ConditionVariable task_queue_condition_ GUARDED_BY(task_queue_lock_);
155 ConditionVariable completion_condition_ GUARDED_BY(task_queue_lock_);
156 volatile bool started_ GUARDED_BY(task_queue_lock_);
157 volatile bool shutting_down_ GUARDED_BY(task_queue_lock_);
159 volatile size_t waiting_count_ GUARDED_BY(task_queue_lock_);
160 std::deque<Task*> tasks_ GUARDED_BY(task_queue_lock_);
164 uint64_t start_time_ GUARDED_BY(task_queue_lock_);
167 size_t max_active_workers_ GUARDED_BY(task_queue_lock_);
barrier.h 70 int count_ GUARDED_BY(lock_);
73 ConditionVariable condition_ GUARDED_BY(lock_);
runtime_callbacks.h 125 GUARDED_BY(Locks::mutator_lock_);
127 GUARDED_BY(Locks::mutator_lock_);
129 GUARDED_BY(Locks::mutator_lock_);
131 GUARDED_BY(Locks::mutator_lock_);
133 GUARDED_BY(Locks::mutator_lock_);
monitor.h 277 ConditionVariable monitor_contenders_ GUARDED_BY(monitor_lock_);
280 size_t num_waiters_ GUARDED_BY(monitor_lock_);
283 Thread* volatile owner_ GUARDED_BY(monitor_lock_);
286 int lock_count_ GUARDED_BY(monitor_lock_);
294 Thread* wait_set_ GUARDED_BY(monitor_lock_);
302 ArtMethod* locking_method_ GUARDED_BY(monitor_lock_);
303 uint32_t locking_dex_pc_ GUARDED_BY(monitor_lock_);
310 Monitor* next_free_ GUARDED_BY(Locks::allocated_monitor_ids_lock_);
343 bool allow_new_monitors_ GUARDED_BY(monitor_list_lock_);
345 ConditionVariable monitor_add_condition_ GUARDED_BY(monitor_list_lock_)
    [all...]
  /external/webrtc/webrtc/base/
bufferqueue.h 49 std::deque<Buffer*> queue_ GUARDED_BY(crit_);
50 std::vector<Buffer*> free_list_ GUARDED_BY(crit_);
  /external/webrtc/webrtc/modules/audio_processing/
high_pass_filter_impl.h 39 bool enabled_ GUARDED_BY(crit_) = false;
40 std::vector<rtc::scoped_ptr<BiquadFilter>> filters_ GUARDED_BY(crit_);
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/
remote_bitrate_estimator_abs_send_time.h 131 RemoteBitrateObserver* observer_ GUARDED_BY(crit_sect_.get());
133 Ssrcs ssrcs_ GUARDED_BY(crit_sect_.get());
134 rtc::scoped_ptr<InterArrival> inter_arrival_ GUARDED_BY(crit_sect_.get());
135 OveruseEstimator estimator_ GUARDED_BY(crit_sect_.get());
136 OveruseDetector detector_ GUARDED_BY(crit_sect_.get());
137 RateStatistics incoming_bitrate_ GUARDED_BY(crit_sect_.get());
138 AimdRateControl remote_rate_ GUARDED_BY(crit_sect_.get());
140 std::vector<int> recent_propagation_delta_ms_ GUARDED_BY(crit_sect_.get());
141 std::vector<int64_t> recent_update_time_ms_ GUARDED_BY(crit_sect_.get());
142 int64_t process_interval_ms_ GUARDED_BY(crit_sect_.get())
    [all...]
  /art/runtime/jit/
jit_code_cache.h 333 ConditionVariable lock_cond_ GUARDED_BY(lock_);
335 bool collection_in_progress_ GUARDED_BY(lock_);
341 void* code_mspace_ GUARDED_BY(lock_);
343 void* data_mspace_ GUARDED_BY(lock_);
347 SafeMap<const void*, ArtMethod*> method_code_map_ GUARDED_BY(lock_);
349 SafeMap<ArtMethod*, const void*> osr_code_map_ GUARDED_BY(lock_);
351 std::vector<ProfilingInfo*> profiling_infos_ GUARDED_BY(lock_);
354 size_t max_capacity_ GUARDED_BY(lock_);
357 size_t current_capacity_ GUARDED_BY(lock_);
360 size_t code_end_ GUARDED_BY(lock_)
    [all...]
profile_saver.h 109 static ProfileSaver* instance_ GUARDED_BY(Locks::profiler_lock_);
111 static pthread_t profiler_pthread_ GUARDED_BY(Locks::profiler_lock_);
118 GUARDED_BY(Locks::profiler_lock_);
124 GUARDED_BY(Locks::profiler_lock_);
126 bool shutting_down_ GUARDED_BY(Locks::profiler_lock_);
127 uint64_t last_time_ns_saver_woke_up_ GUARDED_BY(wait_lock_);
139 ConditionVariable period_condition_ GUARDED_BY(wait_lock_);
  /art/runtime/gc/
task_processor.h 78 bool is_running_ GUARDED_BY(lock_);
79 std::unique_ptr<ConditionVariable> cond_ GUARDED_BY(lock_);
80 std::multiset<HeapTask*, CompareByTargetRunTime> tasks_ GUARDED_BY(lock_);
81 Thread* running_thread_ GUARDED_BY(lock_);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/
locked_bandwidth_info.h 40 IsacBandwidthInfo bwinfo_ GUARDED_BY(lock_);
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_sender.h 389 Random random_ GUARDED_BY(send_critsect_);
405 bool sending_media_ GUARDED_BY(send_critsect_);
410 int8_t payload_type_ GUARDED_BY(send_critsect_);
429 SendDelayMap send_delays_ GUARDED_BY(statistics_crit_);
430 FrameCounts frame_counts_ GUARDED_BY(statistics_crit_);
431 StreamDataCounters rtp_stats_ GUARDED_BY(statistics_crit_);
432 StreamDataCounters rtx_rtp_stats_ GUARDED_BY(statistics_crit_);
433 StreamDataCountersCallback* rtp_stats_callback_ GUARDED_BY(statistics_crit_);
438 bool start_timestamp_forced_ GUARDED_BY(send_critsect_);
439 uint32_t start_timestamp_ GUARDED_BY(send_critsect_)
    [all...]
rtp_packet_history.h 87 bool store_ GUARDED_BY(critsect_);
88 uint32_t prev_index_ GUARDED_BY(critsect_);
101 std::vector<StoredPacket> stored_packets_ GUARDED_BY(critsect_);
  /external/webrtc/talk/media/webrtc/
webrtcvideoengine2.h 360 GUARDED_BY(lock_);
363 webrtc::VideoSendStream* stream_ GUARDED_BY(lock_);
364 VideoSendStreamParameters parameters_ GUARDED_BY(lock_);
365 VideoEncoderSettings encoder_settings_ GUARDED_BY(lock_);
366 AllocatedEncoder allocated_encoder_ GUARDED_BY(lock_);
367 Dimensions last_dimensions_ GUARDED_BY(lock_);
369 VideoCapturer* capturer_ GUARDED_BY(lock_);
370 bool sending_ GUARDED_BY(lock_);
371 bool muted_ GUARDED_BY(lock_);
372 VideoFormat format_ GUARDED_BY(lock_)
    [all...]
  /external/webrtc/webrtc/modules/video_coding/
video_coding_impl.h 112 VCMSendStatisticsCallback* _sendStatsCallback GUARDED_BY(process_crit_sect_);
113 VCMCodecDataBase _codecDataBase GUARDED_BY(send_crit_);
114 bool frame_dropper_enabled_ GUARDED_BY(send_crit_);
125 EncoderParameters encoder_params_ GUARDED_BY(params_lock_);
195 VCMFrameTypeCallback* _frameTypeCallback GUARDED_BY(process_crit_sect_);
197 GUARDED_BY(process_crit_sect_);
199 GUARDED_BY(process_crit_sect_);
201 GUARDED_BY(process_crit_sect_);
203 GUARDED_BY(process_crit_sect_);
209 bool _scheduleKeyRequest GUARDED_BY(process_crit_sect_)
    [all...]
jitter_buffer.h 331 UnorderedFrameList free_frames_ GUARDED_BY(crit_sect_);
332 FrameList decodable_frames_ GUARDED_BY(crit_sect_);
333 FrameList incomplete_frames_ GUARDED_BY(crit_sect_);
334 VCMDecodingState last_decoded_state_ GUARDED_BY(crit_sect_);
338 VCMReceiveStatisticsCallback* stats_callback_ GUARDED_BY(crit_sect_);
352 int num_packets_ GUARDED_BY(crit_sect_);
354 int num_duplicated_packets_ GUARDED_BY(crit_sect_);
356 int num_discarded_packets_ GUARDED_BY(crit_sect_);
358 int64_t time_first_packet_ms_ GUARDED_BY(crit_sect_);
  /external/webrtc/webrtc/video/
payload_router.h 75 std::vector<RtpRtcp*> rtp_modules_ GUARDED_BY(crit_.get());
76 bool active_ GUARDED_BY(crit_.get());
send_statistics_proxy.h 135 VideoEncoderConfig::ContentType content_type_ GUARDED_BY(crit_);
136 VideoSendStream::Stats stats_ GUARDED_BY(crit_);
137 uint32_t last_sent_frame_timestamp_ GUARDED_BY(crit_);
138 std::map<uint32_t, StatsUpdateTimes> update_times_ GUARDED_BY(crit_);
139 rtc::ExpFilter encode_time_ GUARDED_BY(crit_);
169 rtc::scoped_ptr<UmaSamplesContainer> uma_container_ GUARDED_BY(crit_);
  /external/webrtc/webrtc/system_wrappers/source/
trace_impl.h 96 TraceCallback* callback_ GUARDED_BY(crit_);
97 uint32_t row_count_text_ GUARDED_BY(crit_);
98 uint32_t file_count_text_ GUARDED_BY(crit_);
100 const rtc::scoped_ptr<FileWrapper> trace_file_ GUARDED_BY(crit_);
  /external/webrtc/webrtc/common_audio/
swap_queue.h 194 QueueItemVerifier queue_item_verifier_ GUARDED_BY(crit_queue_);
198 size_t next_write_index_ GUARDED_BY(crit_queue_) = 0;
199 size_t next_read_index_ GUARDED_BY(crit_queue_) = 0;
200 size_t num_elements_ GUARDED_BY(crit_queue_) = 0;
203 std::vector<T> queue_ GUARDED_BY(crit_queue_);
  /external/webrtc/webrtc/audio/
audio_state.h 51 bool typing_noise_detected_ GUARDED_BY(crit_sect_) = false;
  /external/webrtc/webrtc/modules/pacing/
packet_router.h 59 std::list<RtpRtcp*> rtp_modules_ GUARDED_BY(modules_lock_);
  /external/webrtc/webrtc/test/
vcm_capturer.h 43 bool started_ GUARDED_BY(crit_);
  /system/netd/tests/dns_responder/
dns_responder.h 118 GUARDED_BY(mappings_mutex_);
119 // TODO(imaipi): enable GUARDED_BY(mappings_mutex_);
123 GUARDED_BY(queries_mutex_);
130 std::atomic<bool> terminate_ GUARDED_BY(update_mutex_);
132 std::thread handler_thread_ GUARDED_BY(update_mutex_);
  /external/clang/test/SemaCXX/
warn-thread-safety-parsing.cpp 5 #define GUARDED_BY(x) __attribute__ ((guarded_by(x)))
302 #if !__has_attribute(guarded_by)
303 #error "Should support guarded_by attribute"
308 int gb_var_arg GUARDED_BY(mu1);
310 int gb_non_ascii GUARDED_BY(L"wide"); // expected-warning {{ignoring 'guarded_by' attribute because its argument is invalid}}
312 int gb_var_args __attribute__((guarded_by(mu1, mu2))); // \
313 // expected-error {{'guarded_by' attribute takes one argument}}
315 int gb_var_noargs __attribute__((guarded_by)); // \
    [all...]

Completed in 890 milliseconds

12 3 4 5 6