OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:allocations_
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
turnserver.cc
216
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);
[
all
...]
turnserver.h
181
AllocationMap
allocations_
;
member in class:cricket::TurnServer
/external/protobuf/src/google/protobuf/
descriptor.cc
400
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);
[
all
...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/
descriptor.cc
443
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);
[
all
...]
Completed in 1187 milliseconds