Lines Matching defs:memory
28 char *memory = (char *)malloc(memsize);
29 if (memory == NULL) {
30 EXPECT_PTRNE("munlockall_0100", memory, NULL);
33 memset(memory, '\0', memsize);
39 free(memory);
40 memory = NULL;
53 char *memory = (char *)malloc(memsize);
54 if (memory == NULL) {
55 EXPECT_PTRNE("munlockall_0200", memory, NULL);
58 memset(memory, '\0', memsize);
61 free(memory);
62 memory = NULL;