HomeSort by relevance Sort by last modified time
    Searched refs:OnceType (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/v8/src/base/
once.h 13 // * A type called OnceType.
15 // OnceType.
16 // * A function CallOnce(OnceType* once, void (*init_func)()).
17 // This function, when invoked multiple times given the same OnceType object,
23 // initialize a OnceType. This is only useful when clients embed a OnceType
28 // * This implementation guarantees that OnceType is a POD (i.e. no static
60 typedef AtomicWord OnceType;
64 #define V8_DECLARE_ONCE(NAME) ::v8::base::OnceType NAME
80 void CallOnceImpl(OnceType* once, PointerArgFunction init_func, void* arg)
    [all...]
once.cc 18 void CallOnceImpl(OnceType* once, PointerArgFunction init_func, void* arg) {
lazy-instance.h 147 static void Init(OnceType* once, Function function, Storage storage) {
156 static void Init(OnceType* once, Function function, Storage storage) {
197 mutable OnceType once_;
198 // Note that the previous field, OnceType, is an AtomicWord which guarantees
  /external/chromium_org/third_party/leveldatabase/src/port/
port_example.h 65 // static port::OnceType init_control = LEVELDB_ONCE_INIT;
69 typedef intptr_t OnceType;
71 extern void InitOnce(port::OnceType*, void (*initializer)());
port_posix.cc 49 void InitOnce(OnceType* once, void (*initializer)()) {
port_posix.h 115 typedef pthread_once_t OnceType;
117 extern void InitOnce(OnceType* once, void (*initializer)());
  /external/chromium_org/third_party/leveldatabase/port/
port_chromium.h 87 // Implementation of OnceType and InitOnce() pair, this is equivalent to
89 typedef ::base::subtle::Atomic32 OnceType;
100 void InitOnceImpl(OnceType* once, void (*initializer)());
102 static inline void InitOnce(OnceType* once, void (*initializer)()) {
port_chromium.cc 53 void InitOnceImpl(OnceType* once, void (*initializer)()) {
54 OnceType state = ::base::subtle::Acquire_Load(once);
  /external/chromium_org/third_party/leveldatabase/src/util/
comparator.cc 69 static port::OnceType once = LEVELDB_ONCE_INIT;
  /external/chromium_org/v8/src/
builtins.cc     [all...]

Completed in 835 milliseconds