/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/bluetooth/realtek/sdk/board/common/os/freertos_v8.1.2/ |
A D | osif_freertos.c | 114 bool osif_task_delete(void *p_handle) in osif_task_delete() argument 133 bool osif_task_resume(void *p_handle) in osif_task_resume() argument 219 (void)p_handle; in osif_task_signal_send() 250 (void)p_handle; in osif_task_signal_recv() 373 bool osif_sem_delete(void *p_handle) in osif_sem_delete() argument 424 bool osif_sem_give(void *p_handle) in osif_sem_give() argument 561 if (p_handle == NULL) in osif_msg_queue_delete() 575 if (p_handle == NULL) in osif_msg_queue_peek() 598 if (p_handle == NULL) in osif_msg_send() 642 if (p_handle == NULL) in osif_msg_recv() [all …]
|
/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 | 114 bool osif_task_delete(void *p_handle) in osif_task_delete() argument 124 bool osif_task_suspend(void *p_handle) in osif_task_suspend() argument 133 bool osif_task_resume(void *p_handle) in osif_task_resume() argument 371 bool osif_sem_delete(void *p_handle) in osif_sem_delete() argument 422 bool osif_sem_give(void *p_handle) in osif_sem_give() argument 518 bool osif_mutex_give(void *p_handle) in osif_mutex_give() argument 560 if (p_handle == NULL) in osif_msg_queue_delete() 574 if (p_handle == NULL) in osif_msg_queue_peek() 597 if (p_handle == NULL) in osif_msg_send() 641 if (p_handle == NULL) in osif_msg_recv() [all …]
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/bluetooth/realtek/sdk/inc/os/ |
A D | os_msg.h | 37 bool os_msg_queue_peek_intern(void *p_handle, uint32_t *p_msg_num, 40 bool os_msg_send_intern(void *p_handle, void *p_msg, uint32_t wait_ms, 43 bool os_msg_recv_intern(void *p_handle, void *p_msg, uint32_t wait_ms, 46 bool os_msg_peek_intern(void *p_handle, void *p_msg, uint32_t wait_ms, 152 #define os_msg_queue_delete(p_handle) \ argument 153 os_msg_queue_delete_intern(p_handle, __func__, __LINE__) 203 #define os_msg_queue_peek(p_handle, p_msg_num) \ argument 264 #define os_msg_send(p_handle, p_msg, wait_ms) \ argument 265 os_msg_send_intern(p_handle, p_msg, wait_ms, __func__, __LINE__) 344 #define os_msg_recv(p_handle, p_msg, wait_ms) \ argument [all …]
|
A D | os_task.h | 152 bool os_task_delete(void *p_handle); 203 bool os_task_suspend(void *p_handle); 255 bool os_task_resume(void *p_handle); 376 bool os_task_priority_get(void *p_handle, uint16_t *p_priority); 423 bool os_task_priority_set(void *p_handle, uint16_t priority); 473 bool os_task_signal_send(void *p_handle, uint32_t signal); 550 bool os_task_signal_clear(void *p_handle);
|
A D | os_sync.h | 180 bool os_sem_delete(void *p_handle); 231 bool os_sem_take(void *p_handle, uint32_t wait_ms); 273 bool os_sem_give(void *p_handle); 351 bool os_mutex_delete(void *p_handle); 413 bool os_mutex_take(void *p_handle, uint32_t wait_ms); 469 bool os_mutex_give(void *p_handle);
|
A D | os_pool.h | 44 bool os_pool_create_intern(uint8_t *p_handle, RAM_TYPE ram_type, uint16_t buf_size, 105 #define os_pool_create(p_handle, ram_type, buf_size, buf_count) \ argument 106 os_pool_create_intern(p_handle, ram_type, buf_size, buf_count, __func__, __LINE__)
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/bluetooth/realtek/sdk/board/common/inc/ |
A D | osif.h | 31 bool osif_task_delete(void *p_handle); 32 bool osif_task_suspend(void *p_handle); 33 bool osif_task_resume(void *p_handle); 42 bool osif_task_signal_clear(void *p_handle); 48 bool osif_sem_delete(void *p_handle); 49 bool osif_sem_take(void *p_handle, uint32_t wait_ms); 50 bool osif_sem_give(void *p_handle); 52 bool osif_mutex_delete(void *p_handle); 53 bool osif_mutex_take(void *p_handle, uint32_t wait_ms); 54 bool osif_mutex_give(void *p_handle); [all …]
|
A D | osif_customer.h | 30 bool os_sem_delete(void *p_handle); 32 bool os_sem_take(void *p_handle, uint32_t wait_ms); 34 bool os_sem_give(void *p_handle);
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/bluetooth/realtek/sdk/board/common/os/ |
A D | osif_customer.c | 85 xqueue_desc *desc = (xqueue_desc *)p_handle; in os_msg_queue_delete_intern() 140 bool os_task_delete(void *p_handle) in os_task_delete() argument 143 ret = aos_task_delete(&p_handle); in os_task_delete() 166 bool os_sem_delete(void *p_handle) in os_sem_delete() argument 168 if (p_handle != NULL) { in os_sem_delete() 169 aos_sem_free(p_handle); in os_sem_delete() 170 aos_free(p_handle); in os_sem_delete() 173 p_handle = NULL; in os_sem_delete() 183 if (aos_sem_wait(p_handle, wait_ms) == 0) in os_sem_take() 189 bool os_sem_give(void *p_handle) in os_sem_give() argument [all …]
|
/AliOS-Things-master/components/linksdk/components/shadow/ |
A D | aiot_shadow_api.c | 413 int32_t aiot_shadow_deinit(void **p_handle) in aiot_shadow_deinit() argument 419 if (NULL == p_handle || NULL == *p_handle) { in aiot_shadow_deinit() 423 shadow_handle = *p_handle; in aiot_shadow_deinit() 425 *p_handle = NULL; in aiot_shadow_deinit()
|
/AliOS-Things-master/components/linksdk/components/logpost/ |
A D | aiot_logpost_api.c | 427 int32_t aiot_logpost_deinit(void **p_handle) in aiot_logpost_deinit() argument 434 if (NULL == p_handle || NULL == *p_handle) { in aiot_logpost_deinit() 438 logpost_handle = *p_handle; in aiot_logpost_deinit() 440 *p_handle = NULL; in aiot_logpost_deinit()
|
/AliOS-Things-master/components/linksdk/core/ |
A D | aiot_http_api.c | 528 int32_t aiot_http_deinit(void **p_handle) in aiot_http_deinit() argument 533 if (p_handle == NULL || *p_handle == NULL) { in aiot_http_deinit() 537 http_handle = *(core_http_handle_t **)p_handle; in aiot_http_deinit() 572 core_http_deinit(p_handle); in aiot_http_deinit()
|
A D | aiot_http_api.h | 465 int32_t aiot_http_deinit(void **p_handle);
|
/AliOS-Things-master/components/linksdk/core/utils/ |
A D | core_http.c | 610 int32_t core_http_deinit(void **p_handle) in core_http_deinit() argument 615 if (p_handle == NULL || *p_handle == NULL) { in core_http_deinit() 619 http_handle = *(core_http_handle_t **)p_handle; in core_http_deinit() 655 *p_handle = NULL; in core_http_deinit()
|
A D | core_http.h | 184 int32_t core_http_deinit(void **p_handle);
|
/AliOS-Things-master/components/linksdk/components/task/ |
A D | aiot_task_api.c | 733 int32_t aiot_task_deinit(void **p_handle) in aiot_task_deinit() argument 739 if (NULL == p_handle || NULL == *p_handle) { in aiot_task_deinit() 743 task_handle = *p_handle; in aiot_task_deinit() 745 *p_handle = NULL; in aiot_task_deinit()
|
/AliOS-Things-master/components/linksdk/components/data-model/ |
A D | aiot_dm_api.h | 673 int32_t aiot_dm_deinit(void **p_handle);
|
A D | aiot_dm_api.c | 812 int32_t aiot_dm_deinit(void **p_handle) in aiot_dm_deinit() argument 818 if (NULL == p_handle || NULL == *p_handle) { in aiot_dm_deinit() 822 dm_handle = *p_handle; in aiot_dm_deinit() 824 *p_handle = NULL; in aiot_dm_deinit()
|