Definition at line 165 of file vmservice.cc.
◆ TarArchive()
dart::TarArchive::TarArchive |
( |
uint8_t * |
bytes, |
|
|
intptr_t |
bytes_length |
|
) |
| |
|
inline |
Definition at line 167 of file vmservice.cc.
168 : rs_(bytes, bytes_length) {}
◆ HasMore()
bool dart::TarArchive::HasMore |
( |
| ) |
const |
|
inline |
◆ Length()
intptr_t dart::TarArchive::Length |
( |
| ) |
const |
|
inline |
◆ NextContent()
uint8_t * dart::TarArchive::NextContent |
( |
| ) |
|
|
inline |
◆ NextContentLength()
intptr_t dart::TarArchive::NextContentLength |
( |
| ) |
|
|
inline |
◆ NextFilename()
char * dart::TarArchive::NextFilename |
( |
| ) |
|
|
inline |
◆ Read()
void dart::TarArchive::Read |
( |
| ) |
|
|
inline |
Definition at line 170 of file vmservice.cc.
170 {
171 while (HasNext()) {
172 char* filename;
174 intptr_t data_length;
175 if (Next(&filename, &
data, &data_length)) {
176 filenames_.
Add(filename);
178 content_lengths_.
Add(data_length);
179 }
180 }
181 }
static int8_t data[kExtLength]
The documentation for this class was generated from the following file: