Home
last modified time | relevance | path

Searched refs:bp (Results 1 – 4 of 4) sorted by relevance

/ThreadX-v6.4.1/utility/rtos_compatibility_layers/posix/
Dpx_mq_get_new_queue.c73 VOID *bp; in posix_get_new_queue() local
83 retval = posix_memory_allocate(size, &bp); in posix_get_new_queue()
104 q_ptr->storage = bp; in posix_get_new_queue()
115 posix_memory_release(bp); in posix_get_new_queue()
Dpx_mq_get_queue_desc.c72 VOID *bp; in posix_get_queue_des() local
75 if( tx_byte_allocate((TX_BYTE_POOL *)&posix_heap_byte_pool, &bp, in posix_get_queue_des()
83 q_des = (struct mq_des *)bp; in posix_get_queue_des()
Dpx_mq_create.c88 VOID *bp; in posix_mq_create() local
163 retval = posix_memory_allocate(size,&bp); in posix_mq_create()
203 bp, size); in posix_mq_create()
Dpx_mq_send.c86 VOID *bp; in mq_send() local
171 temp1 = tx_byte_allocate((TX_BYTE_POOL * )&(q_ptr->vq_message_area), &bp, in mq_send()
181 destination = (UCHAR * ) bp; in mq_send()