Home
last modified time | relevance | path

Searched refs:this_thread (Results 1 – 9 of 9) sorted by relevance

/AliOS-Things-master/components/SDL2/src/thread/generic/
A DSDL_sysmutex.c78 SDL_threadID this_thread; in SDL_LockMutex()
84 this_thread = SDL_ThreadID(); in SDL_LockMutex()
85 if (mutex->owner == this_thread) { in SDL_LockMutex()
93 mutex->owner = this_thread; in SDL_LockMutex()
109 SDL_threadID this_thread; in SDL_TryLockMutex()
115 this_thread = SDL_ThreadID(); in SDL_TryLockMutex()
116 if (mutex->owner == this_thread) { in SDL_TryLockMutex()
125 mutex->owner = this_thread; in SDL_TryLockMutex()
/AliOS-Things-master/components/SDL2/src/thread/pthread/
A DSDL_sysmutex.c84 pthread_t this_thread; in SDL_LockMutex() local
92 this_thread = pthread_self(); in SDL_LockMutex()
93 if (mutex->owner == this_thread) { in SDL_LockMutex()
101 mutex->owner = this_thread; in SDL_LockMutex()
121 pthread_t this_thread; in SDL_TryLockMutex() local
130 this_thread = pthread_self(); in SDL_TryLockMutex()
131 if (mutex->owner == this_thread) { in SDL_TryLockMutex()
140 mutex->owner = this_thread; in SDL_TryLockMutex()
/AliOS-Things-master/components/SDL2/src/thread/psp/
A DSDL_sysmutex.c80 SDL_threadID this_thread; in SDL_mutexP()
86 this_thread = SDL_ThreadID(); in SDL_mutexP()
87 if (mutex->owner == this_thread) { in SDL_mutexP()
95 mutex->owner = this_thread; in SDL_mutexP()
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/ruy/profiler/
A Dtest.cc93 std::this_thread::sleep_for(std::chrono::milliseconds(1000)); in TEST()
95 std::this_thread::sleep_for(std::chrono::milliseconds(1000)); in TEST()
142 std::this_thread::sleep_for(std::chrono::milliseconds(1000)); in TEST()
149 std::this_thread::sleep_for(std::chrono::milliseconds(1000)); in TEST()
A Dprofiler.cc65 std::this_thread::sleep_for(std::chrono::milliseconds(1)); in ThreadFunc()
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/ruy/
A Dtune_test.cc33 std::this_thread::sleep_for(std::chrono::seconds(1)); in TEST()
43 std::this_thread::sleep_for(std::chrono::seconds(1)); in TEST()
A Dwait_test.cc77 std::this_thread::sleep_for(delay); in WaitTest()
/AliOS-Things-master/components/oss/src/utils/
A DThreadExecutor.cc53 detach(std::this_thread::get_id()); in execute()
A DLogUtils.cc61 ss << "[" << std::this_thread::get_id() << "]"; in LogPrefix()

Completed in 11 milliseconds