Home
last modified time | relevance | path

Searched refs:pvAddress (Results 1 – 8 of 8) sorted by relevance

/trusted-firmware-m-latest/lib/ext/cryptocell-312-runtime/host/src/tests/TestAL/pal/freertos/
Dtest_pal_mem_s.c33 void Test_PalFree_s(void *pvAddress) in Test_PalFree_s() argument
35 (void)pvAddress; in Test_PalFree_s()
39 void *Test_PalRealloc_s(void *pvAddress, size_t newSize) in Test_PalRealloc_s() argument
41 (void)pvAddress; in Test_PalRealloc_s()
54 void Test_PalDMAContigBufferFree_s(void *pvAddress) in Test_PalDMAContigBufferFree_s() argument
56 (void)pvAddress; in Test_PalDMAContigBufferFree_s()
60 void *Test_PalDMAContigBufferRealloc_s(void *pvAddress, size_t newSize) in Test_PalDMAContigBufferRealloc_s() argument
62 (void)pvAddress; in Test_PalDMAContigBufferRealloc_s()
116 void Test_PalFree_s(void *pvAddress) in Test_PalFree_s() argument
123 if (pvAddress == NULL) in Test_PalFree_s()
[all …]
Dtest_pal_mem.c47 void Test_PalFree(void *pvAddress) in Test_PalFree() argument
49 if (pvAddress == NULL) in Test_PalFree()
52 PalFree(pvAddress); in Test_PalFree()
56 void *Test_PalRealloc(void *pvAddress, size_t newSize) in Test_PalRealloc() argument
58 if (pvAddress == NULL) in Test_PalRealloc()
61 return PalRealloc(pvAddress, newSize); in Test_PalRealloc()
71 void Test_PalDMAContigBufferFree(void *pvAddress) in Test_PalDMAContigBufferFree() argument
73 Test_PalFree(pvAddress); in Test_PalDMAContigBufferFree()
77 void *Test_PalDMAContigBufferRealloc(void *pvAddress, size_t newSize) in Test_PalDMAContigBufferRealloc() argument
79 return Test_PalRealloc(pvAddress, newSize); in Test_PalDMAContigBufferRealloc()
Dtest_pal_thread.c86 static void PalFree(void *pvAddress) in PalFree() argument
89 Test_PalFree(pvAddress); in PalFree()
92 Test_PalFree(pvAddress); in PalFree()
93 Test_PalFree_s(pvAddress); /* A secure caller */ in PalFree()
/trusted-firmware-m-latest/lib/ext/cryptocell-312-runtime/host/src/tests/TestAL/pal/mbedos/
Dtest_pal_mem.c32 void Test_PalFree(void *pvAddress) in Test_PalFree() argument
34 if (pvAddress == NULL) in Test_PalFree()
37 free(pvAddress); in Test_PalFree()
41 void *Test_PalRealloc(void *pvAddress, size_t newSize) in Test_PalRealloc() argument
43 if (pvAddress == NULL) in Test_PalRealloc()
46 return realloc(pvAddress, newSize); in Test_PalRealloc()
56 void Test_PalDMAContigBufferFree(void *pvAddress) in Test_PalDMAContigBufferFree() argument
58 Test_PalFree(pvAddress); in Test_PalDMAContigBufferFree()
62 void *Test_PalDMAContigBufferRealloc(void *pvAddress, size_t newSize) in Test_PalDMAContigBufferRealloc() argument
64 return Test_PalRealloc(pvAddress, newSize); in Test_PalDMAContigBufferRealloc()
/trusted-firmware-m-latest/lib/ext/cryptocell-312-runtime/host/src/tests/TestAL/pal/no_os/
Dtest_pal_mem.c35 void Test_PalFree(void *pvAddress) in Test_PalFree() argument
37 if (pvAddress == NULL) in Test_PalFree()
40 free(pvAddress); in Test_PalFree()
44 void *Test_PalRealloc(void *pvAddress, size_t newSize) in Test_PalRealloc() argument
46 if (pvAddress == NULL) in Test_PalRealloc()
49 return realloc(pvAddress, newSize); in Test_PalRealloc()
91 void Test_PalDMAContigBufferFree(void *pvAddress) in Test_PalDMAContigBufferFree() argument
93 (void)pvAddress; in Test_PalDMAContigBufferFree()
97 void *Test_PalDMAContigBufferRealloc(void *pvAddress, size_t newSize) in Test_PalDMAContigBufferRealloc() argument
99 (void)pvAddress; in Test_PalDMAContigBufferRealloc()
/trusted-firmware-m-latest/lib/ext/cryptocell-312-runtime/host/src/tests/TestAL/pal/linux/
Dtest_pal_mem.c41 void Test_PalFree(void *pvAddress) in Test_PalFree() argument
43 if (pvAddress == NULL) in Test_PalFree()
46 free(pvAddress); in Test_PalFree()
50 void *Test_PalRealloc(void *pvAddress, size_t newSize) in Test_PalRealloc() argument
52 if (pvAddress == NULL) in Test_PalRealloc()
55 return realloc(pvAddress, newSize); in Test_PalRealloc()
110 void Test_PalDMAContigBufferFree(void *pvAddress) in Test_PalDMAContigBufferFree() argument
112 (void)pvAddress; in Test_PalDMAContigBufferFree()
116 void *Test_PalDMAContigBufferRealloc(void *pvAddress, size_t newSize) in Test_PalDMAContigBufferRealloc() argument
118 (void)pvAddress; in Test_PalDMAContigBufferRealloc()
/trusted-firmware-m-latest/lib/ext/cryptocell-312-runtime/host/src/tests/TestAL/pal/include/
Dtest_pal_mem.h52 void Test_PalFree(void *pvAddress);
71 void *Test_PalRealloc(void *pvAddress, size_t newSize);
100 void Test_PalDMAContigBufferFree(void *pvAddress);
119 void *Test_PalDMAContigBufferRealloc(void *pvAddress, size_t newSize);
Dtest_pal_mem_s.h50 void Test_PalFree_s(void *pvAddress);
68 void *Test_PalRealloc_s(void *pvAddress, size_t newSize);
94 void Test_PalDMAContigBufferFree_s(void *pvAddress);
112 void *Test_PalDMAContigBufferRealloc_s(void *pvAddress, size_t newSize);