Home | History | Annotate | Download | only in memcheck

Lines Matching full:allocated

38 /* Notifies the emulator about new memory block being allocated.
40 * space that contains allocated block information. Note that 'libc_pid' field
75 /* Describes memory block allocated from the heap. This structure is passed
77 * the emulator about new memory block being allocated from the heap. The entire
83 /* Poniter to the memory block actually allocated from the heap. Note that
128 * actually allocated in previous calls to malloc, memalign, or realloc. Since
129 * we don't keep this information directlry in the allocated block, but rather
140 * anywhere inside an allocated block, including guarding areas. Emulator
141 * will respond with information about allocated block that contains this
209 * that allocated memory. */
219 /* Indicates that memory has been allocated before process started execution.
286 * Pointer to the allocated memory returned to the malloc caller.
294 /* Gets total size of the allocated block for the given descriptor.
296 * desc - Descriptor for the memory block, allocated in malloc handler.
298 * Total size of memory block allocated in malloc handler.
306 /* Gets the end of the allocated block for the given descriptor.
308 * desc - Descriptor for the memory block, allocated in malloc handler.
310 * Pointer to the end of the allocated block (next byte past the block).
318 /* Gets the end of the allocated block available to the user for the given
321 * desc - Descriptor for the memory block, allocated in malloc handler.
323 * Pointer to the end of the allocated block available to the user (next byte