Searched refs:allocations_ (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dturnserver.cc216 for (AllocationMap::iterator it = allocations_.begin();
217 it != allocations_.end(); ++it) {
511 AllocationMap::const_iterator it = allocations_.find(*conn);
512 return (it != allocations_.end()) ? it->second : NULL;
528 allocations_[*conn] = allocation;
581 AllocationMap::iterator it = allocations_.find(*(allocation->conn()));
582 if (it != allocations_.end())
583 allocations_.erase(it);
H A Dturnserver.h181 AllocationMap allocations_; member in class:cricket::TurnServer
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddescriptor.cc443 vector<void*> allocations_; // All other memory allocated in the pool. member in class:google::protobuf::DescriptorPool::Tables
454 allocations_before_checkpoint(tables->allocations_.size()),
553 // messages may refer to objects in allocations_.
555 for (int i = 0; i < allocations_.size(); i++) {
556 operator delete(allocations_[i]);
626 i < allocations_.size();
628 operator delete(allocations_[i]);
634 allocations_.resize(checkpoint.allocations_before_checkpoint);
836 allocations_.push_back(result);
/external/protobuf/src/google/protobuf/
H A Ddescriptor.cc400 vector<void*> allocations_; // All other memory allocated in the pool. member in class:google::protobuf::DescriptorPool::Tables
488 // messages may refer to objects in allocations_.
490 for (int i = 0; i < allocations_.size(); i++) {
491 operator delete(allocations_[i]);
506 allocations_before_checkpoint_ = allocations_.size();
534 for (int i = allocations_before_checkpoint_; i < allocations_.size(); i++) {
535 operator delete(allocations_[i]);
541 allocations_.resize(allocations_before_checkpoint_);
742 allocations_.push_back(result);

Completed in 134 milliseconds