Searched defs:generation (Results 26 - 40 of 40) sorted by last modified time

12

/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dport.h185 // Identifies the generation that this port was created in.
186 uint32 generation() { return generation_; } function in class:cricket::Port
187 void set_generation(uint32 generation) { generation_ = generation; } argument
H A Dportallocator.h106 virtual uint32 generation() { return generation_; } function in class:cricket::PortAllocatorSession
107 virtual void set_generation(uint32 generation) { generation_ = generation; } argument
H A Dportallocatorsessionproxy.h97 virtual void set_generation(uint32 generation) { argument
99 impl_->set_generation(generation);
102 virtual uint32 generation() { function in class:cricket::PortAllocatorSessionProxy
104 return impl_->generation();
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dwebrtcsdp.cc143 static const char kAttributeCandidateGeneration[] = "generation";
1063 uint32 generation = 0; local
1068 if (!GetValueFromString(first_line, fields[++i], &generation, error)) {
1086 generation, foundation);
1770 os << kAttributeCandidateGeneration << " " << it->generation();
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dskiplist_test.cc138 // gen is a generation number for key
142 // generation number inserted for that key, and sets hash to Hash(key,gen).
145 // generation number for each key. We then iterate, including random
187 // Per-key generation
189 port::AtomicPointer generation[K]; member in struct:leveldb::ConcurrentTest::State
191 generation[k].Release_Store(reinterpret_cast<void*>(v));
194 return reinterpret_cast<intptr_t>(generation[k].Acquire_Load());
250 // Note that generation 0 is never inserted, so it is ok if
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFontCache.cpp261 unsigned short FontCache::generation() function in class:blink::FontCache
H A DFontFallbackList.h80 // FIXME: It should be possible to combine fontSelectorVersion and generation.
82 unsigned generation() const { return m_generation; } function in class:blink::FontFallbackList
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dtcmalloc_unittest.cc37 // hashing the object pointer, and a generation count
42 // b. Increment an object's generation count and update
335 int generation; // Generation counter of object contents member in struct:testing::TesterThread::Object
424 object.generation = 0;
435 heap_[index].generation++;
515 // Fill object contents according to ptr/generation
518 for (int i = 0; i < object->generation; ++i) {
528 for (int i = 0; i < object.generation; ++i) {
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dtcmalloc_unittest.cc37 // hashing the object pointer, and a generation count
42 // b. Increment an object's generation count and update
335 int generation; // Generation counter of object contents member in struct:testing::TesterThread::Object
424 object.generation = 0;
435 heap_[index].generation++;
515 // Fill object contents according to ptr/generation
518 for (int i = 0; i < object->generation; ++i) {
528 for (int i = 0; i < object.generation; ++i) {
/external/chromium_org/net/http/
H A Dhttp_cache.cc568 // generation number. During playback, multiple fetches for the same
569 // item will use the same generation number and pull the proper
571 int generation = 0; local
574 generation = (*playback_cache_map_)[url];
575 (*playback_cache_map_)[url] = generation + 1;
578 std::string result = base::IntToString(generation);
/external/chromium_org/remoting/protocol/
H A Djingle_messages.cc65 element->Attr(QName(kEmptyNamespace, "generation"));
69 int generation; local
74 !base::StringToInt(generation_str, &generation)) {
86 candidate->candidate.set_generation(generation);
108 result->SetAttr(QName(kEmptyNamespace, "generation"),
109 base::IntToString(candidate.candidate.generation()));
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/gpu/command_buffer/common/
H A Dcommand_buffer.h29 generation(0) {
54 // Generation index of this state. The generation index is incremented every
57 uint32 generation; member in struct:gpu::CommandBuffer::State
/external/chromium_org/jingle/glue/
H A Dutils.cc46 value.SetInteger("generation", candidate.generation());
71 int generation = 0; local
80 !dic_value->GetInteger("generation", &generation)) {
90 candidate->set_generation(generation);
/external/chromium_org/base/debug/
H A Dtrace_event_impl.cc1065 int generation() const { return generation_; }
1093 generation_(trace_log->generation()) {
1188 // Return the chunk to the buffer only if the generation matches.
1192 // find the generation mismatch and delete this buffer soon.
1699 int generation = this->generation();
1728 Bind(&TraceLog::FlushCurrentThread, Unretained(this), generation));
1732 Bind(&TraceLog::OnFlushTimeout, Unretained(this), generation),
1737 FinishFlush(generation);
1771 void TraceLog::FinishFlush(int generation) {
1817 OnFlushTimeout(int generation) argument
[all...]

Completed in 364 milliseconds

12