HomeSort by relevance Sort by last modified time
    Searched defs:map_address (Results 1 - 6 of 6) sorted by null

  /external/google-breakpad/src/processor/
map_serializers-inl.h 224 char *map_address = dest; local
239 offsets[index] = static_cast<uint32_t>(dest - map_address);
  /external/ltp/testcases/kernel/mem/mtest06/
mmap1.c 66 static char *volatile map_address; variable
151 map_address = mmap(distant_area, (size_t) args[1],
154 if (map_address == (void *)-1) {
173 tst_resm(TINFO, "map address = %p", map_address);
176 map_address[j] = 'a';
185 i, args[2], (char *)map_address);
197 if (munmap(map_address, (size_t) args[1]) == -1) {
213 pthread_self(), map_address, args[2]);
218 "read from address %p", args[2], map_address);
236 (char *)map_address);
    [all...]
shmat1.c 92 void *map_address; /* pointer to file in memory */ variable
164 if (scp->edi == (int)map_address) {
168 } else if (scp->esi == (int)map_address) {
178 (unsigned long)scp->esi, map_address);
248 if ((map_address = shmat(shmid, NULL, 0))
251 map_address);
256 /* Write 'X' into map_address. We are not sure about
260 memset(map_address, 'X', 1);
266 STR_SHMAT, pthread_self(), map_address);
275 if (shmdt((void *)map_address) == -1)
    [all...]
  /external/ltp/testcases/kernel/mem/mtest07/
shm_test.c 281 char *map_address = NULL; local
324 dprt("main(): thrd_ndx = %d map_address = %#x map_size = %d\n",
325 thrd_ndx, map_address, map_size);
  /external/elfutils/libelf/
elf_begin.c 53 file_read_ar (int fildes, void *map_address, off_t offset, size_t maxsize,
59 elf = allocate_elf (fildes, map_address, offset, maxsize, cmd, parent,
75 get_shnum (void *map_address, unsigned char *e_ident, int fildes, off_t offset,
152 if (likely (map_address != NULL) && e_ident[EI_DATA] == MY_ELFDATA
154 || (((size_t) ((char *) map_address + ehdr.e32->e_shoff))
157 result = ((Elf32_Shdr *) ((char *) map_address + ehdr.e32->e_shoff
163 if (likely (map_address != NULL))
166 memcpy (&size, &((Elf32_Shdr *) ((char *) map_address
202 if (likely (map_address != NULL) && e_ident[EI_DATA] == MY_ELFDATA
204 || (((size_t) ((char *) map_address + ehdr.e64->e_shoff)
604 void *map_address = NULL; local
    [all...]
libelfP.h 276 void *map_address; member in struct:Elf
470 extern Elf *__libelf_read_mmaped_file (int fildes, void *map_address,

Completed in 306 milliseconds