OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:valid_
(Results
1 - 25
of
27
) sorted by null
1
2
/external/google-breakpad/src/google_breakpad/processor/
dump_object.h
42
bool valid() const { return
valid_
; }
46
// fields, it can set
valid_
to true. Accessors and mutators may wish to
47
// consider or alter the
valid_
state as they interact with objects.
48
bool
valid_
;
member in class:google_breakpad::DumpObject
minidump.h
271
const MDRawThread* thread() const { return
valid_
? &thread_ : NULL; }
322
return
valid_
? thread_count_ : 0;
379
const MDRawModule* module() const { return
valid_
? &module_ : NULL; }
383
return
valid_
? module_.base_of_image : static_cast<uint64_t>(-1);
385
virtual uint64_t size() const { return
valid_
? module_.size_of_image : 0; }
440
// True after a successful Read. This is different from
valid_
, which is
491
return
valid_
? module_count_ : 0;
545
unsigned int region_count() const { return
valid_
? region_count_ : 0; }
600
return
valid_
? &exception_ : NULL;
634
return
valid_
? &assertion_ : NULL
1023
bool
valid_
;
member in class:google_breakpad::Minidump
[
all
...]
/external/google-breakpad/src/processor/
dump_object.cc
36
DumpObject::DumpObject() :
valid_
(false) {
minidump.cc
423
valid_
= false;
[
all
...]
microdump.cc
103
valid_
= true;
109
valid_
= true;
dump_context.cc
60
if (!
valid_
) {
62
//
valid_
false by FreeContext, which is called by Read.
150
if (!
valid_
) {
259
// There is no context record (
valid_
is false) or there's a
270
if (!
valid_
) {
minidump_processor_unittest.cc
136
valid_
= true;
302
valid_
= true;
314
valid_
= true;
/external/libchrome/dbus/
file_descriptor.h
47
FileDescriptor() : value_(-1), owner_(false),
valid_
(false) {}
49
valid_
(false) {}
61
int is_valid() const { return
valid_
; }
67
valid_
= false;
83
bool
valid_
;
member in class:dbus::FileDescriptor
file_descriptor.cc
39
CHECK(
valid_
);
44
CHECK(
valid_
); // NB: check first so owner_ is unchanged if this triggers
52
valid_
= false;
59
valid_
= (ok && !info.is_directory);
65
swap(
valid_
, other->
valid_
);
/external/google-breakpad/src/client/mac/handler/
protected_memory_allocator.cc
41
valid_
(false) {
49
valid_
= (result == KERN_SUCCESS);
50
assert(
valid_
);
63
if (
valid_
&& next_alloc_offset_ + bytes <= pool_size_) {
protected_memory_allocator.h
82
bool
valid_
;
member in class:ProtectedMemoryAllocator
/external/webrtc/webrtc/base/
winping.h
74
bool IsValid() { return
valid_
; }
98
bool
valid_
;
member in class:rtc::WinPing
winping.cc
151
rlen_(0),
valid_
(false) {
190
valid_
= true;
/system/update_engine/common/
hash_calculator.cc
31
HashCalculator::HashCalculator() :
valid_
(false) {
32
valid_
= (SHA256_Init(&ctx_) == 1);
33
LOG_IF(ERROR, !
valid_
) << "SHA256_Init failed";
39
TEST_AND_RETURN_FALSE(
valid_
);
hash_calculator.h
98
bool
valid_
;
member in class:chromeos_update_engine::HashCalculator
/system/extras/simpleperf/
utils.h
92
return
valid_
;
100
bool
valid_
;
member in class:ArchiveHelper
utils.cpp
75
ArchiveHelper::ArchiveHelper(int fd, const std::string& debug_filename) :
valid_
(false) {
78
valid_
= true;
85
if (
valid_
) {
/external/webrtc/webrtc/libjingle/xmpp/
xmppclient.h
142
bool
valid_
;
member in class:buzz::XmppClient
xmppclient.cc
307
valid_
(false) {
309
valid_
= true;
313
valid_
= false;
/external/libchrome/base/files/
file_path_watcher_linux.cc
87
bool
valid_
;
member in class:base::__anon15702::InotifyReader
262
valid_
(false) {
272
valid_
= true;
277
if (
valid_
) {
295
if (!
valid_
)
314
if (!
valid_
|| (watch == kInvalidWatch))
/external/dbus/test/
syntax.c
199
(name).valid =
valid_
## name; \
/external/v8/src/
typing-asm.h
70
bool
valid_
;
member in class:v8::internal::AsmTyper
/external/ImageMagick/Magick++/lib/
Color.cpp
291
void Magick::Color::isValid(bool
valid_
)
293
if ((
valid_
&& isValid()) || (!
valid_
&& !isValid()))
302
_isValid=
valid_
;
/external/ImageMagick/Magick++/lib/Magick++/
Color.h
119
void isValid(const bool
valid_
);
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
pointer.h
983
bool
valid_
; \/\/!< Whether the parsing is valid.
member in class:GenericPointer::PercentDecodeStream
[
all
...]
Completed in 469 milliseconds
1
2