HomeSort by relevance Sort by last modified time
    Searched refs:debug_state (Results 1 - 25 of 29) sorted by null

1 2

  /external/ltrace/sysdeps/linux-gnu/
os.h 24 int debug_state; member in struct:os_process_data
proc.c 583 switch (proc->os.debug_state) {
597 proc->os.debug_state = rdbg.r_state;
726 proc->os.debug_state = 0;
  /external/chromium_org/cc/debug/
debug_rect_history.cc 34 const LayerTreeDebugState& debug_state) {
39 if (debug_state.show_touch_event_handler_rects)
42 if (debug_state.show_wheel_event_handler_rects)
45 if (debug_state.show_scroll_event_handler_rects)
48 if (debug_state.show_non_fast_scrollable_rects)
51 if (debug_state.show_paint_rects)
54 if (debug_state.show_property_changed_rects)
57 if (debug_state.show_surface_damage_rects)
60 if (debug_state.show_screen_space_rects)
63 if (debug_state.show_occluding_rects
    [all...]
debug_rect_history.h 84 const LayerTreeDebugState& debug_state);
  /external/chromium_org/content/renderer/gpu/
render_widget_compositor.cc 375 cc::LayerTreeDebugState current = layer_tree_host_->debug_state();
619 cc::LayerTreeDebugState debug_state = layer_tree_host_->debug_state(); local
620 debug_state.show_fps_counter = show;
621 layer_tree_host_->SetDebugState(debug_state);
625 cc::LayerTreeDebugState debug_state = layer_tree_host_->debug_state(); local
626 debug_state.show_paint_rects = show;
627 layer_tree_host_->SetDebugState(debug_state);
631 cc::LayerTreeDebugState debug_state = layer_tree_host_->debug_state() local
637 cc::LayerTreeDebugState debug_state = layer_tree_host_->debug_state(); local
643 cc::LayerTreeDebugState debug_state = layer_tree_host_->debug_state(); local
    [all...]
  /external/lldb/tools/debugserver/source/MacOSX/i386/
DNBArchImplI386.h 224 static void SetWatchpoint(DBG &debug_state, uint32_t hw_index, nub_addr_t addr, nub_size_t size, bool read, bool write);
225 static void ClearWatchpoint(DBG &debug_state, uint32_t hw_index);
226 static bool IsWatchpointVacant(const DBG &debug_state, uint32_t hw_index);
227 static void ClearWatchpointHits(DBG &debug_state);
228 static bool IsWatchpointHit(const DBG &debug_state, uint32_t hw_index);
229 static nub_addr_t GetWatchAddress(const DBG &debug_state, uint32_t hw_index);
DNBArchImplI386.cpp 588 DBG &debug_state = m_state.context.dbg;
592 if (IsWatchpointHit(debug_state, i))
597 ClearWatchpointHits(debug_state);
733 DNBArchImplI386::SetWatchpoint(DBG &debug_state, uint32_t hw_index, nub_addr_t addr, nub_size_t size, bool read, bool write)
757 debug_state.__dr7 |= (1 << (2*hw_index) |
762 debug_state.__dr0 = addr_32; break;
764 debug_state.__dr1 = addr_32; break;
766 debug_state.__dr2 = addr_32; break;
768 debug_state.__dr3 = addr_32; break;
776 DNBArchImplI386::ClearWatchpoint(DBG &debug_state, uint32_t hw_index
907 DBG &debug_state = m_state.context.dbg; local
946 DBG &debug_state = m_state.context.dbg; local
976 DBG &debug_state = m_state.context.dbg; local
    [all...]
  /external/lldb/tools/debugserver/source/MacOSX/x86_64/
DNBArchImplX86_64.h 231 static void SetWatchpoint(DBG &debug_state, uint32_t hw_index, nub_addr_t addr, nub_size_t size, bool read, bool write);
232 static void ClearWatchpoint(DBG &debug_state, uint32_t hw_index);
233 static bool IsWatchpointVacant(const DBG &debug_state, uint32_t hw_index);
234 static void ClearWatchpointHits(DBG &debug_state);
235 static bool IsWatchpointHit(const DBG &debug_state, uint32_t hw_index);
236 static nub_addr_t GetWatchAddress(const DBG &debug_state, uint32_t hw_index);
DNBArchImplX86_64.cpp 542 DBG &debug_state = m_state.context.dbg;
546 if (IsWatchpointHit(debug_state, i))
551 ClearWatchpointHits(debug_state);
687 DNBArchImplX86_64::SetWatchpoint(DBG &debug_state, uint32_t hw_index, nub_addr_t addr, nub_size_t size, bool read, bool write)
711 debug_state.__dr7 |= (1 << (2*hw_index) |
715 debug_state.__dr0 = addr; break;
717 debug_state.__dr1 = addr; break;
719 debug_state.__dr2 = addr; break;
721 debug_state.__dr3 = addr; break;
729 DNBArchImplX86_64::ClearWatchpoint(DBG &debug_state, uint32_t hw_index
860 DBG &debug_state = m_state.context.dbg; local
899 DBG &debug_state = m_state.context.dbg; local
929 DBG &debug_state = m_state.context.dbg; local
    [all...]
  /external/chromium_org/cc/layers/
heads_up_display_layer.cc 33 if (layer_tree_host()->debug_state().ShowHudRects()) {
picture_layer.cc 72 host->debug_state().slow_down_raster_scale_factor);
74 host->debug_state().show_picture_borders);
heads_up_display_layer_impl.cc 189 const LayerTreeDebugState& debug_state = layer_tree_impl()->debug_state(); local
196 if (debug_state.show_fps_counter) {
202 if (debug_state.continuous_painting) {
216 if (debug_state.ShowMemoryStats()) {
230 const LayerTreeDebugState& debug_state = layer_tree_impl()->debug_state(); local
232 if (debug_state.ShowHudRects()) {
240 if (debug_state.continuous_painting) {
243 } else if (debug_state.show_fps_counter)
    [all...]
  /external/chromium_org/cc/test/
fake_proxy.h 43 virtual void SetDebugState(const LayerTreeDebugState& debug_state) OVERRIDE {}
  /external/chromium_org/cc/trees/
proxy.h 94 virtual void SetDebugState(const LayerTreeDebugState& debug_state) = 0;
thread_proxy.h 169 virtual void SetDebugState(const LayerTreeDebugState& debug_state) OVERRIDE;
279 void SetDebugStateOnImplThread(const LayerTreeDebugState& debug_state);
single_thread_proxy.h 84 virtual void SetDebugState(const LayerTreeDebugState& debug_state) OVERRIDE {}
layer_tree_host.h 183 void SetDebugState(const LayerTreeDebugState& debug_state);
184 const LayerTreeDebugState& debug_state() const { return debug_state_; } function in class:cc::LayerTreeHost
layer_tree_impl.h 105 const LayerTreeDebugState& debug_state() const;
thread_proxy.cc 665 void ThreadProxy::SetDebugState(const LayerTreeDebugState& debug_state) {
670 debug_state));
674 const LayerTreeDebugState& debug_state) {
676 impl().scheduler->SetContinuousPainting(debug_state.continuous_painting);
    [all...]
layer_tree_host.cc 558 void LayerTreeHost::SetDebugState(const LayerTreeDebugState& debug_state) {
560 LayerTreeDebugState::Unite(settings_.initial_debug_state, debug_state);
571 proxy_->SetDebugState(debug_state);
    [all...]
layer_tree_host_unittest_context.cc 816 LayerTreeDebugState debug_state; variable
817 debug_state.show_property_changed_rects = true;
818 layer_tree_host()->SetDebugState(debug_state); variable
    [all...]
  /external/chromium_org/ui/compositor/
compositor.cc 362 return host_->debug_state();
366 const cc::LayerTreeDebugState& debug_state) {
367 host_->SetDebugState(debug_state);
compositor.h 245 void SetLayerTreeDebugState(const cc::LayerTreeDebugState& debug_state);
  /external/lldb/tools/debugserver/source/MacOSX/arm/
DNBArchImpl.h 233 static bool IsWatchpointEnabled(const DBG &debug_state, uint32_t hw_index);
234 static nub_addr_t GetWatchAddress(const DBG &debug_state, uint32_t hw_index);
DNBArchImpl.cpp 1083 DBG &debug_state = m_state.dbg; local
    [all...]

Completed in 541 milliseconds

1 2