HomeSort by relevance Sort by last modified time
    Searched refs:AtomicStack (Results 1 - 8 of 8) sorted by null

  /art/runtime/gc/accounting/
atomic_stack.h 47 class AtomicStack {
66 static AtomicStack* Create(const std::string& name, size_t growth_limit, size_t capacity) {
67 std::unique_ptr<AtomicStack> mark_stack(new AtomicStack(name, growth_limit, capacity));
72 ~AtomicStack() {}
221 AtomicStack(const std::string& name, size_t growth_limit, size_t capacity)
279 DISALLOW_COPY_AND_ASSIGN(AtomicStack);
282 typedef AtomicStack<mirror::Object> ObjectStack;
  /art/runtime/gc/collector/
mark_compact.h 47 template <typename T> class AtomicStack;
48 typedef AtomicStack<mirror::Object> ObjectStack;
semi_space.h 46 template <typename T> class AtomicStack;
47 typedef AtomicStack<mirror::Object> ObjectStack;
mark_sweep.h 48 template<typename T> class AtomicStack;
49 typedef AtomicStack<mirror::Object> ObjectStack;
concurrent_copying.h 42 template<typename T> class AtomicStack;
43 typedef AtomicStack<mirror::Object> ObjectStack;
concurrent_copying.cc 121 accounting::AtomicStack<mirror::Object>* mark_stack =
122 accounting::AtomicStack<mirror::Object>::Create(
    [all...]
  /art/runtime/
thread.h 54 template<class T> class AtomicStack;
297 gc::accounting::AtomicStack<mirror::Object>* GetThreadLocalMarkStack() {
301 void SetThreadLocalMarkStack(gc::accounting::AtomicStack<mirror::Object>* stack) {
    [all...]
  /art/runtime/gc/
heap.h 75 template <typename T> class AtomicStack;
76 typedef AtomicStack<mirror::Object> ObjectStack;
    [all...]

Completed in 350 milliseconds