Home
last modified time | relevance | path

Searched refs:num_frames (Results 1 – 10 of 10) sorted by relevance

/system/core/libmemunreachable/
DLeak.h34 hash_combine(seed, key.num_frames);
35 for (size_t i = 0; i < key.num_frames; i++) {
55 return (lhs.num_frames == rhs.num_frames) &&
56 memcmp(lhs.frames, rhs.frames, lhs.num_frames * sizeof(lhs.frames[0])) == 0;
DMemUnreachable.cpp176 leak->backtrace.num_frames = num_backtrace_frames; in GetUnreachableMemory()
485 if (backtrace.num_frames > 0) { in ToString()
486 oss << backtrace_string(backtrace.frames, backtrace.num_frames); in ToString()
/system/core/libunwindstack/
DLocalUnwinder.cpp93 size_t num_frames = 0; in Unwind() local
123 if (num_frames != 0 || !ShouldSkipLibrary(map_info->name)) { in Unwind()
133 num_frames++; in Unwind()
142 return num_frames != 0; in Unwind()
/system/core/healthd/
Dhealthd_mode_charger.cpp146 .num_frames = 0,
353 if (batt_prop->batteryLevel >= 0 && batt_anim->num_frames != 0) { in update_screen_state()
355 for (int i = 0; i < batt_anim->num_frames; i++) { in update_screen_state()
382 if (batt_anim->num_frames == 0 || batt_anim->cur_level < 0) { in update_screen_state()
398 while (batt_anim->cur_frame < batt_anim->num_frames && in update_screen_state()
403 if (batt_anim->cur_frame >= batt_anim->num_frames) { in update_screen_state()
645 battery_animation.num_frames = ARRAY_SIZE(default_animation_frames); in init_animation()
654 battery_animation.num_frames); in init_animation()
664 for (int i = 0; i < battery_animation.num_frames; i++) { in init_animation()
711 anim->num_frames = 0; in healthd_mode_charger_init()
[all …]
Danimation.h80 int num_frames; member
Dhealthd_draw.cpp68 batt_anim->num_frames == 0) in redraw_screen()
198 if (anim->num_frames != 0) { in draw_battery()
DAnimationParser.cpp134 anim->num_frames = frames.size(); in parse_animation_desc()
/system/bt/stack/a2dp/
Da2dp_sbc_decoder.cc70 size_t num_frames = data[0] & 0xf; in a2dp_sbc_decoder_decode_packet() local
79 for (size_t i = 0; i < num_frames; ++i) { in a2dp_sbc_decoder_decode_packet()
/system/core/libmemunreachable/include/memunreachable/
Dmemunreachable.h48 size_t num_frames; member
/system/core/healthd/tests/
DAnimationParser_test.cpp183 EXPECT_EQ(2, anim.num_frames); in TEST()