Lines Matching refs:LockedPtr
191 LockedPtr<ErrorCode> getErrorStatus() { in getErrorStatus()
192 return LockedPtr<ErrorCode>(&ErrorStatus, &ErrorStatusLock); in getErrorStatus()
416 LockedPtr<StringPool> getStrings() const { in getStrings()
417 return LockedPtr<StringPool>(Strings.get(), &StringsLock); in getStrings()
420 LockedPtr<VariableDeclarationList> getGlobals() { in getGlobals()
421 return LockedPtr<VariableDeclarationList>(&Globals, &InitAllocLock); in getGlobals()
528 LockedPtr<ArenaAllocator> getAllocator() { in getAllocator()
529 return LockedPtr<ArenaAllocator>(&Allocator, &AllocLock); in getAllocator()
531 LockedPtr<VariableDeclarationList> getInitializerAllocator() { in getInitializerAllocator()
532 return LockedPtr<VariableDeclarationList>(&Globals, &InitAllocLock); in getInitializerAllocator()
534 LockedPtr<ConstantPool> getConstPool() { in getConstPool()
535 return LockedPtr<ConstantPool>(ConstPool.get(), &ConstPoolLock); in getConstPool()
537 LockedPtr<JumpTableDataList> getJumpTableList() { in getJumpTableList()
538 return LockedPtr<JumpTableDataList>(&JumpTableList, &JumpTablesLock); in getJumpTableList()
540 LockedPtr<CodeStats> getStatsCumulative() { in getStatsCumulative()
541 return LockedPtr<CodeStats>(&StatsCumulative, &StatsLock); in getStatsCumulative()
543 LockedPtr<TimerList> getTimers() { in getTimers()
544 return LockedPtr<TimerList>(&Timers, &TimerLock); in getTimers()
546 LockedPtr<DestructorArray> getDestructors() { in getDestructors()
547 return LockedPtr<DestructorArray>(&Destructors, &DestructorsLock); in getDestructors()
551 LockedPtr<VariableDeclarationList> _(&Globals, &InitAllocLock); in accumulateGlobals()