Home
last modified time | relevance | path

Searched refs:section (Results 1 – 25 of 314) sorted by relevance

12345678910>>...13

/device/soc/bestechnic/bes2600/liteos_m/sdk/bsp/platform/hal/
Dhal_overlay.h22 #define HAL_OVERLAY_TEXT0_LOC __attribute__((section(".overlay_text0")))
23 #define HAL_OVERLAY_TEXT1_LOC __attribute__((section(".overlay_text1")))
24 #define HAL_OVERLAY_TEXT2_LOC __attribute__((section(".overlay_text2")))
25 #define HAL_OVERLAY_TEXT3_LOC __attribute__((section(".overlay_text3")))
26 #define HAL_OVERLAY_TEXT4_LOC __attribute__((section(".overlay_text4")))
27 #define HAL_OVERLAY_TEXT5_LOC __attribute__((section(".overlay_text5")))
28 #define HAL_OVERLAY_TEXT6_LOC __attribute__((section(".overlay_text6")))
29 #define HAL_OVERLAY_TEXT7_LOC __attribute__((section(".overlay_text7")))
31 #define HAL_OVERLAY_RODATA0_LOC __attribute__((section(".overlay_rodata0")))
32 #define HAL_OVERLAY_RODATA1_LOC __attribute__((section(".overlay_rodata1")))
[all …]
Dplat_types.h26 #define __TCMDATA __attribute__((section(".tcmdata")))
27 #define __RAMCODE __attribute__((section(".ramcode")))
28 #define __RAMDATA __attribute__((section(".ramdata")))
31 #define __RRAMCODE __attribute__((section(".rram_text")))
32 #define __RRAMDATA __attribute__((section(".rram_data")))
33 #define __RRAMBSS __attribute__((section(".rram_bss")))
39 #define __SRAMCODE __attribute__((section(".sram_text")))
40 #define __SRAMDATA __attribute__((section(".sram_data")))
41 #define __SRAMBSS __attribute__((section(".sram_bss")))
42 #define __AUDMA __attribute__((section(".audma")))
[all …]
Dhal_sleep_core_pd.S22 .section .bss.core_sleep_stack
24 .section .sram_bss.core_sleep_stack
31 .section .text.hal_sleep_core_power_down, "ax", %progbits
33 .section .sram_text.hal_sleep_core_power_down, "ax", %progbits
82 .section .text.hal_sleep_core_power_up, "ax", %progbits
84 .section .sram_text.hal_sleep_core_power_up, "ax", %progbits
/device/soc/esp/esp32/components/bt/host/bluedroid/btc/core/
Dbtc_config.c39 bool btc_compare_address_key_value(const char *section, const char *key_type, void *key_value, int … in btc_compare_address_key_value() argument
49 config_remove_section(config, section); in btc_compare_address_key_value()
113 bool btc_config_has_section(const char *section) in btc_config_has_section() argument
116 assert(section != NULL); in btc_config_has_section()
118 return config_has_section(config, section); in btc_config_has_section()
121 bool btc_config_exist(const char *section, const char *key) in btc_config_exist() argument
124 assert(section != NULL); in btc_config_exist()
127 return config_has_key(config, section, key); in btc_config_exist()
130 bool btc_config_get_int(const char *section, const char *key, int *value) in btc_config_get_int() argument
133 assert(section != NULL); in btc_config_get_int()
[all …]
/device/soc/esp/esp32/components/bt/common/osi/
Dconfig.c55 static section_t *section_find(const config_t *config, const char *section);
59 static entry_t *entry_find(const config_t *config, const char *section, const char *key);
120 bool config_has_section(const config_t *config, const char *section) in config_has_section() argument
123 assert(section != NULL); in config_has_section()
125 return (section_find(config, section) != NULL); in config_has_section()
128 bool config_has_key(const config_t *config, const char *section, const char *key) in config_has_key() argument
131 assert(section != NULL); in config_has_key()
134 return (entry_find(config, section, key) != NULL); in config_has_key()
141 const section_t *section = (const section_t *)list_node(node); in config_has_key_in_section() local
143 …for (const list_node_t *node = list_begin(section->entries); node != list_end(section->entries); n… in config_has_key_in_section()
[all …]
/device/soc/esp/esp32/components/bt/host/bluedroid/btc/include/btc/
Dbtc_config.h29 bool btc_config_has_section(const char *section);
30 bool btc_config_exist(const char *section, const char *key);
31 bool btc_config_get_int(const char *section, const char *key, int *value);
32 bool btc_config_set_int(const char *section, const char *key, int value);
33 bool btc_config_get_str(const char *section, const char *key, char *value, int *size_bytes);
34 bool btc_config_set_str(const char *section, const char *key, const char *value);
35 bool btc_config_get_bin(const char *section, const char *key, uint8_t *value, size_t *length);
36 bool btc_config_set_bin(const char *section, const char *key, const uint8_t *value, size_t length);
37 bool btc_config_remove(const char *section, const char *key);
38 bool btc_config_remove_section(const char *section);
[all …]
/device/board/unionman/unionpi_tiger/kernel/drivers/wifi/
Ddhd_static_buf.c137 void *bcmdhd_mem_prealloc(int section, unsigned long size) in bcmdhd_mem_prealloc() argument
139 pr_info("sectoin %d, size %ld\n", section, size); in bcmdhd_mem_prealloc()
140 if (section == DHD_PREALLOC_PROT) { in bcmdhd_mem_prealloc()
145 if (section == DHD_PREALLOC_RXBUF) { in bcmdhd_mem_prealloc()
149 if (section == DHD_PREALLOC_DATABUF) { in bcmdhd_mem_prealloc()
154 if (section == DHD_PREALLOC_SKB_BUF) { in bcmdhd_mem_prealloc()
158 if (section == DHD_PREALLOC_WIPHY_ESCAN0) { in bcmdhd_mem_prealloc()
162 if (section == DHD_PREALLOC_WIPHY_ESCAN1) { in bcmdhd_mem_prealloc()
166 if (section == DHD_PREALLOC_OSL_BUF) { in bcmdhd_mem_prealloc()
174 if (section == DHD_PREALLOC_DHD_INFO) { in bcmdhd_mem_prealloc()
[all …]
/device/soc/esp/esp32/components/bt/common/osi/include/osi/
Dconfig.h63 bool config_has_section(const config_t *config, const char *section);
67 bool config_has_key(const config_t *config, const char *section, const char *key);
77 int config_get_int(const config_t *config, const char *section, const char *key, int def_value);
82 bool config_get_bool(const config_t *config, const char *section, const char *key, bool def_value);
88 const char *config_get_string(const config_t *config, const char *section, const char *key, const c…
93 void config_set_int(config_t *config, const char *section, const char *key, int value);
98 void config_set_bool(config_t *config, const char *section, const char *key, bool value);
103 void config_set_string(config_t *config, const char *section, const char *key, const char *value, b…
108 bool config_remove_section(config_t *config, const char *section);
113 bool config_remove_key(config_t *config, const char *section, const char *key);
/device/soc/telink/b91/b91_ble_sdk/common/
Dcompiler.h23 #define _attribute_ram_code_sec_ __attribute__((section(".ram_code")))
24 #define _attribute_ram_code_sec_noinline_ __attribute__((section(".ram_code"))) __attribute__((noin…
26 #define _attribute_text_sec_ __attribute__((section(".text")))
28 #define _attribute_aes_data_sec_ __attribute__((section(".aes_data")))
39 #define _attribute_session_(s) __attribute__((section(s)))
46 #define _attribute_data_retention_sec_ __attribute__((section(".retention_data")))
47 #define _attribute_data_retention_ __attribute__((section(".retention_data")))
48 #define _attribute_ble_data_retention_ __attribute__((section(".retention_data")))
55 #define _attribute_ram_code_ __attribute__((section(".ram_code"))) __attribute__((noinline))
57 #define _attribute_text_code_ __attribute__((section(".text")))
/device/soc/bestechnic/bes2600/liteos_m/sdk/bsp/services/nvrecord/
Dnvrec_config.h67 bool nvrec_config_has_section(const nvrec_config_t *config, const char *section);
71 bool nvrec_config_has_key(const nvrec_config_t *config, const char *section, const char *key);
77 int nvrec_config_get_int(const nvrec_config_t *config, const char *section, const char *key, int de…
82 bool nvrec_config_get_bool(const nvrec_config_t *config, const char *section, const char *key, bool…
88 const char *nvrec_config_get_string(const nvrec_config_t *config, const char *section, const char *…
93 void nvrec_config_set_int(nvrec_config_t *config, const char *section, const char *key, int value);
98 void nvrec_config_set_bool(nvrec_config_t *config, const char *section, const char *key, bool value…
103 void nvrec_config_set_string(nvrec_config_t *config, const char *section, const char *key, const ch…
104 nvrec_section_t *nvrec_section_find(const nvrec_config_t *config, const char *section);
/device/board/isoftstone/zhiyuan/kernel/driver/drivers/net/wireless/bcmdhd/
Ddhd_custom_memprealloc.c163 #define GET_STATIC_BUF(section, config_size, req_size, buf) ({\ argument
166 pr_err("request " #section " size(%lu) is bigger than" \
175 *dhd_wlan_mem_prealloc(int section, unsigned long size) in dhd_wlan_mem_prealloc() argument
177 if (section == PREALLOC_WLAN_SEC_NUM) { in dhd_wlan_mem_prealloc()
181 if (section == WLAN_STATIC_SCAN_BUF0) { in dhd_wlan_mem_prealloc()
185 if (section == WLAN_STATIC_SCAN_BUF1) { in dhd_wlan_mem_prealloc()
189 if (section == WLAN_STATIC_DHD_INFO_BUF) { in dhd_wlan_mem_prealloc()
199 if (section == WLAN_STATIC_DHD_WLFC_BUF) { in dhd_wlan_mem_prealloc()
209 if (section == WLAN_STATIC_DHD_WLFC_HANGER) { in dhd_wlan_mem_prealloc()
219 if (section == WLAN_STATIC_DHD_IF_FLOW_LKUP) { in dhd_wlan_mem_prealloc()
[all …]
Ddhd_static_buf.c118 void *dhd_wlan_mem_prealloc(int section, unsigned long size) in dhd_wlan_mem_prealloc() argument
120 pr_err("%s: sectoin %d, %ld\n", __func__, section, size); in dhd_wlan_mem_prealloc()
121 if (section == DHD_PREALLOC_PROT) in dhd_wlan_mem_prealloc()
125 if (section == DHD_PREALLOC_RXBUF) in dhd_wlan_mem_prealloc()
128 if (section == DHD_PREALLOC_DATABUF) in dhd_wlan_mem_prealloc()
132 if (section == DHD_PREALLOC_SKB_BUF) in dhd_wlan_mem_prealloc()
135 if (section == DHD_PREALLOC_WIPHY_ESCAN0) in dhd_wlan_mem_prealloc()
138 if (section == DHD_PREALLOC_WIPHY_ESCAN1) in dhd_wlan_mem_prealloc()
141 if (section == DHD_PREALLOC_OSL_BUF) { in dhd_wlan_mem_prealloc()
150 if (section == DHD_PREALLOC_DHD_INFO) { in dhd_wlan_mem_prealloc()
[all …]
/device/soc/hisilicon/hi3516dv300/sdk_linux/sample/taurus/ai_sample/ext_util/
Dbase_interface.c136 int SectGetCfgInt(const char* section, const char* field, int defVal) in SectGetCfgInt() argument
141 … if (snprintf_s(key, sizeof(key), sizeof(key) - 1, "%s:%s", (section ? section : ""), field) < 0) { in SectGetCfgInt()
151 double SectGetCfgDouble(const char* section, const char* field, double defVal) in SectGetCfgDouble() argument
156 … if (snprintf_s(key, sizeof(key), sizeof(key) - 1, "%s:%s", (section ? section : ""), field) < 0) { in SectGetCfgDouble()
166 bool SectGetCfgBool(const char* section, const char* field, bool defVal) in SectGetCfgBool() argument
171 … if (snprintf_s(key, sizeof(key), sizeof(key) - 1, "%s:%s", (section ? section : ""), field) < 0) { in SectGetCfgBool()
181 const char* SectGetCfgStr(const char* section, const char* field, const char* defVal) in SectGetCfgStr() argument
186 … if (snprintf_s(key, sizeof(key), sizeof(key) - 1, "%s:%s", (section ? section : ""), field) < 0) { in SectGetCfgStr()
Dbase_interface.h35 int SectGetCfgInt(const char* section, const char* field, int defVal);
36 double SectGetCfgDouble(const char* section, const char* field, double defVal);
37 bool SectGetCfgBool(const char* section, const char* field, bool defVal);
38 const char* SectGetCfgStr(const char* section, const char* field, const char* defVal);
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/
Ddhd_static_buf.c127 void *dhd_wlan_mem_prealloc(int section, unsigned long size) in dhd_wlan_mem_prealloc() argument
129 pr_err("%s: sectoin %d, %ld\n", __func__, section, size); in dhd_wlan_mem_prealloc()
130 if (section == DHD_PREALLOC_PROT) in dhd_wlan_mem_prealloc()
134 if (section == DHD_PREALLOC_RXBUF) in dhd_wlan_mem_prealloc()
137 if (section == DHD_PREALLOC_DATABUF) in dhd_wlan_mem_prealloc()
141 if (section == DHD_PREALLOC_SKB_BUF) in dhd_wlan_mem_prealloc()
144 if (section == DHD_PREALLOC_WIPHY_ESCAN0) in dhd_wlan_mem_prealloc()
147 if (section == DHD_PREALLOC_WIPHY_ESCAN1) in dhd_wlan_mem_prealloc()
150 if (section == DHD_PREALLOC_OSL_BUF) { in dhd_wlan_mem_prealloc()
159 if (section == DHD_PREALLOC_DHD_INFO) { in dhd_wlan_mem_prealloc()
[all …]
Ddhd_custom_memprealloc.c162 *dhd_wlan_mem_prealloc(int section, unsigned long size) in dhd_wlan_mem_prealloc() argument
164 if (section == PREALLOC_WLAN_SEC_NUM) { in dhd_wlan_mem_prealloc()
168 if (section == WLAN_STATIC_SCAN_BUF0) { in dhd_wlan_mem_prealloc()
172 if (section == WLAN_STATIC_SCAN_BUF1) { in dhd_wlan_mem_prealloc()
176 if (section == WLAN_STATIC_DHD_INFO_BUF) { in dhd_wlan_mem_prealloc()
186 if (section == WLAN_STATIC_DHD_WLFC_BUF) { in dhd_wlan_mem_prealloc()
196 if (section == WLAN_STATIC_DHD_WLFC_HANGER) { in dhd_wlan_mem_prealloc()
206 if (section == WLAN_STATIC_DHD_IF_FLOW_LKUP) { in dhd_wlan_mem_prealloc()
216 if (section == WLAN_STATIC_DHD_MEMDUMP_RAM) { in dhd_wlan_mem_prealloc()
226 if (section == WLAN_STATIC_DHD_PKTID_MAP) { in dhd_wlan_mem_prealloc()
[all …]
/device/board/isoftstone/yangfan/kernel/src/driv/net/rockchip_wlan/rkwifi/bcmdhd/
Ddhd_static_buf.c127 void *dhd_wlan_mem_prealloc(int section, unsigned long size) in dhd_wlan_mem_prealloc() argument
129 pr_err("%s: sectoin %d, %ld\n", __func__, section, size); in dhd_wlan_mem_prealloc()
130 if (section == DHD_PREALLOC_PROT) in dhd_wlan_mem_prealloc()
134 if (section == DHD_PREALLOC_RXBUF) in dhd_wlan_mem_prealloc()
137 if (section == DHD_PREALLOC_DATABUF) in dhd_wlan_mem_prealloc()
141 if (section == DHD_PREALLOC_SKB_BUF) in dhd_wlan_mem_prealloc()
144 if (section == DHD_PREALLOC_WIPHY_ESCAN0) in dhd_wlan_mem_prealloc()
147 if (section == DHD_PREALLOC_WIPHY_ESCAN1) in dhd_wlan_mem_prealloc()
150 if (section == DHD_PREALLOC_OSL_BUF) { in dhd_wlan_mem_prealloc()
159 if (section == DHD_PREALLOC_DHD_INFO) { in dhd_wlan_mem_prealloc()
[all …]
/device/soc/winnermicro/wm800/board/src/bt/blehost/nimble/host/store/config/src/
Dwm_bt_storage.c110 int btif_wm_config_set_local(const nv_tag_t section, const nv_tag_t key, const nv_tag_t name, in btif_wm_config_set_local() argument
117 BTSTORAGE_TRACE_DEBUG("btif_wm_config_set_local [%s->%s->%s]\r\n", nv_tag_2_str(section), in btif_wm_config_set_local()
119 if (section == NV_LOCAL) { in btif_wm_config_set_local()
310 int btif_wm_config_get_local(const nv_tag_t section, const nv_tag_t key, const nv_tag_t name, in btif_wm_config_get_local() argument
316 if (section == NV_LOCAL) { in btif_wm_config_get_local()
501 BTSTORAGE_TRACE_DEBUG("btif_wm_config_got_local [%s->%s->%s]\r\n", nv_tag_2_str(section), in btif_wm_config_get_local()
505 nv_tag_2_str(section), nv_tag_2_str(key), nv_tag_2_str(name)); in btif_wm_config_get_local()
510 int btif_wm_config_get_local_int(const nv_tag_t section, const nv_tag_t key, const nv_tag_t name, in btif_wm_config_get_local_int() argument
515 return btif_wm_config_get_local(section, key, name, (char *)value, &size, &type, false); in btif_wm_config_get_local_int()
517 int btif_wm_config_set_local_int(const nv_tag_t section, const nv_tag_t key, const nv_tag_t name, in btif_wm_config_set_local_int() argument
[all …]
/device/board/kaihong/khdvk_3566b/wifi/bcmdhd_hdf/bcmdhd/
Ddhd_custom_memprealloc.c162 void *dhd_wlan_mem_prealloc(int section, unsigned long size) in dhd_wlan_mem_prealloc() argument
164 if (section == PREALLOC_WLAN_SEC_NUM) { in dhd_wlan_mem_prealloc()
168 if (section == WLAN_STATIC_SCAN_BUF0) { in dhd_wlan_mem_prealloc()
172 if (section == WLAN_STATIC_SCAN_BUF1) { in dhd_wlan_mem_prealloc()
176 if (section == WLAN_STATIC_DHD_INFO_BUF) { in dhd_wlan_mem_prealloc()
186 if (section == WLAN_STATIC_DHD_WLFC_BUF) { in dhd_wlan_mem_prealloc()
196 if (section == WLAN_STATIC_DHD_WLFC_HANGER) { in dhd_wlan_mem_prealloc()
206 if (section == WLAN_STATIC_DHD_IF_FLOW_LKUP) { in dhd_wlan_mem_prealloc()
216 if (section == WLAN_STATIC_DHD_MEMDUMP_RAM) { in dhd_wlan_mem_prealloc()
226 if (section == WLAN_STATIC_DHD_PKTID_MAP) { in dhd_wlan_mem_prealloc()
[all …]
Ddhd_static_buf.c182 int section, unsigned long size) in dhd_wlan_mem_prealloc() argument
189 index, section, size); in dhd_wlan_mem_prealloc()
191 if (section == DHD_PREALLOC_PROT) { in dhd_wlan_mem_prealloc()
196 if (section == DHD_PREALLOC_RXBUF) { in dhd_wlan_mem_prealloc()
200 if (section == DHD_PREALLOC_DATABUF) { in dhd_wlan_mem_prealloc()
206 if (section == DHD_PREALLOC_SKB_BUF) { in dhd_wlan_mem_prealloc()
211 if (section == DHD_PREALLOC_WIPHY_ESCAN0) { in dhd_wlan_mem_prealloc()
215 if (section == DHD_PREALLOC_WIPHY_ESCAN1) { in dhd_wlan_mem_prealloc()
219 if (section == DHD_PREALLOC_OSL_BUF) { in dhd_wlan_mem_prealloc()
228 if (section == DHD_PREALLOC_DHD_INFO) { in dhd_wlan_mem_prealloc()
[all …]
/device/soc/winnermicro/wm800/board/src/bt/blehost/nimble/host/store/config/include/store/config/
Dwm_bt_storage.h114 extern int btif_config_get_int(const char *section, const char *key, const char *name, int *value);
115 extern int btif_config_set_int(const char *section, const char *key, const char *name, int value);
116 extern int btif_config_get_str(const char *section, const char *key, const char *name, char *value,
118 extern int btif_config_set_str(const char *section, const char *key, const char *name,
121 extern int btif_config_get(const char *section, const char *key, const char *name, char *value,
123 extern int btif_config_set(const char *section, const char *key, const char *name,
126 extern int btif_config_remove(const char *section, const char *key, const char *name);
127 extern int btif_config_filter_remove(const char *section, const char *filter[], int filter_count,
129 extern int btif_config_exist(const char *section, const char *key, const char *name);
/device/soc/hpmicro/sdk/hpm_sdk/soc/HPM6360/
Dhpm_interrupt.h910 void isr(void) __attribute__((section(".isr_vector")));\
911 EXTERN_C void ISR_NAME_M(irq_num)(void) __attribute__((section(".isr_vector")));\
931 void isr(void) __attribute__((section(".isr_s_vector")));\
932 EXTERN_C void ISR_NAME_S(irq_num)(void) __attribute__((section(".isr_s_vector")));\
947 void isr(void) __attribute__((section(".isr_vector")));\
948 EXTERN_C void ISR_NAME_M(irq_num)(void) __attribute__((section(".isr_vector")));\
954 void isr(void) __attribute__((section(".isr_vector")));\
955 EXTERN_C void ISR_NAME_S(irq_num)(void) __attribute__((section(".isr_vector")));\
969 void isr(void) __attribute__((section(".isr_vector")));\
970 EXTERN_C void mchtmr_isr(void) __attribute__((section(".isr_vector"))); \
[all …]
/device/soc/esp/esp32/components/osal/port/xtensa/
Dxtensa_vector_defaults.S30 .section .iram1,"ax"
54 .section .iram1,"ax"
72 .section .iram1,"ax"
91 .section .iram1,"ax"
110 .section .iram1,"ax"
131 .section .iram1,"ax"
151 .section .iram1,"ax"
/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/os/Huawei_LiteOS/targets/hi3861v100/include/
Dlos_builddef.h76 #define LITE_OS_SEC_VEC __attribute__ ((section(".data.vector")))
129 #define LITE_OS_RAM_SECTION __attribute__ ((section(".ram.kernel")))
145 #define LITE_OS_SEC_DATA __attribute__ ((section(".data")))
153 #define LITE_OS_SEC_REMAP __attribute__ ((section(".fpb.remap")))
/device/soc/hpmicro/sdk/hpm_sdk/soc/HPM6750/
Dhpm_interrupt.h667 void isr(void) __attribute__((section(".isr_vector")));\
668 HPM_EXTERN_C void ISR_NAME_M(irq_num)(void) __attribute__((section(".isr_vector")));\
682 void isr(void) __attribute__((section(".isr_vector")));\
683 HPM_EXTERN_C void ISR_NAME_M(irq_num)(void) __attribute__((section(".isr_vector")));\
697 void isr(void) __attribute__((section(".isr_vector")));\
698 HPM_EXTERN_C void mchtmr_isr(void) __attribute__((section(".isr_vector"))); \
710 void isr(void) __attribute__((section(".isr_vector")));\
711 HPM_EXTERN_C void swi_isr(void) __attribute__((section(".isr_vector"))); \

12345678910>>...13