HomeSort by relevance Sort by last modified time
    Searched defs:mmap (Results 1 - 25 of 284) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-arm64/syscalls/
mmap.S 5 ENTRY(mmap) function
14 END(mmap)
16 ALIAS_SYMBOL(mmap64, mmap)
  /bionic/libc/arch-mips64/syscalls/
mmap.S 5 ENTRY(mmap) function
25 END(mmap)
27 ALIAS_SYMBOL(mmap64, mmap)
  /bionic/libc/arch-x86_64/syscalls/
mmap.S 5 ENTRY(mmap) function
16 END(mmap)
18 ALIAS_SYMBOL(mmap64, mmap)
  /prebuilts/go/darwin-x86/src/runtime/
mmap.go 15 // mmap calls the mmap system call. It is implemented in assembly.
19 func mmap(addr unsafe.Pointer, n uintptr, prot, flags, fd int32, off uint32) unsafe.Pointer func
cgo_mmap.go 5 // Support for memory sanitizer. See runtime/cgo/mmap.go.
18 func mmap(addr unsafe.Pointer, n uintptr, prot, flags, fd int32, off uint32) unsafe.Pointer { func
23 // that mmap uses the same value both as a pointer and
25 // TODO: Fix mmap to return two values.
35 // sysMmap calls the mmap system call. It is implemented in assembly.
38 // callCgoMmap calls the mmap function in the runtime/cgo package
  /prebuilts/go/linux-x86/src/runtime/
mmap.go 15 // mmap calls the mmap system call. It is implemented in assembly.
19 func mmap(addr unsafe.Pointer, n uintptr, prot, flags, fd int32, off uint32) unsafe.Pointer func
cgo_mmap.go 5 // Support for memory sanitizer. See runtime/cgo/mmap.go.
18 func mmap(addr unsafe.Pointer, n uintptr, prot, flags, fd int32, off uint32) unsafe.Pointer { func
23 // that mmap uses the same value both as a pointer and
25 // TODO: Fix mmap to return two values.
35 // sysMmap calls the mmap system call. It is implemented in assembly.
38 // callCgoMmap calls the mmap function in the runtime/cgo package
  /external/syslinux/com32/lib/syslinux/
memmap.c 46 struct syslinux_memmap **mmap = map; local
47 return syslinux_add_memmap(mmap, start, len, type);
52 struct syslinux_memmap *mmap; local
54 mmap = syslinux_init_memmap();
55 if (!mmap)
58 if (syslinux_scan_memory(syslinux_memory_map_callback, &mmap)) {
59 syslinux_free_memmap(mmap);
63 return mmap;
  /bionic/libc/bionic/
mmap.cpp 37 // mmap2(2) is like mmap(2), but the offset is in 4096-byte blocks, not bytes.
75 void* mmap(void* addr, size_t size, int prot, int flags, int fd, off_t offset) { function
  /external/compiler-rt/lib/profile/
WindowsMMap.c 3 * https://git.uclibc.org/uClibc/tree/utils/mmap-windows.c
5 /* mmap() replacement for Windows
32 void *mmap(void *start, size_t length, int prot, int flags, int fd, off_t offset) function
  /external/elfutils/tests/
elfgetzdata.c 41 && strcmp (argv[1], "mmap") != 0))
43 printf ("Usage: (read|mmap) files...\n");
47 bool mmap = strcmp (argv[1], "mmap") == 0; local
55 Elf *elf = elf_begin (fd, mmap ? ELF_C_READ_MMAP : ELF_C_READ, NULL);
  /external/syslinux/com32/elflink/ldlinux/
chainboot.c 45 struct syslinux_memmap *mmap = NULL; local
76 mmap = syslinux_memory_map();
77 if (!mmap)
146 syslinux_shuffle_boot_rm(fraglist, mmap, keeppxe, &regs);
151 if (mmap)
152 syslinux_free_memmap(mmap);
  /development/ndk/platforms/android-9/include/linux/
android_pmem.h 44 int (*mmap) (struct file *, struct vm_area_struct *); member in struct:pmem_file_operations
  /device/linaro/bootloader/arm-trusted-firmware/lib/aarch64/
xlat_tables.c 71 static mmap_region_t mmap[MAX_MMAP_REGIONS + 1]; variable
77 debug_print("mmap:\n");
78 mmap_region_t *mm = mmap;
91 mmap_region_t *mm = mmap;
92 mmap_region_t *mm_last = mm + sizeof(mmap) / sizeof(mmap[0]) - 1;
103 /* Find correct place in mmap to insert new region */
279 init_xlation_table(mmap, 0, l1_xlation_table, 1);
  /external/syslinux/com32/modules/
pmload.c 64 struct syslinux_memmap *mmap = NULL, *amap = NULL; local
79 mmap = syslinux_memory_map();
80 amap = syslinux_dup_memmap(mmap);
81 if (!mmap || !amap)
85 syslinux_dump_memmap(mmap);
173 syslinux_dump_memmap(mmap);
183 syslinux_shuffle_boot_pm(ml, mmap, 0, &regs);
189 syslinux_free_memmap(mmap);
  /prebuilts/go/darwin-x86/src/syscall/
syscall_linux_arm.go 133 func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error) { func
syscall_linux_mipsx.go 137 func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error) { func
  /prebuilts/go/linux-x86/src/syscall/
syscall_linux_arm.go 133 func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error) { func
syscall_linux_mipsx.go 137 func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error) { func
  /prebuilts/ndk/r10/platforms/android-12/arch-arm/usr/include/linux/
android_pmem.h 44 int (*mmap) (struct file *, struct vm_area_struct *); member in struct:pmem_file_operations
  /prebuilts/ndk/r10/platforms/android-12/arch-mips/usr/include/linux/
android_pmem.h 44 int (*mmap) (struct file *, struct vm_area_struct *); member in struct:pmem_file_operations
  /prebuilts/ndk/r10/platforms/android-12/arch-x86/usr/include/linux/
android_pmem.h 44 int (*mmap) (struct file *, struct vm_area_struct *); member in struct:pmem_file_operations
  /prebuilts/ndk/r10/platforms/android-13/arch-arm/usr/include/linux/
android_pmem.h 44 int (*mmap) (struct file *, struct vm_area_struct *); member in struct:pmem_file_operations
  /prebuilts/ndk/r10/platforms/android-13/arch-mips/usr/include/linux/
android_pmem.h 44 int (*mmap) (struct file *, struct vm_area_struct *); member in struct:pmem_file_operations
  /prebuilts/ndk/r10/platforms/android-13/arch-x86/usr/include/linux/
android_pmem.h 44 int (*mmap) (struct file *, struct vm_area_struct *); member in struct:pmem_file_operations

Completed in 636 milliseconds

1 2 3 4 5 6 7 8 91011>>