Searched refs:start_event (Results 1 – 7 of 7) sorted by relevance
/external/autotest/server/cros/ |
D | stress_unittest.py | 87 start_event = threading.Event() 91 if start_event.is_set(): 93 start_event.set() 104 self.assertTrue(start_event.is_set(),
|
/external/libchrome/base/message_loop/ |
D | message_loop_perftest.cc | 50 static std::unique_ptr<PostingThread> Create(WaitableEvent* start_event, in Create() argument 53 WrapUnique(new PostingThread(start_event, std::move(action))); in Create() 92 PostingThread(WaitableEvent* start_event, std::unique_ptr<Action> delegate) in PostingThread() argument 93 : start_event_(start_event), in PostingThread()
|
/external/tensorflow/tensorflow/core/platform/default/ |
D | device_tracer.cc | 79 CUevent start_event; member 90 CUevent start_event; member 114 LogIfError(CreateAndRecordEvent(&record.start_event, stream)); in StartKernel() 133 LogIfError(CreateAndRecordEvent(&record.start_event, stream)); in StartMemcpy() 601 if (!record.start_event || !record.stop_event) { in SaveRecord() 607 GetElasedTimeUs(record.start_event, stream_info.ctx_info->end_event); in SaveRecord() 608 auto elapsed_us = GetElasedTimeUs(record.start_event, record.stop_event); in SaveRecord() 626 if (!record.start_event || !record.stop_event) { in SaveRecord() 632 GetElasedTimeUs(record.start_event, stream_info.ctx_info->end_event); in SaveRecord() 633 auto elapsed_us = GetElasedTimeUs(record.start_event, record.stop_event); in SaveRecord()
|
/external/webrtc/webrtc/call/ |
D | rtc_event_log.cc | 249 rtclog::Event start_event; 250 start_event.set_timestamp_us(start_time_us_); 251 start_event.set_type(rtclog::Event::LOG_START); 252 StoreToFile(&start_event);
|
/external/python/cpython2/Modules/ |
D | _testcapimodule.c | 2342 PyThread_type_lock start_event; member 2354 PyThread_release_lock(test_c_thread->start_event); in temporary_c_thread() 2386 test_c_thread.start_event = PyThread_allocate_lock(); in call_in_temporary_c_thread() 2389 if (!test_c_thread.start_event || !test_c_thread.exit_event) { in call_in_temporary_c_thread() 2397 PyThread_acquire_lock(test_c_thread.start_event, 1); in call_in_temporary_c_thread() 2403 PyThread_release_lock(test_c_thread.start_event); in call_in_temporary_c_thread() 2408 PyThread_acquire_lock(test_c_thread.start_event, 1); in call_in_temporary_c_thread() 2409 PyThread_release_lock(test_c_thread.start_event); in call_in_temporary_c_thread() 2421 if (test_c_thread.start_event) in call_in_temporary_c_thread() 2422 PyThread_free_lock(test_c_thread.start_event); in call_in_temporary_c_thread()
|
/external/sonivox/jet_tools/JetCreator/ |
D | midifile.py | 1187 start_event = self.events.SeekEvent(start) 1188 if start_event is not None: 1192 controllers = self.events.ChaseControllers(self.events[start_event].seq) 1196 self.events.InsertEvents(controller_events, start_event) 1199 midi_file_logger.debug('Trim: deleting events up to event %d' % start_event) 1201 self.events.DeleteEvents(None, start_event, None) 1203 self.events.DeleteEvents(None, start_event, start)
|
/external/python/cpython3/Modules/ |
D | _testcapimodule.c | 3748 PyThread_type_lock start_event; member 3760 PyThread_release_lock(test_c_thread->start_event); in temporary_c_thread() 3792 test_c_thread.start_event = PyThread_allocate_lock(); in call_in_temporary_c_thread() 3795 if (!test_c_thread.start_event || !test_c_thread.exit_event) { in call_in_temporary_c_thread() 3803 PyThread_acquire_lock(test_c_thread.start_event, 1); in call_in_temporary_c_thread() 3809 PyThread_release_lock(test_c_thread.start_event); in call_in_temporary_c_thread() 3814 PyThread_acquire_lock(test_c_thread.start_event, 1); in call_in_temporary_c_thread() 3815 PyThread_release_lock(test_c_thread.start_event); in call_in_temporary_c_thread() 3827 if (test_c_thread.start_event) in call_in_temporary_c_thread() 3828 PyThread_free_lock(test_c_thread.start_event); in call_in_temporary_c_thread()
|