Lines Matching +full:memory +full:- +full:region
4 * SPDX-License-Identifier: Apache-2.0
18 /* Access permissions for memory regions */
29 /** Describe one memory region */
31 /** Start address of a memory region */
34 /** End address of a memory region */
37 /** Memory region attributes */
45 * Memory region descriptions used for GDB memory access.
47 * This array specifies which region of memory GDB can access
49 * memory read/write in GDB stub to memory that can be
50 * legally accessed without resulting in memory faults.
55 * Number of Memory Regions.
79 * @brief Check if a memory block can be read.
81 * This checks if the specified memory block can be read.
83 * @param[in] addr Starting address of the memory block
84 * @param[in] len Size of memory block
85 * @param[out] align Read alignment of region
87 * @return True if memory block can be read, false otherwise.
92 * @brief Check if a memory block can be written into.
94 * This checks if the specified memory block can be written into.
96 * @param[in] addr Starting address of the memory block
97 * @param[in] len Size of memory block
98 * @param[out] align Write alignment of region