Home | History | Annotate | Download | only in ui

Lines Matching refs:scratch

57     uint8_t scratch[2 + 2 + sizeof(int32_t) + sizeof(int64_t)];
59 scratch[pos++] = EVENT_TYPE_LIST;
60 scratch[pos++] = 2;
61 writeInt32(scratch, pos, buffer);
62 writeInt64(scratch, pos, ns2ms( systemTime( SYSTEM_TIME_MONOTONIC ) ));
63 android_bWriteLog(tag, scratch, sizeof(scratch));
68 uint8_t scratch[2 + 3 + sizeof(int32_t) + sizeof(int32_t) + sizeof(int64_t)];
70 scratch[pos++] = EVENT_TYPE_LIST;
71 scratch[pos++] = 3;
72 writeInt32(scratch, pos, buffer);
73 writeInt32(scratch, pos, identity);
74 writeInt64(scratch, pos, ns2ms( systemTime( SYSTEM_TIME_MONOTONIC ) ));
75 android_bWriteLog(tag, scratch, sizeof(scratch));