Home
last modified time | relevance | path

Searched refs:valid_ (Results 1 – 22 of 22) sorted by relevance

/external/google-breakpad/src/google_breakpad/processor/
Dminidump.h271 const MDRawThread* thread() const { return valid_ ? &thread_ : NULL; } in thread()
322 return valid_ ? thread_count_ : 0; in thread_count()
379 const MDRawModule* module() const { return valid_ ? &module_ : NULL; } in module()
383 return valid_ ? module_.base_of_image : static_cast<uint64_t>(-1); in base_address()
385 virtual uint64_t size() const { return valid_ ? module_.size_of_image : 0; } in size()
491 return valid_ ? module_count_ : 0; in module_count()
545 unsigned int region_count() const { return valid_ ? region_count_ : 0; } in region_count()
600 return valid_ ? &exception_ : NULL; in exception()
634 return valid_ ? &assertion_ : NULL; in assertion()
638 return valid_ ? expression_ : ""; in expression()
[all …]
Ddump_object.h42 bool valid() const { return valid_; } in valid()
48 bool valid_;
/external/libchrome/dbus/
Dfile_descriptor.cc39 CHECK(valid_); in value()
44 CHECK(valid_); // NB: check first so owner_ is unchanged if this triggers in TakeValue()
52 valid_ = false; in CheckValidity()
59 valid_ = (ok && !info.is_directory); in CheckValidity()
65 swap(valid_, other->valid_); in Swap()
Dfile_descriptor.h47 FileDescriptor() : value_(-1), owner_(false), valid_(false) {} in FileDescriptor()
49 valid_(false) {} in FileDescriptor()
61 int is_valid() const { return valid_; } in is_valid()
67 valid_ = false; in PutValue()
83 bool valid_; variable
/external/google-breakpad/src/processor/
Dminidump.cc423 valid_ = false; in Read()
1101 valid_ = true; in Read()
1205 valid_ = descriptor && in SetDescriptor()
1213 if (!valid_) { in GetMemory()
1252 if (!valid_) { in GetBase()
1262 if (!valid_) { in GetSize()
1285 if (!valid_) { in GetMemoryAtAddressInternal()
1346 if (!valid_) { in Print()
1392 valid_ = false; in Read()
1424 valid_ = true; in Read()
[all …]
Ddump_object.cc36 DumpObject::DumpObject() : valid_(false) { in DumpObject()
Dmicrodump.cc103 valid_ = true; in SetContextARM()
109 valid_ = true; in SetContextARM64()
Ddump_context.cc60 if (!valid_) { in GetContextCPU()
150 if (!valid_) { in GetInstructionPointer()
270 if (!valid_) { in Print()
Dminidump_processor_unittest.cc136 valid_ = true; in TestMinidumpMiscInfo()
302 valid_ = true; in TestMinidumpSystemInfo()
314 valid_ = true; in TestMinidumpContext()
/external/google-breakpad/src/client/mac/handler/
Dprotected_memory_allocator.cc41 valid_(false) { in ProtectedMemoryAllocator()
49 valid_ = (result == KERN_SUCCESS); in ProtectedMemoryAllocator()
50 assert(valid_); in ProtectedMemoryAllocator()
63 if (valid_ && next_alloc_offset_ + bytes <= pool_size_) { in Allocate()
Dprotected_memory_allocator.h82 bool valid_; variable
/external/webrtc/webrtc/base/
Dwinping.h74 bool IsValid() { return valid_; } in IsValid()
98 bool valid_; variable
Dwinping.cc151 rlen_(0), valid_(false) { in WinPing()
190 valid_ = true; in WinPing()
/external/libchrome/base/files/
Dfile_path_watcher_linux.cc87 bool valid_; member in base::__anon45d2753e0111::InotifyReader
262 valid_(false) { in InotifyReader()
272 valid_ = true; in InotifyReader()
277 if (valid_) { in ~InotifyReader()
295 if (!valid_) in AddWatch()
314 if (!valid_ || (watch == kInvalidWatch)) in RemoveWatch()
/external/webrtc/webrtc/libjingle/xmpp/
Dxmppclient.cc307 valid_(false) { in XmppClient()
309 valid_ = true; in XmppClient()
313 valid_ = false; in ~XmppClient()
Dxmppclient.h142 bool valid_; variable
/external/ImageMagick/Magick++/lib/
DColor.cpp291 void Magick::Color::isValid(bool valid_) in isValid() argument
293 if ((valid_ && isValid()) || (!valid_ && !isValid())) in isValid()
302 _isValid=valid_; in isValid()
/external/dbus/test/
Dsyntax.c199 (name).valid = valid_ ## name; \ in setup()
/external/v8/src/
Dtyping-asm.h72 bool valid_; variable
Dtyping-asm.cc21 valid_ = false; \
36 if (!valid_) return; \
45 valid_(true), in AsmTyper()
74 return valid_ && !HasStackOverflow(); in Validate()
Dobjects.h8603 inline void invalidate() { valid_ = false; } in invalidate()
8604 inline bool valid() { return valid_; } in valid()
8612 inline void set_valid() { valid_ = true; } in set_valid()
8613 bool valid_; variable
/external/ImageMagick/Magick++/lib/Magick++/
DColor.h119 void isValid(const bool valid_);