OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ByteCursor
(Results
1 - 5
of
5
) sorted by null
/external/google-breakpad/src/common/
byte_cursor.h
35
// The
ByteCursor
class provides a convenient interface for reading
79
// the buffer as it goes. All
ByteCursor
operations check that accesses
81
class
ByteCursor
{
85
ByteCursor
(const ByteBuffer *buffer, bool big_endian = false)
96
ByteCursor
&set_here(const uint8_t *here) {
119
ByteCursor
&Read(size_t size, bool is_signed, T *result) {
148
ByteCursor
&operator>>(T &result) {
157
ByteCursor
&Read(uint8_t *buffer, size_t size) {
169
ByteCursor
&CString(string *str) {
196
ByteCursor
&CString(string *str, size_t limit)
[
all
...]
byte_cursor_unittest.cc
33
// and google_breakpad::
ByteCursor
.
44
using google_breakpad::
ByteCursor
;
61
ByteCursor
cursor(&buffer);
68
ByteCursor
cursor(&buffer);
75
ByteCursor
cursor(&buffer);
82
ByteCursor
cursor(&buffer);
89
ByteCursor
cursor(&buffer);
97
ByteCursor
cursor(&buffer);
110
ByteCursor
cursor(&buffer);
142
ByteCursor
cursor(&buffer)
[
all
...]
stabs_reader.h
173
ByteCursor
cursor_;
/external/google-breakpad/src/common/mac/
macho_reader.cc
85
ByteCursor
cursor(&buffer_);
231
ByteCursor
cursor(&buffer_, true);
309
ByteCursor
list_cursor(&load_commands_, big_endian_);
317
ByteCursor
cursor(&command, big_endian_);
457
ByteCursor
cursor(&segment.section_list, big_endian_);
/external/google-breakpad/src/common/linux/
elf_symbols_to_module.cc
123
ByteCursor
cursor_;
Completed in 3671 milliseconds