Searched refs:mp (Results 1 – 8 of 8) sorted by relevance
| /components/lwp/terminal/ |
| A D | bsd_porting.h | 167 #define cv_wait(cvp, mp) \ argument 168 rt_condvar_timedwait(cvp, mp, RT_KILLABLE, RT_WAITING_FOREVER) 169 #define cv_wait_sig(cvp, mp) \ argument 170 rt_condvar_timedwait(cvp, mp, RT_INTERRUPTIBLE, RT_WAITING_FOREVER) 173 #define cv_timedwait(cvp, mp, t) rt_condvar_timedwait(cvp, mp, RT_KILLABLE, t) argument 174 #define cv_timedwait_sig(cvp, mp, t) \ argument 175 rt_condvar_timedwait(cvp, mp, RT_INTERRUPTIBLE, t)
|
| /components/finsh/ |
| A D | cmd.c | 709 struct rt_mempool *mp; in list_mempool() local 723 mp = (struct rt_mempool *)obj; in list_mempool() 726 rt_list_for_each(node, &mp->suspend_thread) in list_mempool() 735 mp->parent.name, in list_mempool() 736 mp->block_size, in list_mempool() 737 mp->block_total_count, in list_mempool() 738 mp->block_free_count, in list_mempool() 747 mp->parent.name, in list_mempool() 748 mp->block_size, in list_mempool() 749 mp->block_total_count, in list_mempool() [all …]
|
| /components/drivers/include/drivers/ |
| A D | dev_audio.h | 232 struct rt_mempool *mp; /**< Memory pool for audio replay */ member
|
| A D | nvme.h | 531 rt_le16_t mp; /* Maximum Power */
|
| /components/drivers/audio/ |
| A D | dev_audio.c | 308 …replay->mp = rt_mp_create("adu_mp", RT_AUDIO_REPLAY_MP_BLOCK_COUNT, RT_AUDIO_REPLAY_MP_BLOCK_SIZE); in _audio_dev_init() 309 if (replay->mp == RT_NULL) in _audio_dev_init() 514 audio->replay->write_data = rt_mp_alloc(audio->replay->mp, RT_WAITING_FOREVER); in _audio_dev_write()
|
| /components/net/lwip/lwip-1.4.1/src/netif/ppp/ |
| A D | ppp_oe.c | 1084 pppoe_ifattach_hook(void *arg, struct pbuf **mp, struct netif *ifp, int dir) 1089 if (mp != (struct pbuf **)PFIL_IFNET_DETACH) {
|
| /components/net/lwip/lwip-2.1.2/src/netif/ppp/ |
| A D | pppoe.c | 1162 pppoe_ifattach_hook(void *arg, struct pbuf **mp, struct netif *ifp, int dir) 1167 if (mp != (struct pbuf **)PFIL_IFNET_DETACH) {
|
| /components/net/lwip/lwip-2.0.3/src/netif/ppp/ |
| A D | pppoe.c | 1152 pppoe_ifattach_hook(void *arg, struct pbuf **mp, struct netif *ifp, int dir) 1157 if (mp != (struct pbuf **)PFIL_IFNET_DETACH) {
|
Completed in 19 milliseconds