/external/wpa_supplicant_8/wpa_supplicant/binder/ |
H A D | binder_manager.h | 48 static BinderManager *instance_; member in class:wpa_supplicant_binder::BinderManager
|
H A D | binder_manager.cpp | 22 BinderManager *BinderManager::instance_ = NULL; member in class:wpa_supplicant_binder::BinderManager 27 if (!instance_) 28 instance_ = new BinderManager(); 29 return instance_; 35 if (instance_) 36 delete instance_; 37 instance_ = NULL;
|
/external/webrtc/webrtc/base/ |
H A D | win32window.h | 50 static HINSTANCE instance_; member in class:rtc::Win32Window
|
H A D | referencecountedsingletonfactory.h | 48 scoped_ptr<Interface> instance_; member in class:rtc::ReferenceCountedSingletonFactory 58 ASSERT(instance_.get() != NULL); 63 return instance_.get(); 69 ASSERT(instance_.get() != NULL); 89 : instance_(NULL), 99 return *instance_; 104 return instance_; 111 return instance_; 117 if (instance_) { 118 instance_ 149 Interface* instance_; member in class:rtc::rcsf_ptr [all...] |
H A D | win32window.cc | 22 HINSTANCE Win32Window::instance_ = NULL; member in class:rtc::Win32Window 43 &instance_)) { 52 wcex.hInstance = instance_; 62 x, y, cx, cy, parent, NULL, instance_, this); 72 ::UnregisterClass(MAKEINTATOM(window_class_), instance_); local
|
H A D | messagequeue.cc | 35 MessageQueueManager* MessageQueueManager::instance_ = NULL; member in class:rtc::MessageQueueManager 40 if (!instance_) 41 instance_ = new MessageQueueManager; 42 return instance_; 46 return instance_ != NULL; 72 if (!instance_) return; 95 instance_ = NULL; 103 if (!instance_) return;
|
H A D | messagequeue.h | 60 static MessageQueueManager* instance_; member in class:rtc::MessageQueueManager
|
/external/libchrome/base/power_monitor/ |
H A D | power_monitor_device_source.h | 80 HMODULE instance_; member in class:base::PowerMonitorDeviceSource::PowerMessageWindow
|
/external/libchrome/base/memory/ |
H A D | singleton.h | 237 // instance_ pointer must acquire visibility over the singleton data. 238 subtle::AtomicWord value = subtle::Acquire_Load(&instance_); 244 if (subtle::Acquire_CompareAndSwap(&instance_, 0, 246 // instance_ was NULL and is now kBeingCreatedMarker. Only one thread 251 // Releases the visibility over instance_ to the readers. 252 subtle::Release_Store(&instance_, 262 value = internal::WaitForInstance(&instance_); 272 // created. We should only ever get here with a valid instance_ pointer. 273 Traits::Delete(reinterpret_cast<Type*>(subtle::NoBarrier_Load(&instance_))); 274 instance_ 276 static subtle::AtomicWord instance_; member in class:base::Singleton 280 subtle::AtomicWord Singleton<Type, Traits, DifferentiatingType>::instance_ = 0; member in class:base::Singleton [all...] |
/external/webrtc/webrtc/system_wrappers/include/ |
H A D | data_log_impl.h | 145 static DataLogImpl* instance_; member in class:webrtc::DataLogImpl
|
/external/libbrillo/brillo/ |
H A D | flag_helper.cc | 154 brillo::FlagHelper* instance_ = nullptr; member in namespace:brillo::__anon9094 165 if (!instance_) 166 instance_ = new FlagHelper(); 168 return instance_; 172 delete instance_; 173 instance_ = nullptr;
|
/external/v8/test/cctest/ |
H A D | test-sampler-api.cc | 100 CHECK(!instance_); 101 instance_ = this; 114 instance_ = NULL; 130 instance_->DoCollectSample(); 134 instance_->DoJitCodeEventHandler(event); 193 static SamplingTestHelper* instance_; member in class:__anon18887::SamplingTestHelper 196 SamplingTestHelper* SamplingTestHelper::instance_; member in class:__anon18887::SamplingTestHelper
|
H A D | test-heap-profiler.cc | 1550 CHECK(!instance_); 1551 instance_ = this; 1563 instance_ = NULL; 1568 instance_->AddImplicitReferences(); 1586 static GraphWithImplicitRefs* instance_; member in class:GraphWithImplicitRefs 1590 GraphWithImplicitRefs* GraphWithImplicitRefs::instance_ = NULL; member in class:GraphWithImplicitRefs
|
H A D | test-api.cc | 14254 CHECK(instance_ == NULL); 14255 instance_ = this; 14258 CHECK(instance_ == this); 14259 instance_ = NULL; 14269 CHECK(instance_ != NULL); 14270 instance_->OnJitEvent(event); 14277 CHECK(instance_ != NULL); 14278 instance_->OnEntryHook(function, return_addr_location); 14282 CHECK(instance_ != NULL); 14307 static SetFunctionEntryHookTest* instance_; member in class:SetFunctionEntryHookTest 14309 SetFunctionEntryHookTest* SetFunctionEntryHookTest::instance_ = NULL; member in class:SetFunctionEntryHookTest [all...] |
/external/webrtc/webrtc/system_wrappers/source/ |
H A D | data_log.cc | 28 DataLogImpl* DataLogImpl::instance_ = NULL; member in class:webrtc::DataLogImpl 325 new rtc::PlatformThread(DataLogImpl::Run, instance_, "DataLog")), 342 if (instance_ == NULL) { 343 instance_ = new DataLogImpl(); 344 return instance_->Init(); 346 ++instance_->counter_; 358 return instance_; 363 if (instance_ && instance_->counter_ > 1) { 364 --instance_ [all...] |
/external/pdfium/core/src/fxge/win32/ |
H A D | fx_win32_dwrite.cpp | 68 if (!instance_) { 69 instance_ = new CDwFontFileLoader(); 71 return instance_; 73 static bool IsLoaderInitialized() { return instance_ != NULL; } 78 static IDWriteFontFileLoader* instance_; member in class:final 309 IDWriteFontFileLoader* CDwFontFileLoader::instance_ = NULL; member in class:CDwFontFileLoader 327 instance_ = NULL;
|
/external/v8/src/libsampler/ |
H A D | v8-sampler.cc | 296 static SamplerManager* instance() { return instance_.Pointer(); } 301 static base::LazyInstance<SamplerManager>::type instance_; member in class:v8::sampler::SamplerManager 305 base::LazyInstance<SamplerManager>::type SamplerManager::instance_ = member in class:v8::sampler::SamplerManager
|
/external/v8/src/ |
H A D | utils.h | 497 T instance_; member in class:v8::internal::StaticResource 508 , instance_(&resource->instance_) { 516 instance_ = NULL; 519 T* value() { return instance_; } 520 T* operator -> () { return instance_; } 524 T* instance_; member in class:v8::internal::Access
|
/external/v8/test/cctest/wasm/ |
H A D | wasm-run-utils.h | 74 instance_(&module_), 78 ? new WasmInterpreter(&instance_, &allocator_) 81 instance = &instance_; 240 WasmModuleInstance instance_; member in class:__anon18905::TestingModule
|
/external/v8/src/wasm/ |
H A D | wasm-interpreter.cc | 948 instance_(instance), 1048 WasmModuleInstance* instance_; member in class:v8::internal::wasm::ThreadImpl 1056 WasmModuleInstance* instance() { return instance_; } 1057 const WasmModule* module() { return instance_->module; } 1698 WasmModuleInstance* instance_; member in class:v8::internal::wasm::WasmInterpreterInternals 1703 : instance_(instance), 1704 codemap_(instance_ ? instance_->module : nullptr, zone), 1800 return internals_->instance_->mem_size;
|
/external/libgdx/backends/gdx-backends-gwt/libs/ |
H A D | gwt-dev.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gwt/ com/google/gwt/core/ ... |