Home
last modified time | relevance | path

Searched refs:NativeHandle (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/base/platform/
Dmutex.h57 typedef pthread_mutex_t NativeHandle; typedef
59 typedef CRITICAL_SECTION NativeHandle; typedef
62 NativeHandle& native_handle() { in native_handle()
65 const NativeHandle& native_handle() const { in native_handle()
70 NativeHandle native_handle_;
155 typedef Mutex::NativeHandle NativeHandle; typedef
157 NativeHandle& native_handle() { in native_handle()
160 const NativeHandle& native_handle() const { in native_handle()
165 NativeHandle native_handle_;
Dcondition-variable.h63 typedef pthread_cond_t NativeHandle; typedef
66 class NativeHandle final {
68 NativeHandle() : waitlist_(NULL), freelist_(NULL) {} in NativeHandle() function
69 ~NativeHandle();
82 DISALLOW_COPY_AND_ASSIGN(NativeHandle);
86 NativeHandle& native_handle() { in native_handle()
89 const NativeHandle& native_handle() const { in native_handle()
94 NativeHandle native_handle_;
Dsemaphore.h53 typedef semaphore_t NativeHandle; typedef
55 typedef sem_t NativeHandle; typedef
57 typedef HANDLE NativeHandle; typedef
60 NativeHandle& native_handle() { in native_handle()
63 const NativeHandle& native_handle() const { in native_handle()
68 NativeHandle native_handle_;
Dcondition-variable.cc135 ConditionVariable::NativeHandle::~NativeHandle() {
146 ConditionVariable::Event* ConditionVariable::NativeHandle::Pre() {
174 void ConditionVariable::NativeHandle::Post(Event* event, bool result) {
/external/libchrome/base/synchronization/
Dlock_impl.h27 typedef CRITICAL_SECTION NativeHandle; typedef
29 typedef pthread_mutex_t NativeHandle;
49 NativeHandle* native_handle() { return &native_handle_; } in native_handle()
52 NativeHandle native_handle_;