Searched refs:sys_sem_valid (Results 1 – 9 of 9) sorted by relevance
42 #define sys_sem_valid(sem) (((sem) != NULL) && (*(sem) != NULL)) macro49 #define sys_mutex_valid(mutex) sys_sem_valid(mutex)54 #define sys_mbox_valid(mbox) sys_sem_valid(mbox)
59 #define sys_sem_valid(s) 0 macro118 #define sys_mutex_valid(mutex) sys_sem_valid(mutex)228 #ifndef sys_sem_valid236 int sys_sem_valid(sys_sem_t *sem);252 #define sys_sem_valid_val(sem) sys_sem_valid(&(sem))
36 #define sys_sem_valid(sema) ((sema) != NULL) macro
70 #define sys_sem_valid(sema) (((sema) != NULL) && sys_sem_valid_val(*(sema))) macro
41 #define sys_sem_valid(sema) (((sema) != NULL) && sys_sem_valid_val(*(sema))) macro
169 LWIP_ASSERT("conn has no op_completed", sys_sem_valid(&conn->op_completed)); in netconn_new_with_proto_and_callback()1349 if (!sys_sem_valid(sem)) {1352 …LWIP_ASSERT("LWIP_NETCONN_THREAD_SEM_ALLOC() failed", sys_sem_valid(LWIP_NETCONN_THREAD_SEM_GET())…1360 if (sys_sem_valid(sem)) {
453 LWIP_ASSERT("semaphore not initialized", sys_sem_valid(sem)); in tcpip_send_msg_wait_sem()
498 LWIP_ASSERT("invalid op_completed_sem", sys_sem_valid(op_completed_sem));1207 if (sys_sem_valid(LWIP_API_MSG_SEM(msg))) {
515 LWIP_ASSERT("sem invalid", sys_sem_valid(sem)); in sys_arch_netconn_sem_alloc()
Completed in 26 milliseconds