HomeSort by relevance Sort by last modified time
    Searched full:cpu_state_raw (Results 1 - 1 of 1) sorted by null

  /external/google-breakpad/src/processor/
microdump.cc 260 std::vector<uint8_t> cpu_state_raw = ParseHexBuf(cpu_state_str); local
262 if (cpu_state_raw.size() != sizeof(MDRawContextARM)) {
263 std::cerr << "Malformed CPU context. Got " << cpu_state_raw.size() <<
268 memcpy(arm, &cpu_state_raw[0], cpu_state_raw.size());
271 if (cpu_state_raw.size() != sizeof(MDRawContextARM64)) {
272 std::cerr << "Malformed CPU context. Got " << cpu_state_raw.size() <<
277 memcpy(arm, &cpu_state_raw[0], cpu_state_raw.size());

Completed in 107 milliseconds