Searched refs:pp_handle (Results 1 – 9 of 9) sorted by relevance
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/bluetooth/realtek/sdk/board/common/os/freertos_v10.0.1_IAR/ |
A D | osif_freertos.c | 94 if (pp_handle == NULL) in osif_task_create() 155 if (pp_handle == NULL) in osif_task_handle_get() 352 if (pp_handle == NULL) in osif_sem_create() 454 if (pp_handle == NULL) in osif_mutex_create() 793 if (pp_handle == NULL || *pp_handle == NULL) in osif_timer_id_get() 843 if (pp_handle == NULL || *pp_handle == NULL) in osif_timer_start() 879 if (pp_handle == NULL || *pp_handle == NULL) in osif_timer_restart() 916 if (pp_handle == NULL || *pp_handle == NULL) in osif_timer_stop() 949 if (pp_handle == NULL || *pp_handle == NULL) in osif_timer_delete() 959 *pp_handle = NULL; in osif_timer_delete() [all …]
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/bluetooth/realtek/sdk/board/common/os/freertos_v8.1.2/ |
A D | osif_freertos.c | 94 if (pp_handle == NULL) in osif_task_create() 155 if (pp_handle == NULL) in osif_task_handle_get() 354 if (pp_handle == NULL) in osif_sem_create() 456 if (pp_handle == NULL) in osif_mutex_create() 797 if (pp_handle == NULL || *pp_handle == NULL) in osif_timer_id_get() 847 if (pp_handle == NULL || *pp_handle == NULL) in osif_timer_start() 883 if (pp_handle == NULL || *pp_handle == NULL) in osif_timer_restart() 920 if (pp_handle == NULL || *pp_handle == NULL) in osif_timer_stop() 953 if (pp_handle == NULL || *pp_handle == NULL) in osif_timer_delete() 963 *pp_handle = NULL; in osif_timer_delete() [all …]
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/bluetooth/realtek/sdk/board/common/inc/ |
A D | osif.h | 29 bool osif_task_create(void **pp_handle, const char *p_name, void (*p_routine)(void *), 35 bool osif_task_handle_get(void **pp_handle); 47 bool osif_sem_create(void **pp_handle, uint32_t init_count, uint32_t max_count); 51 bool osif_mutex_create(void **pp_handle); 57 bool osif_msg_queue_create(void **pp_handle, uint32_t msg_num, uint32_t msg_size); 72 bool osif_timer_id_get(void **pp_handle, uint32_t *p_timer_id); 75 bool osif_timer_start(void **pp_handle); 76 bool osif_timer_restart(void **pp_handle, uint32_t interval_ms); 77 bool osif_timer_stop(void **pp_handle); 78 bool osif_timer_delete(void **pp_handle); [all …]
|
A D | osif_customer.h | 28 bool os_sem_create(void **pp_handle, uint32_t init_count, uint32_t max_count);
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/bluetooth/realtek/sdk/inc/os/ |
A D | os_timer.h | 92 bool os_timer_id_get(void **pp_handle, uint32_t *p_timer_id); 166 bool os_timer_create(void **pp_handle, const char *p_timer_name, uint32_t timer_id, 225 bool os_timer_start(void **pp_handle); 287 bool os_timer_restart(void **pp_handle, uint32_t interval_ms); 347 bool os_timer_stop(void **pp_handle); 403 bool os_timer_delete(void **pp_handle); 499 bool os_timer_state_get(void **pp_handle, uint32_t *p_timer_state);
|
A D | os_msg.h | 32 bool os_msg_queue_create_intern(void **pp_handle, uint32_t msg_num, uint32_t msg_size, 103 #define os_msg_queue_create(pp_handle, msg_num, msg_size) \ argument 104 os_msg_queue_create_intern(pp_handle, msg_num, msg_size, __func__, __LINE__)
|
A D | os_sync.h | 141 bool os_sem_create(void **pp_handle, uint32_t init_count, uint32_t max_count); 312 bool os_mutex_create(void **pp_handle);
|
A D | os_task.h | 100 bool os_task_create(void **pp_handle, const char *p_name, void (*p_routine)(void *), 333 bool os_task_handle_get(void **pp_handle);
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/bluetooth/realtek/sdk/board/common/os/ |
A D | osif_customer.c | 58 bool os_msg_queue_create_intern(void **pp_handle, uint32_t msg_num, uint32_t msg_size, in os_msg_queue_create_intern() argument 78 *pp_handle = desc; in os_msg_queue_create_intern() 121 bool os_task_create(void **pp_handle, const char *p_name, void (*p_routine)(void *), in os_task_create() argument 125 …ret = aos_task_new_ext((aos_task_t*)pp_handle, p_name, p_routine, p_param, stack_size * 4, AOS_DEF… in os_task_create() 156 bool os_sem_create(void **pp_handle, uint32_t init_count, uint32_t max_count) in os_sem_create() argument 160 *pp_handle = aos_sema; in os_sem_create()
|
Completed in 13 milliseconds