/AliOS-Things-master/hardware/chip/haas1000/drivers/platform/hal/ |
A D | hal_overlay.h | 11 #define HAL_OVERLAY_TEXT0_LOC __attribute__((section(".overlay_text0"))) 12 #define HAL_OVERLAY_TEXT1_LOC __attribute__((section(".overlay_text1"))) 13 #define HAL_OVERLAY_TEXT2_LOC __attribute__((section(".overlay_text2"))) 14 #define HAL_OVERLAY_TEXT3_LOC __attribute__((section(".overlay_text3"))) 15 #define HAL_OVERLAY_TEXT4_LOC __attribute__((section(".overlay_text4"))) 16 #define HAL_OVERLAY_TEXT5_LOC __attribute__((section(".overlay_text5"))) 17 #define HAL_OVERLAY_TEXT6_LOC __attribute__((section(".overlay_text6"))) 18 #define HAL_OVERLAY_TEXT7_LOC __attribute__((section(".overlay_text7"))) 20 #define HAL_OVERLAY_RODATA0_LOC __attribute__((section(".overlay_rodata0"))) 29 #define HAL_OVERLAY_DATA0_LOC __attribute__((section(".overlay_data0"))) [all …]
|
A D | plat_types.h | 15 #define __TCMDATA __attribute__((section(".tcmdata"))) 16 #define __RAMCODE __attribute__((section(".ramcode"))) 17 #define __RAMDATA __attribute__((section(".ramdata"))) 24 #define __RRAMCODE __attribute__((section(".rram_text"))) 26 #define __RRAMBSS __attribute__((section(".rram_bss"))) 34 #define __SRAMBSS __attribute__((section(".sram_bss"))) 35 #define __AUDMA __attribute__((section(".audma"))) 47 #define __TCMDATA __attribute__((section(".tcmdata"))) 48 #define __RAMCODE __attribute__((section(".ramcode"))) 49 #define __RAMDATA __attribute__((section(".ramdata"))) [all …]
|
A D | hal_location.h | 11 #define HAL_SEC_DEF_A(s, d, n) __attribute__((section(#s #d #n))) n 12 #define HAL_SEC_DEF(section, name) HAL_SEC_DEF_A(section, ., name) argument 13 #define HAL_SEC_LOC(section) HAL_SEC_DEF_A(section, , ) argument
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/services/nvrecord/ |
A D | nvrec_config.h | 56 bool nvrec_config_has_section(const nvrec_config_t *config, const char *section); 60 bool nvrec_config_has_key(const nvrec_config_t *config, const char *section, const char *key); 66 int nvrec_config_get_int(const nvrec_config_t *config, const char *section, const char *key, int de… 71 bool nvrec_config_get_bool(const nvrec_config_t *config, const char *section, const char *key, bool… 77 const char *nvrec_config_get_string(const nvrec_config_t *config, const char *section, const char *… 82 void nvrec_config_set_int(nvrec_config_t *config, const char *section, const char *key, int value); 87 void nvrec_config_set_bool(nvrec_config_t *config, const char *section, const char *key, bool value… 92 void nvrec_config_set_string(nvrec_config_t *config, const char *section, const char *key, const ch… 93 nvrec_section_t *nvrec_section_find(const nvrec_config_t *config, const char *section);
|
/AliOS-Things-master/components/freetype/src/tools/docmaker/ |
A D | formatter.py | 28 for section in self.sections: 60 def toc_section_enter( self, section ): argument 63 def toc_section_exit( self, section ): argument 86 for section in chap.sections: 133 def section_enter( self, section ): argument 154 def section_exit( self, section ): argument 162 self.section_enter( section ) 164 for name in section.block_names: 179 self.section_exit( section ) 185 for section in self.sections: [all …]
|
A D | tohtml.py | 220 def make_section_url( self, section ): argument 428 def toc_section_enter( self, section ): argument 431 section.title + '</a></td><td>' 435 def toc_section_exit( self, section ): argument 466 def section_enter( self, section ): argument 470 print section.title 474 for b in section.blocks.values(): 488 count = len( section.block_names ) 559 def section_exit( self, section ): argument 563 for section in self.sections: [all …]
|
A D | content.py | 347 section = DocSection( section_name ) 348 self.sections[section_name] = section 349 self.section = section 351 self.section = self.sections[section_name] 441 section = self.sections[sec] 442 section.chapter = chap 443 section.reorder() 444 chap.sections.append( section ) 476 self.section = processor.section 500 processor.section.add_def( self ) [all …]
|
/AliOS-Things-master/components/py_engine/engine/tools/ |
A D | gen-cpydiff.py | 199 section = output.class_.split(",") 200 for i in range(len(section)): 201 section[i] = section[i].rstrip() 202 if section[i] in CLASSMAP: 203 section[i] = CLASSMAP[section[i]] 209 rst.write(section[i] + "\n") 217 class_ = section 238 for section in INDEXPRIORITY: 239 if section in toctree: 241 toctree.remove(section) [all …]
|
A D | mpy_ld.py | 330 return s.section.addr + s["st_value"] 406 sec = sym.section 496 sec = s.section 551 addr = s.section.addr + s["st_value"] 556 sec = s.section 573 if s.section.name.startswith(".text"): 608 log_name = s.section.name 640 sec = s.section 791 sym.section = env.qstr_val_section 793 sym.section = env.qstr_obj_section [all …]
|
/AliOS-Things-master/components/SDL2/src/image/Xcode/showimage/showimage.xcodeproj/ |
A D | project.pbxproj | 9 /* Begin PBXBuildFile section */ 17 /* End PBXBuildFile section */ 19 /* Begin PBXFileReference section */ 31 /* End PBXFileReference section */ 46 /* Begin PBXGroup section */ 121 /* End PBXGroup section */ 134 /* Begin PBXNativeTarget section */ 154 /* End PBXNativeTarget section */ 156 /* Begin PBXProject section */ 179 /* End PBXProject section */ [all …]
|
/AliOS-Things-master/components/drivers/core/base/include/drivers/ |
A D | u_ld.h | 71 #define OS_CORE_DRIVER_ATT __attribute__((used, section(".core_driver_entry"))) 72 #define OS_BUS_DRIVER_ATT __attribute__((used, section(".bus_driver_entry"))) 73 #define OS_EARLY_DRIVER_ATT __attribute__((used, section(".early_driver_entry"))) 74 #define OS_VFS_DRIVER_ATT __attribute__((used, section(".vfs_driver_entry"))) 75 #define OS_LEVEL0_DRIVER_ATT __attribute__((used, section(".level0_driver_entry"))) 76 #define OS_LEVEL1_DRIVER_ATT __attribute__((used, section(".level1_driver_entry"))) 77 #define OS_LEVEL2_DRIVER_ATT __attribute__((used, section(".level2_driver_entry"))) 78 #define OS_LEVEL3_DRIVER_ATT __attribute__((used, section(".level3_driver_entry"))) 79 #define OS_POST_DRIVER_ATT __attribute__((used, section(".post_driver_entry")))
|
/AliOS-Things-master/solutions/miniapp_agent_demo/miniapp/ |
A D | app.acss | 18 .page-section { 23 .page-section-title { 27 .page-section-demo { 31 .page-section-btns { 38 .page-section-btns>view { 47 .page-section-btns>view+view {
|
/AliOS-Things-master/solutions/miniapp_agent_demo/miniapp/pages/linkLP/ |
A D | linkLP.axml | 3 <view class="page-section"> 4 <view class="page-section-title">设备三元组信息</view> 27 <view class="page-section"> 28 <view class="page-section-title">三元组下发</view> 44 <view class="page-section"> 47 <view class="page-section"> 48 <view class="page-section-title">设备状态</view>
|
/AliOS-Things-master/solutions/miniapp_agent_demo/miniapp/pages/netCfg/ |
A D | netCfg.axml | 3 <view class="page-section"> 4 <view class="page-section-title">蓝牙配网</view> 25 <view class="page-section"> 26 <view class="page-section-title">网络信息</view> 45 <view class="page-section"> 48 <view class="page-section"> 49 <view class="page-section-title">配网状态</view>
|
/AliOS-Things-master/components/SDL2/src/image/Xcode/SDL_image.xcodeproj/ |
A D | project.pbxproj | 9 /* Begin PBXBuildFile section */ 50 /* End PBXBuildFile section */ 76 /* Begin PBXFileReference section */ 106 /* End PBXFileReference section */ 129 /* Begin PBXGroup section */ 230 /* End PBXGroup section */ 250 /* Begin PBXNativeTarget section */ 311 /* End PBXNativeTarget section */ 313 /* Begin PBXProject section */ 339 /* End PBXProject section */ [all …]
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/os/ |
A D | FreeRTOS.h | 75 …X_PRIORITIES must be defined in FreeRTOSConfig.h. See the Configuration section of the FreeRTOS A… 79 … be defined in FreeRTOSConfig.h as either 1 or 0. See the Configuration section of the FreeRTOS A… 83 … be defined in FreeRTOSConfig.h as either 1 or 0. See the Configuration section of the FreeRTOS A… 87 … be defined in FreeRTOSConfig.h as either 1 or 0. See the Configuration section of the FreeRTOS A… 91 … be defined in FreeRTOSConfig.h as either 1 or 0. See the Configuration section of the FreeRTOS A… 95 … be defined in FreeRTOSConfig.h as either 1 or 0. See the Configuration section of the FreeRTOS A… 103 … be defined in FreeRTOSConfig.h as either 1 or 0. See the Configuration section of the FreeRTOS A… 107 … be defined in FreeRTOSConfig.h as either 1 or 0. See the Configuration section of the FreeRTOS A… 111 … be defined in FreeRTOSConfig.h as either 1 or 0. See the Configuration section of the FreeRTOS A… 115 … be defined in FreeRTOSConfig.h as either 1 or 0. See the Configuration section of the FreeRTOS A… [all …]
|
A D | mpu_wrappers.h | 100 #define PRIVILEGED_FUNCTION __attribute__((section("privileged_functions"))) 101 #define PRIVILEGED_DATA __attribute__((section("privileged_data")))
|
/AliOS-Things-master/components/SDL2/src/image/Xcode-iOS/SDL_image.xcodeproj/ |
A D | project.pbxproj | 9 /* Begin PBXAggregateTarget section */ 32 /* End PBXAggregateTarget section */ 34 /* Begin PBXBuildFile section */ 71 /* End PBXBuildFile section */ 94 /* End PBXFileReference section */ 113 /* Begin PBXGroup section */ 173 /* End PBXGroup section */ 233 /* End PBXNativeTarget section */ 235 /* Begin PBXProject section */ 272 /* End PBXProject section */ [all …]
|
/AliOS-Things-master/components/osal_aos/include/aos/ |
A D | compiler.h | 66 #define SECTION(name) __attribute__((section(name))) 114 #define SECTION(name) __attribute__((section(name))) 168 #define SECTION(name) __attribute__((section(name)))
|
/AliOS-Things-master/components/jsoncpp/doc/ |
A D | jsoncpp.dox | 3 \section _intro Introduction 40 \section _features Features 50 \section _example Code example 89 \section _advanced Advanced usage 126 \section _pbuild Build instructions 134 \section _news What's New? 140 \section _rlinks Related links 145 \section _plinks Old project links 152 \section _license License
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/utils/boot_struct/ |
A D | boot_struct.c | 22 #define BOOT_STRUCT_LOC __attribute((section(".boot_struct"))) 198 #define REBOOT_PARAM_LOC __attribute((section(".bss.reboot_param"))) 200 #define REBOOT_PARAM_LOC __attribute((section(".reboot_param")))
|
/AliOS-Things-master/components/SDL2/docs/ |
A D | README-porting.md | 17 take a look at the large section labelled: 21 Add a section for your platform, and then re-run autogen.sh and build! 27 add a section for your platform, and create a custom SDL_config_{platform}.h,
|
/AliOS-Things-master/hardware/chip/rtl872xd/script/ |
A D | rlx8711B-symbol-v02-img2.ld | 31 /* image1 entry, this section should in RAM and fixed address for ROM */ 43 /* Add . to assign the start address of the section */ 44 /* to prevent the change of the start address by ld doing section alignment */
|
/AliOS-Things-master/hardware/board/haas100/startup/ |
A D | startup_gcc.s | 36 .section .stack 51 .section .heap 68 .section .isr_vector
|
/AliOS-Things-master/hardware/board/haaseduk1/startup/ |
A D | startup_gcc.s | 36 .section .stack 51 .section .heap 68 .section .isr_vector
|