HomeSort by relevance Sort by last modified time
    Searched refs:InUse (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium_org/gpu/command_buffer/common/
id_allocator_test.cc 23 // Checks basic functionality: AllocateID, FreeID, InUse.
27 EXPECT_FALSE(allocator->InUse(1));
31 EXPECT_TRUE(allocator->InUse(id1));
36 EXPECT_TRUE(allocator->InUse(id2));
41 EXPECT_FALSE(allocator->InUse(id1));
45 EXPECT_FALSE(allocator->InUse(id2));
60 EXPECT_TRUE(allocator->InUse(ids[i]));
66 EXPECT_FALSE(allocator->InUse(id1));
68 EXPECT_TRUE(allocator->InUse(id2));
77 EXPECT_FALSE(allocator->InUse(id))
    [all...]
id_allocator.h 42 virtual bool InUse(ResourceId id) const = 0;
56 virtual bool InUse(ResourceId id) const OVERRIDE;
88 virtual bool InUse(ResourceId id) const OVERRIDE;
id_allocator.cc 68 bool IdAllocator::InUse(ResourceId id) const {
117 bool NonReusedIdAllocator::InUse(ResourceId id) const {
  /external/chromium_org/gpu/command_buffer/service/
shader_manager_unittest.cc 114 EXPECT_FALSE(shader1->InUse());
236 EXPECT_FALSE(shader1->InUse());
239 EXPECT_TRUE(shader1->InUse());
241 EXPECT_TRUE(shader1->InUse());
247 EXPECT_TRUE(shader1->InUse());
254 EXPECT_FALSE(shader1->InUse());
256 EXPECT_TRUE(shader1->InUse());
258 EXPECT_TRUE(shader1->InUse());
260 EXPECT_TRUE(shader1->InUse());
262 EXPECT_FALSE(shader1->InUse());
    [all...]
shader_manager.h 85 bool InUse() const {
program_manager_unittest.cc 134 EXPECT_FALSE(program1->InUse());
    [all...]
program_manager.h 174 bool InUse() const {
shader_manager.cc 154 if (shader->IsDeleted() && !shader->InUse()) {
gles2_cmd_decoder_unittest.cc     [all...]
  /external/chromium_org/gpu/command_buffer/client/
fenced_allocator.h 84 bool InUse();
244 bool InUse() {
245 return allocator_.InUse();
mapped_memory.h 94 bool InUse() {
95 return allocator_.InUse();
fenced_allocator_test.cc 117 EXPECT_FALSE(allocator_->InUse());
121 EXPECT_TRUE(allocator_->InUse());
127 EXPECT_FALSE(allocator_->InUse());
135 EXPECT_FALSE(allocator_->InUse());
245 EXPECT_TRUE(allocator_->InUse());
282 EXPECT_TRUE(allocator_->InUse());
289 EXPECT_FALSE(allocator_->InUse());
mapped_memory.cc 126 if (!chunk->InUse()) {
share_group.cc 71 DCHECK(id == 0 || id_allocator_.InUse(id));
fenced_allocator.cc 168 bool FencedAllocator::InUse() {
  /external/chromium_org/net/disk_cache/flash/
log_store.h 67 bool InUse(int32 segment_index) const;
log_store.cc 172 while (InUse(next_index)) {
179 bool LogStore::InUse(int32 index) const {
  /external/chromium/net/disk_cache/
mem_entry_impl.h 64 bool InUse();
mem_backend_impl.cc 302 if (!node->InUse() || empty) {
mem_entry_impl.cc 114 bool MemEntryImpl::InUse() {
  /external/chromium_org/net/disk_cache/
mem_entry_impl.h 63 bool InUse();
mem_backend_impl.cc 316 if (!node->InUse() || empty) {
  /external/valgrind/main/coregrind/
m_transtab.c 148 enum { InUse, Deleted, Empty } status;
318 /* The count of tt entries with state InUse. */
447 vg_assert(tte->status == InUse);
671 vg_assert(sec->tt[tteNo].status == InUse);
843 vg_assert(here_tte->status == InUse);
    [all...]
  /hardware/ti/omap3/dspbridge/inc/
qosregistry.h 305 UINT InUse; /* Count of instances of this component in use */
560 increments the InUse field of the QOSCOMPONENT structure.
592 decrements the InUse field of the QOSCOMPONENT structure.
  /hardware/ti/omap3/dspbridge/libbridge/inc/
qosregistry.h 299 UINT InUse; /* Count of instances of this component in use */
554 increments the InUse field of the QOSCOMPONENT structure.
586 decrements the InUse field of the QOSCOMPONENT structure.

Completed in 213 milliseconds

1 2