Searched defs:OnceType (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/leveldatabase/src/port/
H A Dport_example.h65 // static port::OnceType init_control = LEVELDB_ONCE_INIT;
69 typedef intptr_t OnceType; typedef in namespace:leveldb::port
71 extern void InitOnce(port::OnceType*, void (*initializer)());
H A Dport_posix.h115 typedef pthread_once_t OnceType; typedef in namespace:leveldb::port
117 extern void InitOnce(OnceType* once, void (*initializer)());
/external/chromium_org/v8/src/
H A Donce.h36 // * A type called OnceType.
38 // OnceType.
39 // * A function CallOnce(OnceType* once, void (*init_func)()).
40 // This function, when invoked multiple times given the same OnceType object,
46 // initialize a OnceType. This is only useful when clients embed a OnceType
51 // * This implementation guarantees that OnceType is a POD (i.e. no static
83 typedef AtomicWord OnceType; typedef in namespace:v8::internal
87 #define V8_DECLARE_ONCE(NAME) ::v8::internal::OnceType NAME
103 void CallOnceImpl(OnceType* onc
[all...]
/external/v8/src/
H A Donce.h36 // * A type called OnceType.
38 // OnceType.
39 // * A function CallOnce(OnceType* once, void (*init_func)()).
40 // This function, when invoked multiple times given the same OnceType object,
46 // initialize a OnceType. This is only useful when clients embed a OnceType
51 // * This implementation guarantees that OnceType is a POD (i.e. no static
83 typedef AtomicWord OnceType; typedef in namespace:v8::internal
87 #define V8_DECLARE_ONCE(NAME) ::v8::internal::OnceType NAME
103 void CallOnceImpl(OnceType* onc
[all...]
/external/chromium_org/third_party/leveldatabase/port/
H A Dport_chromium.h87 // Implementation of OnceType and InitOnce() pair, this is equivalent to
89 typedef ::base::subtle::Atomic32 OnceType; typedef in namespace:leveldb::port
100 void InitOnceImpl(OnceType* once, void (*initializer)());
102 static inline void InitOnce(OnceType* once, void (*initializer)()) {

Completed in 175 milliseconds