Home
last modified time | relevance | path

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

1234

/ThreadX-v6.3.0/common_modules/module_manager/src/
Dtxm_module_manager_absolute_load.c82 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_absolute_load() local
145 module_preamble = (TXM_MODULE_PREAMBLE *) module_location; in _txm_module_manager_absolute_load()
148 if (module_preamble -> txm_module_preamble_id != TXM_MODULE_ID) in _txm_module_manager_absolute_load()
159 …module_properties = module_preamble -> txm_module_preamble_property_flags & TXM_MODULE_OPTIONS_MA… in _txm_module_manager_absolute_load()
177 if ((module_preamble -> txm_module_preamble_shell_entry_function == 0) || in _txm_module_manager_absolute_load()
178 (module_preamble -> txm_module_preamble_start_function == 0)) in _txm_module_manager_absolute_load()
189 if ((module_preamble -> txm_module_preamble_code_size == 0) || in _txm_module_manager_absolute_load()
191 (module_preamble -> txm_module_preamble_start_stop_stack_size == 0) || in _txm_module_manager_absolute_load()
192 (module_preamble -> txm_module_preamble_callback_stack_size == 0)) in _txm_module_manager_absolute_load()
205 …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.c85 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_internal_load() local
148 module_preamble = (TXM_MODULE_PREAMBLE *) module_location; in _txm_module_manager_internal_load()
151 if (module_preamble -> txm_module_preamble_id != TXM_MODULE_ID) in _txm_module_manager_internal_load()
162 …module_properties = module_preamble -> txm_module_preamble_property_flags & TXM_MODULE_OPTIONS_MA… in _txm_module_manager_internal_load()
180 if ((module_preamble -> txm_module_preamble_shell_entry_function == 0) || in _txm_module_manager_internal_load()
181 (module_preamble -> txm_module_preamble_start_function == 0)) in _txm_module_manager_internal_load()
192 if ((module_preamble -> txm_module_preamble_code_size == 0) || in _txm_module_manager_internal_load()
193 (module_preamble -> txm_module_preamble_data_size == 0) || in _txm_module_manager_internal_load()
194 (module_preamble -> txm_module_preamble_start_stop_stack_size == 0) || in _txm_module_manager_internal_load()
195 (module_preamble -> txm_module_preamble_callback_stack_size == 0)) in _txm_module_manager_internal_load()
[all …]
Dtxm_module_manager_in_place_load.c79 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_in_place_load() local
87 module_preamble = (TXM_MODULE_PREAMBLE *) module_location; in _txm_module_manager_in_place_load()
90 code_size = module_preamble -> txm_module_preamble_code_size; in _txm_module_manager_in_place_load()
103 …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.c81 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_memory_load() local
95 module_preamble = (TXM_MODULE_PREAMBLE *) module_location; in _txm_module_manager_memory_load()
98 code_size = module_preamble -> txm_module_preamble_code_size; in _txm_module_manager_memory_load()
109 …status = _txm_module_manager_util_code_allocation_size_and_alignment_get(module_preamble, &code_a… in _txm_module_manager_memory_load()
135 copy_size = module_preamble -> txm_module_preamble_code_size; in _txm_module_manager_memory_load()
Dtxm_module_manager_file_load.c90 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_file_load() local
122 module_preamble = (TXM_MODULE_PREAMBLE *) &preamble; in _txm_module_manager_file_load()
125 code_size = module_preamble -> txm_module_preamble_code_size; in _txm_module_manager_file_load()
135 …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.c384 …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
395 code_size = module_preamble -> txm_module_preamble_code_size; in _txm_module_manager_util_code_allocation_size_and_alignment_get()
407 …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.3.0/ports_module/rxv2/iar/module_manager/src/
Dtxm_module_manager_external_memory_enable.c82 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable() local
122 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
123 …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.c71 VOID _txm_module_manager_alignment_adjust(TXM_MODULE_PREAMBLE *module_preamble, in _txm_module_manager_alignment_adjust() argument
/ThreadX-v6.3.0/ports_module/cortex_m7/ac5/module_manager/src/
Dtxm_module_manager_external_memory_enable.c200 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
240 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
241 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.3.0/ports_module/cortex_m7/ac6/module_manager/src/
Dtxm_module_manager_external_memory_enable.c200 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
240 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
241 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.3.0/ports_module/cortex_m7/gnu/module_manager/src/
Dtxm_module_manager_external_memory_enable.c200 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
240 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
241 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.3.0/ports_module/cortex_m7/iar/module_manager/src/
Dtxm_module_manager_external_memory_enable.c200 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
240 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
241 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.3.0/ports_module/cortex_m4/iar/module_manager/src/
Dtxm_module_manager_external_memory_enable.c200 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
240 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
241 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.3.0/ports_module/cortex_m4/ac5/module_manager/src/
Dtxm_module_manager_external_memory_enable.c200 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
240 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
241 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.3.0/ports_module/cortex_m4/ac6/module_manager/src/
Dtxm_module_manager_external_memory_enable.c200 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
240 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
241 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.3.0/ports_module/cortex_m4/gnu/module_manager/src/
Dtxm_module_manager_external_memory_enable.c200 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
240 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
241 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.3.0/ports_module/cortex_m0+/ac6/module_manager/src/
Dtxm_module_manager_external_memory_enable.c198 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
238 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
239 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.3.0/ports_module/cortex_m0+/gnu/module_manager/src/
Dtxm_module_manager_external_memory_enable.c198 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
238 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
239 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.3.0/ports_module/cortex_m0+/iar/module_manager/src/
Dtxm_module_manager_external_memory_enable.c198 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
238 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
239 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.3.0/ports_arch/ARMv7-M/threadx_modules/common/module_manager/src/
Dtxm_module_manager_external_memory_enable.c200 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
240 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
241 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.3.0/ports_module/cortex_m3/ac5/module_manager/src/
Dtxm_module_manager_external_memory_enable.c200 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
240 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
241 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.3.0/ports_module/cortex_m3/ac6/module_manager/src/
Dtxm_module_manager_external_memory_enable.c200 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
240 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
241 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.3.0/ports_module/cortex_m3/gnu/module_manager/src/
Dtxm_module_manager_external_memory_enable.c200 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
240 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
241 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.3.0/ports_module/cortex_m3/iar/module_manager/src/
Dtxm_module_manager_external_memory_enable.c200 TXM_MODULE_PREAMBLE *module_preamble; in _txm_module_manager_external_memory_enable()
240 module_preamble = module_instance -> txm_module_instance_preamble_ptr; in _txm_module_manager_external_memory_enable()
241 …if((module_preamble -> txm_module_preamble_property_flags & (TXM_MODULE_MEMORY_PROTECTION | TXM_MO… in _txm_module_manager_external_memory_enable()
/ThreadX-v6.3.0/ports_module/cortex_m33/ac6/module_manager/src/
Dtxm_module_manager_alignment_adjust.c71 VOID _txm_module_manager_alignment_adjust(TXM_MODULE_PREAMBLE *module_preamble, in _txm_module_manager_alignment_adjust() argument

1234