• Home
  • Raw
  • Download

Lines Matching refs:LockedPtr

190   LockedPtr<ErrorCode> getErrorStatus() {  in getErrorStatus()
191 return LockedPtr<ErrorCode>(&ErrorStatus, &ErrorStatusLock); in getErrorStatus()
410 LockedPtr<StringPool> getStrings() const { in getStrings()
411 return LockedPtr<StringPool>(Strings.get(), &StringsLock); in getStrings()
414 LockedPtr<VariableDeclarationList> getGlobals() { in getGlobals()
415 return LockedPtr<VariableDeclarationList>(&Globals, &InitAllocLock); in getGlobals()
518 LockedPtr<ArenaAllocator> getAllocator() { in getAllocator()
519 return LockedPtr<ArenaAllocator>(&Allocator, &AllocLock); in getAllocator()
521 LockedPtr<VariableDeclarationList> getInitializerAllocator() { in getInitializerAllocator()
522 return LockedPtr<VariableDeclarationList>(&Globals, &InitAllocLock); in getInitializerAllocator()
524 LockedPtr<ConstantPool> getConstPool() { in getConstPool()
525 return LockedPtr<ConstantPool>(ConstPool.get(), &ConstPoolLock); in getConstPool()
527 LockedPtr<JumpTableDataList> getJumpTableList() { in getJumpTableList()
528 return LockedPtr<JumpTableDataList>(&JumpTableList, &JumpTablesLock); in getJumpTableList()
530 LockedPtr<CodeStats> getStatsCumulative() { in getStatsCumulative()
531 return LockedPtr<CodeStats>(&StatsCumulative, &StatsLock); in getStatsCumulative()
533 LockedPtr<TimerList> getTimers() { in getTimers()
534 return LockedPtr<TimerList>(&Timers, &TimerLock); in getTimers()
536 LockedPtr<DestructorArray> getDestructors() { in getDestructors()
537 return LockedPtr<DestructorArray>(&Destructors, &DestructorsLock); in getDestructors()
541 LockedPtr<VariableDeclarationList> _(&Globals, &InitAllocLock); in accumulateGlobals()