Home
last modified time | relevance | path

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

/system/logging/liblog/include/log/
Dlog_event_list.h71 int android_log_write_int32(android_log_context ctx, int32_t value);
147 int retval = android_log_write_int32(ctx, value);
153 int retval = android_log_write_int32(ctx, static_cast<int32_t>(value));
159 int retval = android_log_write_int32(ctx, value ? 1 : 0);
218 int retval = android_log_write_int32(ctx, value); in AppendInt()
/system/core/libstats/push_compat/include/
Dstats_event_list.h88 int retval = android_log_write_int32(ctx, value);
96 int retval = android_log_write_int32(ctx, static_cast<int32_t>(value));
104 int retval = android_log_write_int32(ctx, value ? 1 : 0);
172 int retval = android_log_write_int32(ctx, value); in AppendInt()
/system/logging/liblog/
Dlog_event_write.cpp36 ret = android_log_write_int32(ctx, uid); in __android_log_error_write()
Dliblog.map.txt42 android_log_write_int32; # systemapi llndk
DAndroid.bp223 "--allowlist-function=android_log_write_int32",
DREADME.md83 int android_log_write_int32(android_log_context ctx, int32_t value)
Dlog_event_list.cpp164 int android_log_write_int32(android_log_context context, int32_t value) { in android_log_write_int32() function
/system/logging/liblog/include_vndk/log/
Dlog_event_list.h53 int android_log_write_int32(android_log_context ctx, int32_t value);
/system/logging/liblog/tests/
Dliblog_test.cpp2217 EXPECT_LE(0, android_log_write_int32(ctx, 0x40302010)); in event_test_int32()
2274 EXPECT_LE(0, android_log_write_int32(ctx, 0x40302010)); in event_test_simple_automagic_list()
2315 EXPECT_LE(0, android_log_write_int32(ctx, 0x01020304)); in event_test_complex_nested_list()
2319 EXPECT_LE(0, android_log_write_int32(ctx, 1)); in event_test_complex_nested_list()
2320 EXPECT_LE(0, android_log_write_int32(ctx, 2)); in event_test_complex_nested_list()
2321 EXPECT_LE(0, android_log_write_int32(ctx, 3)); in event_test_complex_nested_list()
2322 EXPECT_LE(0, android_log_write_int32(ctx, 4)); in event_test_complex_nested_list()
2368 EXPECT_LE(0, android_log_write_int32(ctx, 1)); in event_test_7_level_prefix()
2370 EXPECT_LE(0, android_log_write_int32(ctx, 2)); in event_test_7_level_prefix()
2372 EXPECT_LE(0, android_log_write_int32(ctx, 3)); in event_test_7_level_prefix()
[all …]
/system/logging/rust/
Dliblog_event_list.rs60 unsafe { log_bindgen::android_log_write_int32(self.ctx, data) }; in append_i32()
/system/memory/lmkd/
Dlmkd.cpp2039 android_log_write_int32(ctx, procp->pid); in killinfo_log()
2040 android_log_write_int32(ctx, procp->uid); in killinfo_log()
2041 android_log_write_int32(ctx, procp->oomadj); in killinfo_log()
2042 android_log_write_int32(ctx, min_oom_score); in killinfo_log()
2043 android_log_write_int32(ctx, std::min(rss_kb, (int)INT32_MAX)); in killinfo_log()
2044 android_log_write_int32(ctx, ki ? ki->kill_reason : NONE); in killinfo_log()
2048 android_log_write_int32(ctx, in killinfo_log()
2054 android_log_write_int32(ctx, (int32_t)get_time_diff_ms(&wi->last_event_tm, tm)); in killinfo_log()
2055 android_log_write_int32(ctx, (int32_t)get_time_diff_ms(&wi->prev_wakeup_tm, tm)); in killinfo_log()
2056 android_log_write_int32(ctx, wi->wakeups_since_event); in killinfo_log()
[all …]
/system/logging/logd/
DLogTags.cpp518 if (android_log_write_int32(ctx, static_cast<int32_t>(tag) < 0) || in WritePmsgEventLogTags()