Searched refs:mmaped (Results 1 – 8 of 8) sorted by relevance
/openbmc/linux/tools/lib/bpf/ |
H A D | libbpf.c | 525 void *mmaped; member 1525 void *mmaped; in bpf_map_mmap_resize() local 1527 if (!map->mmaped) in bpf_map_mmap_resize() 1533 mmaped = mmap(NULL, new_sz, PROT_READ | PROT_WRITE, MAP_SHARED | MAP_ANONYMOUS, -1, 0); in bpf_map_mmap_resize() 1534 if (mmaped == MAP_FAILED) in bpf_map_mmap_resize() 1537 memcpy(mmaped, map->mmaped, min(old_sz, new_sz)); in bpf_map_mmap_resize() 1538 munmap(map->mmaped, old_sz); in bpf_map_mmap_resize() 1539 map->mmaped = mmaped; in bpf_map_mmap_resize() 1677 map->mmaped = mmap(NULL, mmap_sz, PROT_READ | PROT_WRITE, in bpf_object__init_internal_map() 1679 if (map->mmaped == MAP_FAILED) { in bpf_object__init_internal_map() [all …]
|
H A D | libbpf.h | 1537 void **mmaped; member
|
/openbmc/linux/drivers/video/fbdev/aty/ |
H A D | mach64_cursor.c | 75 if (par->mmaped) in atyfb_cursor()
|
H A D | atyfb.h | 160 u8 mmaped; member
|
H A D | atyfb_base.c | 1594 par->mmaped = 0; in atyfb_open() 1698 was_mmaped = par->mmaped; in atyfb_release() 1700 par->mmaped = 0; in atyfb_release() 1994 if (!par->mmaped) in atyfb_mmap() 1995 par->mmaped = 1; in atyfb_mmap()
|
/openbmc/openbmc/poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/ |
H A D | endianess-header.patch | 94 /* check_ptr checks that a pointer is in the mmaped file and doesn't
|
/openbmc/linux/tools/bpf/bpftool/ |
H A D | gen.c | 818 codegen_maps_skeleton(struct bpf_object *obj, size_t map_cnt, bool mmaped) in codegen_maps_skeleton() argument 854 if (mmaped && is_internal_mmapable_map(map, ident, sizeof(ident))) { in codegen_maps_skeleton()
|
/openbmc/linux/tools/perf/Documentation/ |
H A D | perf-record.txt | 563 The maximal allowed value is a quarter of the size of mmaped data pages. 566 writing thread finds some new data in the mmaped buffer the data is extracted,
|