Home
last modified time | relevance | path

Searched refs:attr (Results 1 – 14 of 14) sorted by relevance

/hal_rpi_pico-latest/bazel/util/
Dtransition.bzl32 from. The common `src` attr tells the transition which build rule to apply
71 target_file = ctx.attr.src[0][DefaultInfo].files.to_list()[0],
79 "src": attr.label(
90 "_malloc": attr.label(default = "//bazel:empty_cc_lib"),
93 "_allowlist_function_transition": attr.label(
96 "_link_extra_libs": attr.label(default = "//bazel:empty_cc_lib"),
115 "bt_stack_config": attr.label(mandatory = True),
116 "lwip_config": attr.label(mandatory = True),
117 "enable_ble": attr.bool(default = False),
118 "enable_bt_classic": attr.bool(default = False),
[all …]
Dlabel_flag_matches.bzl7 matches = str(ctx.attr.expected_value.label) == str(ctx.attr.flag.label)
16 "expected_value": attr.label(
20 "flag": attr.label(
Dsdk_define.bzl4 val = ctx.attr.from_flag[BuildSettingInfo].value
14 direct = ["{}={}".format(ctx.attr.define_name, val)],
40 "define_name": attr.string(mandatory = True),
41 "from_flag": attr.label(mandatory = True),
/hal_rpi_pico-latest/bazel/
Dpico_btstack_make_gatt_header.bzl46 "src": attr.label(mandatory = True, allow_single_file = True),
47 "_btstack_hdr": attr.label(
51 "_make_gat_header_tool": attr.label(
Ddefs.bzl52 "srcs": attr.label_list(mandatory = True, allow_files = True),
53 "_pioasm_tool": attr.label(
/hal_rpi_pico-latest/src/rp2_common/cmsis/stub/CMSIS/Core/Include/
Dmpu_armv8.h188 __STATIC_INLINE void ARM_MPU_SetMemAttrEx(MPU_Type* mpu, uint8_t idx, uint8_t attr) in ARM_MPU_SetMemAttrEx() argument
198 mpu->MAIR[reg] = ((mpu->MAIR[reg] & ~mask) | ((attr << pos) & mask)); in ARM_MPU_SetMemAttrEx()
205 __STATIC_INLINE void ARM_MPU_SetMemAttr(uint8_t idx, uint8_t attr) in ARM_MPU_SetMemAttr() argument
207 ARM_MPU_SetMemAttrEx(MPU, idx, attr); in ARM_MPU_SetMemAttr()
215 __STATIC_INLINE void ARM_MPU_SetMemAttr_NS(uint8_t idx, uint8_t attr) in ARM_MPU_SetMemAttr_NS() argument
217 ARM_MPU_SetMemAttrEx(MPU_NS, idx, attr); in ARM_MPU_SetMemAttr_NS()
/hal_rpi_pico-latest/src/rp2_common/cmsis/stub/CMSIS/Core/Include/m-profile/
Darmv8m_mpu.h257 __STATIC_INLINE void ARM_MPU_SetMemAttrEx(MPU_Type* mpu, uint8_t idx, uint8_t attr) in ARM_MPU_SetMemAttrEx() argument
267 mpu->MAIR[reg] = ((mpu->MAIR[reg] & ~mask) | ((attr << pos) & mask)); in ARM_MPU_SetMemAttrEx()
274 __STATIC_INLINE void ARM_MPU_SetMemAttr(uint8_t idx, uint8_t attr) in ARM_MPU_SetMemAttr() argument
276 ARM_MPU_SetMemAttrEx(MPU, idx, attr); in ARM_MPU_SetMemAttr()
284 __STATIC_INLINE void ARM_MPU_SetMemAttr_NS(uint8_t idx, uint8_t attr) in ARM_MPU_SetMemAttr_NS() argument
286 ARM_MPU_SetMemAttrEx(MPU_NS, idx, attr); in ARM_MPU_SetMemAttr_NS()
/hal_rpi_pico-latest/src/rp2_common/pico_standard_link/
Dpico_flash_region.bzl8 "FLASH(rx) : ORIGIN = 0x10000000, LENGTH = " + str(ctx.attr.flash_region_size),
28 "flash_region_size": attr.int(mandatory = True),
/hal_rpi_pico-latest/bazel/toolchain/
Dobjcopy.bzl34 "src": attr.label(
39 "out": attr.output(
/hal_rpi_pico-latest/tools/
Duf2_aspect.bzl11 allowed_types = ctx.attr.from_rules.split(",")
61 "from_rules": attr.string(
65 "_picotool": attr.label(default = "@picotool//:picotool", executable = True, cfg = "exec"),
Dextract_build_defines.py237 for attr in applicable_config_obj['attrs']:
238 if attr != 'default': # totally fine for defaults to vary per-platform
239 applicable_value = applicable_config_obj['attrs'][attr]
240 other_value = other_config_obj['attrs'][attr]
242 …ion(build_mismatch_exception_message(config_name, "attribute '{}'".format(attr), applicable_config…
Dextract_cmake_configs.py237 for attr in applicable_config_obj['attrs']:
238 if attr != 'default': # totally fine for defaults to vary per-platform
239 applicable_value = applicable_config_obj['attrs'][attr]
240 other_value = other_config_obj['attrs'][attr]
242 …ion(build_mismatch_exception_message(config_name, "attribute '{}'".format(attr), applicable_config…
Dextract_configs.py303 for attr in applicable_config_obj['attrs']:
304 if attr != 'default': # totally fine for defaults to vary per-platform
305 applicable_value = applicable_config_obj['attrs'][attr]
306 other_value = other_config_obj['attrs'][attr]
308 …ion(build_mismatch_exception_message(config_name, "attribute '{}'".format(attr), applicable_config…
/hal_rpi_pico-latest/src/common/pico_binary_info/include/pico/binary_info/
Dcode.h19 #define __bi_decl(name, bi, section_prefix, attr) static const attr __attribute__((section(section_… argument
47 #define __bi_decl(bi, name, attr) argument
173 …ne bi_program_build_attribute(attr) bi_string(BINARY_INFO_TAG_RASPBERRY_PI, BINARY_INFO_ID_RP_PROG… argument