OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CanAllocate
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/content/browser/loader/
resource_buffer_unittest.cc
13
EXPECT_TRUE(buf->
CanAllocate
());
21
EXPECT_TRUE(buf->
CanAllocate
());
27
EXPECT_TRUE(buf->
CanAllocate
());
36
EXPECT_TRUE(buf->
CanAllocate
());
43
EXPECT_TRUE(buf->
CanAllocate
());
99
EXPECT_FALSE(buf->
CanAllocate
());
105
EXPECT_TRUE(buf->
CanAllocate
());
115
EXPECT_FALSE(buf->
CanAllocate
());
130
EXPECT_FALSE(buf->
CanAllocate
());
134
EXPECT_FALSE(buf->
CanAllocate
());
[
all
...]
resource_buffer.h
22
// is fully reserved (at which point
CanAllocate
returns false). Allocations
34
// DCHECK(buf->
CanAllocate
());
83
bool
CanAllocate
() const;
resource_buffer.cc
77
bool ResourceBuffer::
CanAllocate
() const {
91
DCHECK(
CanAllocate
());
async_resource_handler.cc
130
if (buffer_->
CanAllocate
())
232
DCHECK(buffer_->
CanAllocate
());
286
if (!buffer_->
CanAllocate
()) {
/external/chromium_org/net/disk_cache/
block_files.h
59
bool
CanAllocate
(int block_count) const;
block_files.cc
205
bool BlockHeader::
CanAllocate
(int block_count) const {
/external/chromium_org/net/disk_cache/v3/
block_bitmaps.cc
140
if (bitmaps_[header_num].
CanAllocate
(block_count)) {
/external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.h
327
static bool
CanAllocate
(uptr size, uptr alignment) {
638
static bool
CanAllocate
(uptr size, uptr alignment) {
[
all
...]
/external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc
93
if (!a->
CanAllocate
(size, 1)) continue;
658
if (!a->
CanAllocate
(size, 1)) continue;
/external/compiler-rt/lib/asan/
asan_allocator2.cc
340
if (!PrimaryAllocator::
CanAllocate
(needed_size, alignment)) {
Completed in 71 milliseconds