Home
last modified time | relevance | path

Searched refs:android_log_write_int32 (Results 1 – 11 of 11) sorted by relevance

/system/core/lmkd/
Dstatslog.c49 if ((ret = android_log_write_int32(ctx, code)) < 0) { in stats_write_lmk_state_changed()
53 if ((ret = android_log_write_int32(ctx, state)) < 0) { in stats_write_lmk_state_changed()
81 if ((ret = android_log_write_int32(ctx, code)) < 0) { in stats_write_lmk_kill_occurred()
85 if ((ret = android_log_write_int32(ctx, uid)) < 0) { in stats_write_lmk_kill_occurred()
93 if ((ret = android_log_write_int32(ctx, oom_score)) < 0) { in stats_write_lmk_kill_occurred()
121 if ((ret = android_log_write_int32(ctx, min_oom_score)) < 0) { in stats_write_lmk_kill_occurred()
Dlmkd.c1210 android_log_write_int32(ctx, (int32_t)min(mi->arr[field_idx] * page_k, INT32_MAX)); in meminfo_log()
/system/core/liblog/include/log/
Dlog_event_list.h77 int android_log_write_int32(android_log_context ctx, int32_t value);
155 int retval = android_log_write_int32(ctx, value);
161 int retval = android_log_write_int32(ctx, static_cast<int32_t>(value));
167 int retval = android_log_write_int32(ctx, value ? 1 : 0);
226 int retval = android_log_write_int32(ctx, value); in AppendInt()
/system/core/libstats/include/
Dstats_event_list.h89 int retval = android_log_write_int32(ctx, value);
97 int retval = android_log_write_int32(ctx, static_cast<int32_t>(value));
105 int retval = android_log_write_int32(ctx, value ? 1 : 0);
175 int retval = android_log_write_int32(ctx, value); in AppendInt()
/system/core/liblog/
Dlog_event_write.cpp38 ret = android_log_write_int32(ctx, uid); in __android_log_error_write()
Dliblog.map.txt42 android_log_write_int32; # apex vndk
DREADME.md85 int android_log_write_int32(android_log_context ctx, int32_t value)
Dlog_event_list.cpp187 int android_log_write_int32(android_log_context ctx, int32_t value) { in android_log_write_int32() function
/system/core/liblog/include_vndk/log/
Dlog_event_list.h53 int android_log_write_int32(android_log_context ctx, int32_t value);
/system/core/liblog/tests/
Dliblog_test.cpp2564 EXPECT_LE(0, android_log_write_int32(ctx, 0x40302010)); in event_test_int32()
2621 EXPECT_LE(0, android_log_write_int32(ctx, 0x40302010)); in event_test_simple_automagic_list()
2662 EXPECT_LE(0, android_log_write_int32(ctx, 0x01020304)); in event_test_complex_nested_list()
2666 EXPECT_LE(0, android_log_write_int32(ctx, 1)); in event_test_complex_nested_list()
2667 EXPECT_LE(0, android_log_write_int32(ctx, 2)); in event_test_complex_nested_list()
2668 EXPECT_LE(0, android_log_write_int32(ctx, 3)); in event_test_complex_nested_list()
2669 EXPECT_LE(0, android_log_write_int32(ctx, 4)); in event_test_complex_nested_list()
2715 EXPECT_LE(0, android_log_write_int32(ctx, 1)); in event_test_7_level_prefix()
2717 EXPECT_LE(0, android_log_write_int32(ctx, 2)); in event_test_7_level_prefix()
2719 EXPECT_LE(0, android_log_write_int32(ctx, 3)); in event_test_7_level_prefix()
[all …]
/system/core/logd/
DLogTags.cpp534 if (android_log_write_int32(ctx, static_cast<int32_t>(tag) < 0) || in WritePmsgEventLogTags()