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

/fuchsia/zircon/system/ulib/fbl/
H A Dalloc_checker.cpp32 void* checked(size_t size, AllocChecker* ac, void* mem) { function in namespace:fbl::__anon1021
61 // checked versions in terms of those rather than calling malloc
75 return fbl::checked(size, ac, operator new(size, std::nothrow_t()));
79 return fbl::checked(size, ac, operator new[](size, std::nothrow_t()));
85 return fbl::checked(size, ac, operator new(size, __GET_CALLER(), std::nothrow_t()));
89 return fbl::checked(size, ac, operator new[](size, __GET_CALLER(), std::nothrow_t()));

Completed in 71 milliseconds