Searched refs:h_Mem (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/sys/contrib/ncsw/inc/etc/
H A Dmem_ext.h188 @Param[in] h_Mem - Handle to memory segment.
192 void MEM_Free(t_Handle h_Mem);
199 @Param[in] h_Mem - Handle to memory segment.
203 void * MEM_Get(t_Handle h_Mem);
212 @Param[in] h_Mem - Handle to memory segment.
224 uint16_t MEM_GetN(t_Handle h_Mem, uint32_t num, void *array[]);
231 @Param[in] h_Mem - Handle to memory segment.
236 t_Error MEM_Put(t_Handle h_Mem, void *p_Block);
273 @Param[in] h_Mem - Handle to memory segment.
277 void MEM_CheckLeaks(t_Handle h_Mem);
[all...]
/freebsd-11-stable/sys/contrib/ncsw/Peripherals/FM/
H A Dfm_muram.c52 t_Handle h_Mem; member in struct:__anon8244
69 t_Handle h_Mem; local
94 if ((MM_Init(&h_Mem, baseAddress, size) != E_OK) || (!h_Mem))
104 p_FmMuram->h_Mem = h_Mem;
113 if (p_FmMuram->h_Mem)
114 MM_Free(p_FmMuram->h_Mem);
127 SANITY_CHECK_RETURN_VALUE(p_FmMuram->h_Mem, E_INVALID_HANDLE, NULL);
129 addr = (uintptr_t)MM_Get(p_FmMuram->h_Mem, siz
[all...]
/freebsd-11-stable/sys/contrib/ncsw/etc/
H A Dncsw_mem.c121 static t_Error DebugMemGet(t_Handle h_Mem, void *p_Block, uintptr_t ownerAddress) argument
123 t_MemorySegment *p_Mem = (t_MemorySegment *)h_Mem;
149 static t_Error DebugMemPut(t_Handle h_Mem, void *p_Block) argument
151 t_MemorySegment *p_Mem = (t_MemorySegment *)h_Mem;
563 void MEM_Free(t_Handle h_Mem) argument
565 t_MemorySegment *p_Mem = (t_MemorySegment*)h_Mem;
569 MEM_CheckLeaks(h_Mem);
616 void * MEM_Get(t_Handle h_Mem) argument
618 t_MemorySegment *p_Mem = (t_MemorySegment *)h_Mem;
627 ASSERT_COND(h_Mem);
647 MEM_GetN(t_Handle h_Mem, uint32_t num, void *array[]) argument
688 MEM_Put(t_Handle h_Mem, void *p_Block) argument
716 MEM_CheckLeaks(t_Handle h_Mem) argument
[all...]

Completed in 66 milliseconds