Home
last modified time | relevance | path

Searched refs:CHAR (Results 1 – 25 of 590) sorted by relevance

12345678910>>...24

/ThreadX-v6.2.1/ports_smp/cortex_a5x_smp/green/src/
Dtx_ghs.c418 CHAR *cp; /* Pointer inside thread's stack. */ in _txs_thread_stack_check()
421 for ( cp = (CHAR *)thread_ptr->tx_thread_stack_start; in _txs_thread_stack_check()
422 cp <= (CHAR *)thread_ptr->tx_thread_stack_end; ++cp ) { in _txs_thread_stack_check()
430 return (((CHAR *)thread_ptr->tx_thread_stack_end) - (CHAR *)cp + 1); in _txs_thread_stack_check()
438 CHAR * cp; /* Pointer inside thread's stack. */ in _txs_thread_stack_check_2()
452 for ( cp = (CHAR *)tp->tx_thread_stack_start; cp <= (CHAR *)tp->tx_thread_stack_end; in _txs_thread_stack_check_2()
461 tp->tx_thread_stack_size = ((CHAR *)tp->tx_thread_stack_end) - (CHAR *)cp + 1; in _txs_thread_stack_check_2()
491 … tp->tx_thread_stack_size = (CHAR *)tp->tx_thread_stack_end-(CHAR *)tp->tx_thread_stack_start+1; in _txs_thread_stack_check_2_fixup()
/ThreadX-v6.2.1/utility/rtos_compatibility_layers/posix/
Dpx_memory_release.c74 if (((CHAR *)memory_ptr >= in posix_memory_release()
75 (CHAR *)&posix_heap_byte_pool.tx_byte_pool_start) || in posix_memory_release()
76 ((CHAR *)memory_ptr <= in posix_memory_release()
77 (CHAR *)posix_heap_byte_pool.tx_byte_pool_start in posix_memory_release()
Dpx_sem_find_sem.c71 sem_t* posix_find_sem(const CHAR * name) in posix_find_sem()
77 CHAR *dummy_name; in posix_find_sem()
78 CHAR *dummy_sem_name; in posix_find_sem()
89 for(namelength = 0 ,dummy_name = (CHAR *)name ; namelength < 10 ; in posix_find_sem()
Dpx_mq_find_queue.c67 POSIX_MSG_QUEUE * posix_find_queue(const CHAR *mq_name) in posix_find_queue()
73 CHAR *dummy_name; in posix_find_queue()
74 CHAR *dummy_queue_name; in posix_find_queue()
87 for(namelength = 0 ,dummy_name = (CHAR *) mq_name ; namelength < PATH_MAX ; in posix_find_queue()
Dpx_mq_create.c81 POSIX_MSG_QUEUE * posix_mq_create (const CHAR * mq_name, in posix_mq_create()
128 (CHAR *)mq_name, in posix_mq_create()
219 posix_q->name = (CHAR*) mq_name; in posix_mq_create()
/ThreadX-v6.2.1/common_modules/module_manager/src/
Dtxm_module_manager_util.c149 if ( (((CHAR *) object_ptr) >= ((CHAR *) module_instance -> txm_module_instance_data_start)) && in _txm_module_manager_created_object_check()
150 (((CHAR *) object_ptr) < ((CHAR *) module_instance -> txm_module_instance_data_end))) in _txm_module_manager_created_object_check()
281 UINT _txm_module_manager_object_name_compare(CHAR *search_name, UINT search_name_length, CHAR *obj… in _txm_module_manager_object_name_compare()
284 CHAR search_name_char; in _txm_module_manager_object_name_compare()
285 CHAR object_name_char; in _txm_module_manager_object_name_compare()
Dtxm_module_manager_internal_load.c79 UINT _txm_module_manager_internal_load(TXM_MODULE_INSTANCE *module_instance, CHAR *module_name, VO… in _txm_module_manager_internal_load()
100 CHAR *memory_ptr; in _txm_module_manager_internal_load()
298 memory_ptr = (CHAR *) data_start; in _txm_module_manager_internal_load()
316 …module_instance -> txm_module_instance_code_end = (VOID *) (((CHAR *) module_location) + (co… in _txm_module_manager_internal_load()
363 …ry_function = (VOID (*)(TX_THREAD *, TXM_MODULE_INSTANCE *)) (((CHAR *) module_instance … in _txm_module_manager_internal_load()
366 …txm_module_instance_start_thread_entry = (VOID (*)(ULONG)) (((CHAR *) module_instance … in _txm_module_manager_internal_load()
369 …txm_module_instance_callback_request_thread_entry = (VOID (*)(ULONG)) (((CHAR *) module_instance … in _txm_module_manager_internal_load()
377 …module_instance -> txm_module_instance_stop_thread_entry = (VOID (*)(ULONG)) (((CHAR *) module_in… in _txm_module_manager_internal_load()
Dtxm_module_manager_absolute_load.c77 UINT _txm_module_manager_absolute_load(TXM_MODULE_INSTANCE *module_instance, CHAR *module_name, VO… in _txm_module_manager_absolute_load()
98 CHAR *memory_ptr; in _txm_module_manager_absolute_load()
308 memory_ptr = (CHAR *) data_start; in _txm_module_manager_absolute_load()
312 …module_instance -> txm_module_instance_data_start = (VOID *) (((CHAR *) (ALIGN_TYPE) module_pream… in _txm_module_manager_absolute_load()
313 …module_instance -> txm_module_instance_data_end = (VOID *) (((CHAR *) (ALIGN_TYPE) module_instanc… in _txm_module_manager_absolute_load()
315 …module_instance -> txm_module_instance_data_start = (VOID *) (((CHAR *) module_preamble->txm_modu… in _txm_module_manager_absolute_load()
316 …module_instance -> txm_module_instance_data_end = (VOID *) (((CHAR *) module_instance -> txm_modu… in _txm_module_manager_absolute_load()
331 …module_instance -> txm_module_instance_code_end = (VOID *) (((CHAR *) module_location) + (co… in _txm_module_manager_absolute_load()
/ThreadX-v6.2.1/ports/cortex_m7/ghs/src/
Dtx_ghs.c401 CHAR *cp; /* Pointer inside thread's stack. */ in _txs_thread_stack_check()
404 for ( cp = (CHAR *)thread_ptr->tx_thread_stack_start; in _txs_thread_stack_check()
405 cp <= (CHAR *)thread_ptr->tx_thread_stack_end; ++cp ) { in _txs_thread_stack_check()
421 CHAR * cp; /* Pointer inside thread's stack. */ in _txs_thread_stack_check_2()
435 for ( cp = (CHAR *)tp->tx_thread_stack_start; cp <= (CHAR *)tp->tx_thread_stack_end; in _txs_thread_stack_check_2()
/ThreadX-v6.2.1/ports/cortex_r4/ghs/src/
Dtx_ghs.c401 CHAR *cp; /* Pointer inside thread's stack. */ in _txs_thread_stack_check()
404 for ( cp = (CHAR *)thread_ptr->tx_thread_stack_start; in _txs_thread_stack_check()
405 cp <= (CHAR *)thread_ptr->tx_thread_stack_end; ++cp ) { in _txs_thread_stack_check()
421 CHAR * cp; /* Pointer inside thread's stack. */ in _txs_thread_stack_check_2()
435 for ( cp = (CHAR *)tp->tx_thread_stack_start; cp <= (CHAR *)tp->tx_thread_stack_end; in _txs_thread_stack_check_2()
/ThreadX-v6.2.1/ports/cortex_r5/ghs/src/
Dtx_ghs.c401 CHAR *cp; /* Pointer inside thread's stack. */ in _txs_thread_stack_check()
404 for ( cp = (CHAR *)thread_ptr->tx_thread_stack_start; in _txs_thread_stack_check()
405 cp <= (CHAR *)thread_ptr->tx_thread_stack_end; ++cp ) { in _txs_thread_stack_check()
421 CHAR * cp; /* Pointer inside thread's stack. */ in _txs_thread_stack_check_2()
435 for ( cp = (CHAR *)tp->tx_thread_stack_start; cp <= (CHAR *)tp->tx_thread_stack_end; in _txs_thread_stack_check_2()
/ThreadX-v6.2.1/ports/cortex_r7/ghs/src/
Dtx_ghs.c401 CHAR *cp; /* Pointer inside thread's stack. */ in _txs_thread_stack_check()
404 for ( cp = (CHAR *)thread_ptr->tx_thread_stack_start; in _txs_thread_stack_check()
405 cp <= (CHAR *)thread_ptr->tx_thread_stack_end; ++cp ) { in _txs_thread_stack_check()
421 CHAR * cp; /* Pointer inside thread's stack. */ in _txs_thread_stack_check_2()
435 for ( cp = (CHAR *)tp->tx_thread_stack_start; cp <= (CHAR *)tp->tx_thread_stack_end; in _txs_thread_stack_check_2()
/ThreadX-v6.2.1/ports_smp/mips32_interaptiv_smp/green/src/
Dtx_ghs.c413 CHAR *cp; /* Pointer inside thread's stack. */ in _txs_thread_stack_check()
416 for ( cp = (CHAR *)thread_ptr->tx_thread_stack_start; in _txs_thread_stack_check()
417 cp <= (CHAR *)thread_ptr->tx_thread_stack_end; ++cp ) { in _txs_thread_stack_check()
433 CHAR * cp; /* Pointer inside thread's stack. */ in _txs_thread_stack_check_2()
447 for ( cp = (CHAR *)tp->tx_thread_stack_start; cp <= (CHAR *)tp->tx_thread_stack_end; in _txs_thread_stack_check_2()
/ThreadX-v6.2.1/ports/cortex_m4/ghs/src/
Dtx_ghs.c401 CHAR *cp; /* Pointer inside thread's stack. */ in _txs_thread_stack_check()
404 for ( cp = (CHAR *)thread_ptr->tx_thread_stack_start; in _txs_thread_stack_check()
405 cp <= (CHAR *)thread_ptr->tx_thread_stack_end; ++cp ) { in _txs_thread_stack_check()
421 CHAR * cp; /* Pointer inside thread's stack. */ in _txs_thread_stack_check_2()
435 for ( cp = (CHAR *)tp->tx_thread_stack_start; cp <= (CHAR *)tp->tx_thread_stack_end; in _txs_thread_stack_check_2()
/ThreadX-v6.2.1/ports/cortex_a5/ghs/src/
Dtx_ghs.c401 CHAR *cp; /* Pointer inside thread's stack. */ in _txs_thread_stack_check()
404 for ( cp = (CHAR *)thread_ptr->tx_thread_stack_start; in _txs_thread_stack_check()
405 cp <= (CHAR *)thread_ptr->tx_thread_stack_end; ++cp ) { in _txs_thread_stack_check()
421 CHAR * cp; /* Pointer inside thread's stack. */ in _txs_thread_stack_check_2()
435 for ( cp = (CHAR *)tp->tx_thread_stack_start; cp <= (CHAR *)tp->tx_thread_stack_end; in _txs_thread_stack_check_2()
/ThreadX-v6.2.1/ports/cortex_m3/ghs/src/
Dtx_ghs.c401 CHAR *cp; /* Pointer inside thread's stack. */ in _txs_thread_stack_check()
404 for ( cp = (CHAR *)thread_ptr->tx_thread_stack_start; in _txs_thread_stack_check()
405 cp <= (CHAR *)thread_ptr->tx_thread_stack_end; ++cp ) { in _txs_thread_stack_check()
421 CHAR * cp; /* Pointer inside thread's stack. */ in _txs_thread_stack_check_2()
435 for ( cp = (CHAR *)tp->tx_thread_stack_start; cp <= (CHAR *)tp->tx_thread_stack_end; in _txs_thread_stack_check_2()
/ThreadX-v6.2.1/ports/cortex_a7/ghs/src/
Dtx_ghs.c401 CHAR *cp; /* Pointer inside thread's stack. */ in _txs_thread_stack_check()
404 for ( cp = (CHAR *)thread_ptr->tx_thread_stack_start; in _txs_thread_stack_check()
405 cp <= (CHAR *)thread_ptr->tx_thread_stack_end; ++cp ) { in _txs_thread_stack_check()
421 CHAR * cp; /* Pointer inside thread's stack. */ in _txs_thread_stack_check_2()
435 for ( cp = (CHAR *)tp->tx_thread_stack_start; cp <= (CHAR *)tp->tx_thread_stack_end; in _txs_thread_stack_check_2()
/ThreadX-v6.2.1/ports/cortex_a8/ghs/src/
Dtx_ghs.c401 CHAR *cp; /* Pointer inside thread's stack. */ in _txs_thread_stack_check()
404 for ( cp = (CHAR *)thread_ptr->tx_thread_stack_start; in _txs_thread_stack_check()
405 cp <= (CHAR *)thread_ptr->tx_thread_stack_end; ++cp ) { in _txs_thread_stack_check()
421 CHAR * cp; /* Pointer inside thread's stack. */ in _txs_thread_stack_check_2()
435 for ( cp = (CHAR *)tp->tx_thread_stack_start; cp <= (CHAR *)tp->tx_thread_stack_end; in _txs_thread_stack_check_2()
/ThreadX-v6.2.1/ports/cortex_a9/ghs/src/
Dtx_ghs.c401 CHAR *cp; /* Pointer inside thread's stack. */ in _txs_thread_stack_check()
404 for ( cp = (CHAR *)thread_ptr->tx_thread_stack_start; in _txs_thread_stack_check()
405 cp <= (CHAR *)thread_ptr->tx_thread_stack_end; ++cp ) { in _txs_thread_stack_check()
421 CHAR * cp; /* Pointer inside thread's stack. */ in _txs_thread_stack_check_2()
435 for ( cp = (CHAR *)tp->tx_thread_stack_start; cp <= (CHAR *)tp->tx_thread_stack_end; in _txs_thread_stack_check_2()
/ThreadX-v6.2.1/common_modules/inc/
Dtxm_module.h430 CHAR *txm_module_instance_name;
550 UINT _txm_module_object_pointer_get(UINT object_type, CHAR *name, VOID **object_ptr);
551 UINT _txm_module_object_pointer_get_extended(UINT object_type, CHAR *name, UINT name_length, VOID …
617 …nager_file_load(TXM_MODULE_INSTANCE *module_instance, CHAR *module_name, FX_MEDIA *media_ptr, CHAR
620 UINT _txm_module_manager_absolute_load(TXM_MODULE_INSTANCE *module_instance, CHAR *name, VOID *mod…
621 UINT _txm_module_manager_in_place_load(TXM_MODULE_INSTANCE *module_instance, CHAR *name, VOID *mod…
622 UINT _txm_module_manager_internal_load(TXM_MODULE_INSTANCE *module_instance, CHAR *name, VOID *mod…
627 UINT _txm_module_manager_object_pointer_get(UINT object_type, CHAR *name, VOID **object_ptr);
628 UINT _txm_module_manager_object_pointer_get_extended(UINT object_type, CHAR *name, UINT name_lengt…
631 UINT _txm_module_manager_memory_load(TXM_MODULE_INSTANCE *module_instance, CHAR *module_name, VOID…
[all …]
/ThreadX-v6.2.1/ports/cortex_m0/ac5/inc/
Dtx_port.h84 typedef char CHAR; typedef
326 CHAR _tx_version_id[] =
330 extern CHAR _tx_version_id[100];
332 extern CHAR _tx_version_id[];
/ThreadX-v6.2.1/ports/cortex_m0/keil/inc/
Dtx_port.h84 typedef char CHAR; typedef
326 CHAR _tx_version_id[] =
330 extern CHAR _tx_version_id[100];
332 extern CHAR _tx_version_id[];
/ThreadX-v6.2.1/ports/arc_em/metaware/inc/
Dtx_port.h109 typedef char CHAR; typedef
324 CHAR _tx_version_id[] =
328 extern CHAR _tx_version_id[100];
330 extern CHAR _tx_version_id[];
/ThreadX-v6.2.1/ports/arc_hs/metaware/inc/
Dtx_port.h109 typedef char CHAR; typedef
338 CHAR _tx_version_id[] =
342 extern CHAR _tx_version_id[100];
344 extern CHAR _tx_version_id[];
/ThreadX-v6.2.1/ports/c667x/ccs/inc/
Dtx_port.h87 typedef char CHAR; typedef
273 CHAR _tx_version_id[] =
276 extern CHAR _tx_version_id[];

12345678910>>...24