Searched refs:K_OBJ_STATIC_ALLOC (Results 1 – 9 of 9) sorted by relevance
/AliOS-Things-master/kernel/rhino/ |
A D | k_buf_queue.c | 62 return buf_queue_create(queue, name, buf, size, max_msg, K_OBJ_STATIC_ALLOC, RINGBUF_TYPE_DYN); in krhino_buf_queue_create() 68 …return buf_queue_create(queue, name, buf, msg_size * msg_num, msg_size, K_OBJ_STATIC_ALLOC, RINGBU… in krhino_fix_buf_queue_create() 87 if (queue->mm_alloc_flag != K_OBJ_STATIC_ALLOC) { in krhino_buf_queue_del()
|
A D | k_event.c | 44 return event_create(event, name, flags, K_OBJ_STATIC_ALLOC); in krhino_event_create() 63 if (event->mm_alloc_flag != K_OBJ_STATIC_ALLOC) { in krhino_event_del()
|
A D | k_sem.c | 48 return sem_create(sem, name, count, K_OBJ_STATIC_ALLOC); in krhino_sem_create() 67 if (sem->mm_alloc_flag != K_OBJ_STATIC_ALLOC) { in krhino_sem_del()
|
A D | k_task.c | 190 autorun, K_OBJ_STATIC_ALLOC, 0, 0, KSCHED_RR); in krhino_task_create() 199 autorun, K_OBJ_STATIC_ALLOC, 0, 0, KSCHED_CFS); in krhino_cfs_task_create() 210 autorun, K_OBJ_STATIC_ALLOC, cpu_num, 1, KSCHED_RR); in krhino_task_cpu_create() 219 autorun, K_OBJ_STATIC_ALLOC, cpu_num, 1, KSCHED_CFS); in krhino_cfs_task_cpu_create() 829 if (task->mm_alloc_flag != K_OBJ_STATIC_ALLOC) { in krhino_task_del()
|
A D | k_mutex.c | 44 return mutex_create(mutex, name, K_OBJ_STATIC_ALLOC); in krhino_mutex_create() 82 if (mutex->mm_alloc_flag != K_OBJ_STATIC_ALLOC) { in krhino_mutex_del()
|
A D | k_queue.c | 63 return queue_create(queue, name, start, msg_num, K_OBJ_STATIC_ALLOC); in krhino_queue_create() 82 if (queue->mm_alloc_flag != K_OBJ_STATIC_ALLOC) { in krhino_queue_del()
|
A D | k_timer.c | 90 return timer_create(timer, name, cb, first, round, arg, auto_run, K_OBJ_STATIC_ALLOC); in krhino_timer_create() 306 if (timer->mm_alloc_flag != K_OBJ_STATIC_ALLOC) { in cmd_proc()
|
/AliOS-Things-master/components/drivers/core/base/include/drivers/ |
A D | mutex.h | 130 .mm_alloc_flag = K_OBJ_STATIC_ALLOC, \
|
/AliOS-Things-master/kernel/rhino/include/ |
A D | k_internal.h | 105 #define K_OBJ_STATIC_ALLOC 1u macro
|
Completed in 10 milliseconds