Home
last modified time | relevance | path

Searched refs:wait (Results 1 – 25 of 60) sorted by relevance

123

/AliOS-Things-master/components/py_engine/tests/extmod/
A Duasyncio_event_fair.py.exp2 wait 2
4 wait 3
7 wait 2
10 wait 3
13 wait 2
14 wait 3
15 wait 2
16 wait 3
A Duasyncio_wait_for_fwd.py.exp4 cancel wait()
11 cancel wait()
18 cancel wait()
24 cancel wait()
A Duasyncio_event.py15 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 Duasyncio_wait_for_fwd.py32 async def wait(): function
49 t = asyncio.create_task(wait())
A Duasyncio_cancel_task.py.exp13 main wait
A Duasyncio_event_fair.py25 await ev.wait()
/AliOS-Things-master/components/py_engine/tests/basics/
A Dasync_await2.py.exp1 wait value: 1
2 return from send: message from wait(1)
3 wait got back: message from main
A Dasync_await2.py15 def wait(value): function
22 x = await wait(1)**2
/AliOS-Things-master/components/drivers/peripheral/i2c/example/
A Di2c_example.c164 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 Devent.py26 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 Dwait_api.h48 void wait(float s);
/AliOS-Things-master/hardware/chip/haas1000/drivers/utils/xyzmodem/
A Dxyzmodem.h10 int xmodem_start_xfer(uint32_t wait);
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/mbed/targets/hal/rtl8721d/
A Dwait_api.c22 void wait(float s) in wait() function
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/ruy/
A Dwait.cc41 condvar->wait(lock, condition); in Wait()
/AliOS-Things-master/components/py_engine/engine/py/
A Dmodthread.c66 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 Dmpthread.h47 int mp_thread_mutex_lock(mp_thread_mutex_t *mutex, int wait);
/AliOS-Things-master/components/cplusplus/include/
A Dcpp_semaphore.h44 kstat_t wait(uint32_t millisec);
/AliOS-Things-master/components/py_engine/adapter/haas510/
A Dmpthreadport.c187 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 Dmpthreadport.c187 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 Dsemaphore_test.cpp24 mySem->wait(0xFFFFFFFF); in demo_task1()
/AliOS-Things-master/components/cplusplus/
A Dsemaphore.cpp35 kstat_t Semaphore::wait(uint32_t millisec) in wait() function in Semaphore
/AliOS-Things-master/components/cplusplus/example/cpp_standard/
A Dcondition_variable_test.cpp29 cond_var.wait(lck); in task0_entry()
/AliOS-Things-master/components/py_engine/tests/multi_net/
A Duasyncio_tcp_close_write.py39 await asyncio.wait_for(ev.wait(), 5)
A Duasyncio_tcp_server_client.py39 await asyncio.wait_for(ev.wait(), 10)
/AliOS-Things-master/components/py_engine/adapter/haas/
A Dmpthreadport.c209 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()

Completed in 13 milliseconds

123