Lines Matching +full:memory +full:- +full:to +full:- +full:memory
4 * SPDX-License-Identifier: Apache-2.0
10 /* Map from CPU exceptions to GDB */
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 */
54 * Memory region descriptions used for GDB memory access.
56 * This array specifies which region of memory GDB can access
57 * with read/write attributes. This is used to restrict
58 * memory read/write in GDB stub to memory that can be
59 * legally accessed without resulting in memory faults.
64 * Number of Memory Regions.
73 * Note that this is similar to bin2hex() but does not force
76 * @param buf The binary array to convert
77 * @param buflen The length of the binary array to convert
78 * @param hex Address of where to store the string representation.
88 * @brief Check if a memory block can be read.
90 * This checks if the specified memory block can be read.
92 * @param[in] addr Starting address of the memory block
93 * @param[in] len Size of memory block
96 * @return True if memory block can be read, false otherwise.
101 * @brief Check if a memory block can be written into.
103 * This checks if the specified memory block can be written into.
105 * @param[in] addr Starting address of the memory block
106 * @param[in] len Size of memory block
109 * @return True if GDB stub can write to the block, false otherwise.