Home
last modified time | relevance | path

Searched refs:module_preamble (Results 1 – 25 of 84) sorted by relevance

1234

/ThreadX-v6.4.1/common_modules/module_manager/src/
Dtxm_module_manager_absolute_load.c81 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_absolute_load() local
144 module_preamble = (TXM_MODULE_PREAMBLE *) module_location; in _txm_module_manager_absolute_load()
147 if (module_preamble -> txm_module_preamble_id != TXM_MODULE_ID) in _txm_module_manager_absolute_load()
158 …module_properties = module_preamble -> txm_module_preamble_property_flags & TXM_MODULE_OPTIONS_MA… in _txm_module_manager_absolute_load()
176 if ((module_preamble -> txm_module_preamble_shell_entry_function == 0) || in _txm_module_manager_absolute_load()
177 (module_preamble -> txm_module_preamble_start_function == 0)) in _txm_module_manager_absolute_load()
188 if ((module_preamble -> txm_module_preamble_code_size == 0) || in _txm_module_manager_absolute_load()
190 (module_preamble -> txm_module_preamble_start_stop_stack_size == 0) || in _txm_module_manager_absolute_load()
191 (module_preamble -> txm_module_preamble_callback_stack_size == 0)) in _txm_module_manager_absolute_load()
204 …status = _txm_module_manager_util_code_allocation_size_and_alignment_get(module_preamble, &code_a… in _txm_module_manager_absolute_load()
[all …]
Dtxm_module_manager_internal_load.c84 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_internal_load() local
147 module_preamble = (TXM_MODULE_PREAMBLE *) module_location; in _txm_module_manager_internal_load()
150 if (module_preamble -> txm_module_preamble_id != TXM_MODULE_ID) in _txm_module_manager_internal_load()
161 …module_properties = module_preamble -> txm_module_preamble_property_flags & TXM_MODULE_OPTIONS_MA… in _txm_module_manager_internal_load()
179 if ((module_preamble -> txm_module_preamble_shell_entry_function == 0) || in _txm_module_manager_internal_load()
180 (module_preamble -> txm_module_preamble_start_function == 0)) in _txm_module_manager_internal_load()
191 if ((module_preamble -> txm_module_preamble_code_size == 0) || in _txm_module_manager_internal_load()
192 (module_preamble -> txm_module_preamble_data_size == 0) || in _txm_module_manager_internal_load()
193 (module_preamble -> txm_module_preamble_start_stop_stack_size == 0) || in _txm_module_manager_internal_load()
194 (module_preamble -> txm_module_preamble_callback_stack_size == 0)) in _txm_module_manager_internal_load()
[all …]
Dtxm_module_manager_in_place_load.c78 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_in_place_load() local
86 module_preamble = (TXM_MODULE_PREAMBLE *) module_location; in _txm_module_manager_in_place_load()
89 code_size = module_preamble -> txm_module_preamble_code_size; in _txm_module_manager_in_place_load()
102 …status = _txm_module_manager_util_code_allocation_size_and_alignment_get(module_preamble, &code_a… in _txm_module_manager_in_place_load()
Dtxm_module_manager_memory_load.c80 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_memory_load() local
94 module_preamble = (TXM_MODULE_PREAMBLE *) module_location; in _txm_module_manager_memory_load()
97 code_size = module_preamble -> txm_module_preamble_code_size; in _txm_module_manager_memory_load()
108 …status = _txm_module_manager_util_code_allocation_size_and_alignment_get(module_preamble, &code_a… in _txm_module_manager_memory_load()
134 copy_size = module_preamble -> txm_module_preamble_code_size; in _txm_module_manager_memory_load()
Dtxm_module_manager_file_load.c89 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_file_load() local
121 module_preamble = (TXM_MODULE_PREAMBLE *) &preamble; in _txm_module_manager_file_load()
124 code_size = module_preamble -> txm_module_preamble_code_size; in _txm_module_manager_file_load()
134 …s = _txm_module_manager_util_code_allocation_size_and_alignment_get(module_preamble, &code_alignm… in _txm_module_manager_file_load()
Dtxm_module_manager_util.c383 …xm_module_manager_util_code_allocation_size_and_alignment_get(TXM_MODULE_PREAMBLE *module_preamble, in _txm_module_manager_util_code_allocation_size_and_alignment_get() argument
394 code_size = module_preamble -> txm_module_preamble_code_size; in _txm_module_manager_util_code_allocation_size_and_alignment_get()
406 …TXM_MODULE_MANAGER_ALIGNMENT_ADJUST(module_preamble, code_size, code_alignment, data_size_ignored,… in _txm_module_manager_util_code_allocation_size_and_alignment_get()
/ThreadX-v6.4.1/ports_module/rxv2/iar/module_manager/src/
Dtxm_module_manager_external_memory_enable.c81 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable() local
121 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
122 …if(!(module_preamble -> txm_module_preamble_property_flags & TXM_MODULE_SHARED_EXTERNAL_MEMORY_ACC… in _txm_module_manager_external_memory_enable()
Dtxm_module_manager_alignment_adjust.c70 VOID _txm_module_manager_alignment_adjust(TXM_MODULE_PREAMBLE *module_preamble, in _txm_module_manager_alignment_adjust() argument
/ThreadX-v6.4.1/ports_module/cortex_m7/ac6/module_manager/src/
Dtxm_module_manager_external_memory_enable.c199 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
239 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
240 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.4.1/ports_module/cortex_m7/gnu/module_manager/src/
Dtxm_module_manager_external_memory_enable.c199 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
239 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
240 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.4.1/ports_module/cortex_m7/iar/module_manager/src/
Dtxm_module_manager_external_memory_enable.c199 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
239 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
240 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.4.1/ports_module/cortex_m3/gnu/module_manager/src/
Dtxm_module_manager_external_memory_enable.c199 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
239 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
240 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.4.1/ports_module/cortex_m4/ac5/module_manager/src/
Dtxm_module_manager_external_memory_enable.c199 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
239 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
240 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.4.1/ports_module/cortex_m4/ac6/module_manager/src/
Dtxm_module_manager_external_memory_enable.c199 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
239 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
240 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.4.1/ports_module/cortex_m4/gnu/module_manager/src/
Dtxm_module_manager_external_memory_enable.c199 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
239 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
240 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.4.1/ports_module/cortex_m4/iar/module_manager/src/
Dtxm_module_manager_external_memory_enable.c199 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
239 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
240 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.4.1/ports_module/cortex_m0+/ac6/module_manager/src/
Dtxm_module_manager_external_memory_enable.c197 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
237 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
238 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.4.1/ports_module/cortex_m3/ac6/module_manager/src/
Dtxm_module_manager_external_memory_enable.c199 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
239 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
240 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.4.1/ports_module/cortex_m7/ac5/module_manager/src/
Dtxm_module_manager_external_memory_enable.c199 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
239 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
240 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.4.1/ports_module/cortex_m0+/gnu/module_manager/src/
Dtxm_module_manager_external_memory_enable.c197 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
237 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
238 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.4.1/ports_arch/ARMv7-M/threadx_modules/common/module_manager/src/
Dtxm_module_manager_external_memory_enable.c199 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
239 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
240 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.4.1/ports_module/cortex_m0+/iar/module_manager/src/
Dtxm_module_manager_external_memory_enable.c197 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
237 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
238 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.4.1/ports_module/cortex_m3/iar/module_manager/src/
Dtxm_module_manager_external_memory_enable.c199 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
239 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
240 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.4.1/ports_module/cortex_m3/ac5/module_manager/src/
Dtxm_module_manager_external_memory_enable.c199 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
239 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
240 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.4.1/ports_module/cortex_m33/iar/module_manager/src/
Dtxm_module_manager_alignment_adjust.c70 VOID _txm_module_manager_alignment_adjust(TXM_MODULE_PREAMBLE *module_preamble, in _txm_module_manager_alignment_adjust() argument

1234