OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UncheckedMalloc
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/base/process/
memory.cc
21
if (!
UncheckedMalloc
(alloc_size, result))
memory.h
74
BASE_EXPORT WARN_UNUSED_RESULT bool
UncheckedMalloc
(size_t size,
memory_win.cc
91
bool
UncheckedMalloc
(size_t size, void** result) {
memory_unittest.cc
114
// to implement EnableTerminationOnOutOfMemory() with
UncheckedMalloc
() under
397
// initialization - and test that
UncheckedMalloc
and UncheckedCalloc
403
// TODO(b.kelemen): make
UncheckedMalloc
and UncheckedCalloc work
405
//
UncheckedMalloc
() and UncheckedCalloc() work as regular malloc()/calloc()
408
TEST_F(OutOfMemoryHandledTest,
UncheckedMalloc
) {
411
// to implement EnableTerminationOnOutOfMemory() with
UncheckedMalloc
() under
416
EXPECT_TRUE(base::
UncheckedMalloc
(kSafeMallocSize, &value_));
420
EXPECT_FALSE(base::
UncheckedMalloc
(test_size_, &value_));
memory_linux.cc
16
// Used by
UncheckedMalloc
. If tcmalloc is linked to the executable
201
bool
UncheckedMalloc
(size_t size, void** result) {
/external/chromium_org/skia/ext/
SkMemory_new_handler.cpp
54
// TODO(b.kelemen): we should always use
UncheckedMalloc
but currently it
60
ignore_result(base::
UncheckedMalloc
(size, &result));
Completed in 809 milliseconds