/AliOS-Things-master/components/py_engine/tests/extmod/ |
A D | uasyncio_event_fair.py.exp | 2 wait 2 4 wait 3 7 wait 2 10 wait 3 13 wait 2 14 wait 3 15 wait 2 16 wait 3
|
A D | uasyncio_wait_for_fwd.py.exp | 4 cancel wait() 11 cancel wait() 18 cancel wait() 24 cancel wait()
|
A D | uasyncio_event.py | 15 print(await ev.wait()) 84 await asyncio.wait_for(ev.wait(), 0.1) 92 await asyncio.wait_for(ev.wait(), 0.01) 95 await ev.wait()
|
A D | uasyncio_wait_for_fwd.py | 32 async def wait(): function 49 t = asyncio.create_task(wait())
|
A D | uasyncio_cancel_task.py.exp | 13 main wait
|
A D | uasyncio_event_fair.py | 25 await ev.wait()
|
/AliOS-Things-master/components/py_engine/tests/basics/ |
A D | async_await2.py.exp | 1 wait value: 1 2 return from send: message from wait(1) 3 wait got back: message from main
|
A D | async_await2.py | 15 def wait(value): function 22 x = await wait(1)**2
|
/AliOS-Things-master/components/drivers/peripheral/i2c/example/ |
A D | i2c_example.c | 164 uint32_t wait = argc > 6 ? atoi(argv[6]) : 50; // wait time during successive i2c tx in i2c_write_test() local 175 ret = aos_i2c_test(port, slave_addr, tx_buffer, number, NULL, 0, loop, wait); in i2c_write_test() 196 uint32_t wait = argc > 5 ? atoi(argv[5]) : 50; // wait time during successive i2c rx in i2c_read_test() local 206 ret = aos_i2c_test(port, slave_addr, NULL, 0, rx_buffer, number, loop, wait); in i2c_read_test() 288 uint32_t wait = argc > 6 ? atoi(argv[6]) : 50; // wait time during successive i2c rx in i2c_mem_read_test() local 297 ret = aos_i2c_mem_test(port, slave_addr, addr, 1, NULL, 0, rx_buffer, number, loop, wait); in i2c_mem_read_test() 323 uint32_t wait = argc > 7 ? atoi(argv[7]) : 50; // wait time during successive i2c tx in i2c_mem_write_test() local 332 ret = aos_i2c_mem_test(port, slave_addr, addr, 1, tx_buffer, number, NULL, 0, loop, wait); in i2c_mem_write_test()
|
/AliOS-Things-master/components/py_engine/engine/extmod/uasyncio/ |
A D | event.py | 26 async def wait(self): member in Event 55 async def wait(self): member in ThreadSafeFlag
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/mbed/api/ |
A D | wait_api.h | 48 void wait(float s);
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/utils/xyzmodem/ |
A D | xyzmodem.h | 10 int xmodem_start_xfer(uint32_t wait);
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/mbed/targets/hal/rtl8721d/ |
A D | wait_api.c | 22 void wait(float s) in wait() function
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/ruy/ |
A D | wait.cc | 41 condvar->wait(lock, condition); in Wait()
|
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | modthread.c | 66 bool wait = true; in thread_lock_acquire() local 68 wait = mp_obj_get_int(args[1]); in thread_lock_acquire() 72 int ret = mp_thread_mutex_lock(&self->mutex, wait); in thread_lock_acquire()
|
A D | mpthread.h | 47 int mp_thread_mutex_lock(mp_thread_mutex_t *mutex, int wait);
|
/AliOS-Things-master/components/cplusplus/include/ |
A D | cpp_semaphore.h | 44 kstat_t wait(uint32_t millisec);
|
/AliOS-Things-master/components/py_engine/adapter/haas510/ |
A D | mpthreadport.c | 187 int mp_thread_mutex_lock(mp_thread_mutex_t *mutex, int wait) { in mp_thread_mutex_lock() argument 193 return mp_sal_mutex_lock(&(mutex->k_mutex), wait ? AOS_WAIT_FOREVER : 0); in mp_thread_mutex_lock()
|
/AliOS-Things-master/components/py_engine/adapter/haas600/ |
A D | mpthreadport.c | 187 int mp_thread_mutex_lock(mp_thread_mutex_t *mutex, int wait) { in mp_thread_mutex_lock() argument 193 return mp_sal_mutex_lock(&(mutex->k_mutex), wait ? AOS_WAIT_FOREVER : 0); in mp_thread_mutex_lock()
|
/AliOS-Things-master/components/cplusplus/example/cpp_aos/ |
A D | semaphore_test.cpp | 24 mySem->wait(0xFFFFFFFF); in demo_task1()
|
/AliOS-Things-master/components/cplusplus/ |
A D | semaphore.cpp | 35 kstat_t Semaphore::wait(uint32_t millisec) in wait() function in Semaphore
|
/AliOS-Things-master/components/cplusplus/example/cpp_standard/ |
A D | condition_variable_test.cpp | 29 cond_var.wait(lck); in task0_entry()
|
/AliOS-Things-master/components/py_engine/tests/multi_net/ |
A D | uasyncio_tcp_close_write.py | 39 await asyncio.wait_for(ev.wait(), 5)
|
A D | uasyncio_tcp_server_client.py | 39 await asyncio.wait_for(ev.wait(), 10)
|
/AliOS-Things-master/components/py_engine/adapter/haas/ |
A D | mpthreadport.c | 209 int mp_thread_mutex_lock(mp_thread_mutex_t *mutex, int wait) in mp_thread_mutex_lock() argument 216 int status = aos_mutex_lock(&(mutex->k_mutex), wait ? AOS_WAIT_FOREVER : 0); in mp_thread_mutex_lock()
|