• Home
  • Raw
  • Download

Lines Matching full:allocated

126  * @brief Free memory nodes allocated by the specified task.
130 * <li>This API is used to free all memory nodes allocated by the specified task.</li>
134 * @param taskID [IN] The task ID and all memory nodes allocated by this task will be freed.
137 * @retval #LOS_OK All memory nodes allocated by this task are freed successfully.
250 * @param pool [IN] Pointer to the memory pool that contains the memory block to be allocated.
251 * @param size [IN] Size of the memory block to be allocated (unit: byte).
253 * @retval #NULL The memory fails to be allocated.
254 …@retval #VOID* The memory is successfully allocated with the starting address of the alloc…
267 * <li>This API is used to free specified dynamic memory that has been allocated.</li>
271 …* <li>The input ptr parameter must be allocated by LOS_MemAlloc or LOS_MemAllocAlign or LOS_MemRea…
300 * <li>The input ptr parameter must be allocated by LOS_MemAlloc or LOS_MemAllocAlign.</li>
303 …* <li>The size of the input parameter size must be aligned as follows: 1) if the ptr is allocated
304 …* it must be four byte-aligned; 2) if the ptr is allocated by LOS_MemAllocAlign, it must be aligne…
312 * @retval #NULL The memory fails to be re-allocated.
313 …* @retval #VOID* The memory is successfully re-allocated with the starting address of the new me…
337 … @param pool [IN] Pointer to the memory pool that contains the memory blocks to be allocated.
338 * @param size [IN] Size of the memory to be allocated.
341 * @retval #NULL The memory fails to be allocated.
342 …* @retval #VOID* The memory is successfully allocated with the starting address of the allocated