OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:headBuf
(Results
1 - 2
of
2
) sorted by null
/dalvik/vm/hprof/
HprofOutput.cpp
132
unsigned char
headBuf
[sizeof (u1) + 2 * sizeof (u4)];
135
headBuf
[0] = rec->tag;
136
U4_TO_BUF_BE(
headBuf
, 1, rec->time);
137
U4_TO_BUF_BE(
headBuf
, 5, rec->length);
139
nb = fwrite(
headBuf
, 1, sizeof(
headBuf
), fp);
140
if (nb != sizeof(
headBuf
)) {
/art/runtime/hprof/
hprof.cc
213
unsigned char
headBuf
[sizeof(uint8_t) + 2 * sizeof(uint32_t)];
215
headBuf
[0] = tag_;
216
U4_TO_BUF_BE(
headBuf
, 1, time_);
217
U4_TO_BUF_BE(
headBuf
, 5, length_);
219
int nb = fwrite(
headBuf
, 1, sizeof(
headBuf
), fp_);
220
if (nb != sizeof(
headBuf
)) {
[
all
...]
Completed in 35 milliseconds