Searched refs:need_discard (Results 1 - 4 of 4) sorted by relevance

/external/valgrind/main/coregrind/
H A Dpub_core_aspacemgr.h257 If *need_discard is True after a successful return, the caller
260 extern SysRes VG_(am_munmap_client)( /*OUT*/Bool* need_discard,
315 *need_discard is True after a successful return, the caller should
317 extern Bool VG_(am_extend_map_client)( /*OUT*/Bool* need_discard,
325 mapping. If *need_discard is True after a successful return, the
328 extern Bool VG_(am_relocate_nooverlap_client)( /*OUT*/Bool* need_discard,
H A Dm_mallocfree.c894 Bool need_discard = False; local
895 sres = VG_(am_munmap_client)(&need_discard, (Addr) sb, cszB);
906 if (need_discard)
/external/valgrind/main/coregrind/m_aspacemgr/
H A Daspacemgr-linux.c2632 SysRes am_munmap_both_wrk ( /*OUT*/Bool* need_discard, argument
2642 *need_discard = False;
2671 *need_discard = d;
2680 If *need_discard is True after a successful return, the caller
2684 SysRes VG_(am_munmap_client)( /*OUT*/Bool* need_discard, argument
2687 return am_munmap_both_wrk( need_discard, start, len, True/*client*/ );
2695 Bool need_discard; local
2696 SysRes r = am_munmap_both_wrk( &need_discard,
2701 aspacem_assert(!need_discard);
2958 *need_discard i
2961 am_extend_map_client( Bool* need_discard, const NSegment* seg, SizeT delta ) argument
3020 am_relocate_nooverlap_client( Bool* need_discard, Addr old_addr, SizeT old_len, Addr new_addr, SizeT new_len ) argument
[all...]
/external/valgrind/main/coregrind/m_ume/
H A Dmacho.c410 Bool need_discard = False; local
411 res = VG_(am_munmap_client)(&need_discard, (Addr)*out_stack_start, HACK);
413 vg_assert(!need_discard); // True == wtf?

Completed in 1501 milliseconds