OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UncheckedCalloc
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/base/process/
memory.cc
12
bool
UncheckedCalloc
(size_t num_items, size_t size, void** result) {
memory.h
76
BASE_EXPORT WARN_UNUSED_RESULT bool
UncheckedCalloc
(size_t num_items,
memory_unittest.cc
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()
424
TEST_F(OutOfMemoryHandledTest,
UncheckedCalloc
) {
427
// to implement EnableTerminationOnOutOfMemory() with
UncheckedCalloc
() under
432
EXPECT_TRUE(base::
UncheckedCalloc
(1, kSafeMallocSize, &value_));
440
base::
UncheckedCalloc
(kSafeCallocItems, kSafeCallocSize, &value_));
447
EXPECT_FALSE(base::
UncheckedCalloc
(1, test_size_, &value_));
/external/chromium_org/skia/ext/
SkMemory_new_handler.cpp
85
// TODO(b.kelemen): we should always use
UncheckedCalloc
but currently it
91
ignore_result(base::
UncheckedCalloc
(size, 1, &result));
Completed in 77 milliseconds