Home
last modified time | relevance | path

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

/aosp12/system/logging/liblog/include/log/
H A 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()
/aosp12/system/core/libstats/push_compat/include/
H A 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()
/aosp12/system/logging/liblog/tests/
H A Dliblog_test.cpp2325 EXPECT_LE(0, android_log_write_int32(ctx, 1)); in event_test_complex_nested_list()
2326 EXPECT_LE(0, android_log_write_int32(ctx, 2)); in event_test_complex_nested_list()
2327 EXPECT_LE(0, android_log_write_int32(ctx, 3)); in event_test_complex_nested_list()
2328 EXPECT_LE(0, android_log_write_int32(ctx, 4)); in event_test_complex_nested_list()
2374 EXPECT_LE(0, android_log_write_int32(ctx, 1)); in event_test_7_level_prefix()
2376 EXPECT_LE(0, android_log_write_int32(ctx, 2)); in event_test_7_level_prefix()
2378 EXPECT_LE(0, android_log_write_int32(ctx, 3)); in event_test_7_level_prefix()
2380 EXPECT_LE(0, android_log_write_int32(ctx, 4)); in event_test_7_level_prefix()
2382 EXPECT_LE(0, android_log_write_int32(ctx, 5)); in event_test_7_level_prefix()
2384 EXPECT_LE(0, android_log_write_int32(ctx, 6)); in event_test_7_level_prefix()
[all …]
/aosp12/system/logging/liblog/
H A Dlog_event_write.cpp36 ret = android_log_write_int32(ctx, uid); in __android_log_error_write()
H A Dliblog.map.txt42 android_log_write_int32; # apex llndk
H A DAndroid.bp192 "--allowlist-function=android_log_write_int32",
H A DREADME.md83 int android_log_write_int32(android_log_context ctx, int32_t value)
H A Dlog_event_list.cpp164 int android_log_write_int32(android_log_context context, int32_t value) { in android_log_write_int32() function
/aosp12/system/logging/liblog/include_vndk/log/
H A Dlog_event_list.h53 int android_log_write_int32(android_log_context ctx, int32_t value);
/aosp12/system/logging/rust/
H A Dliblog_event_list.rs60 unsafe { log_bindgen::android_log_write_int32(self.ctx, data) }; in append_i32()
/aosp12/system/memory/lmkd/
H A Dlmkd.cpp1988 android_log_write_int32(ctx, procp->pid); in killinfo_log()
1989 android_log_write_int32(ctx, procp->uid); in killinfo_log()
1990 android_log_write_int32(ctx, procp->oomadj); in killinfo_log()
1991 android_log_write_int32(ctx, min_oom_score); in killinfo_log()
1992 android_log_write_int32(ctx, (int32_t)min(rss_kb, INT32_MAX)); in killinfo_log()
1993 android_log_write_int32(ctx, kill_reason); in killinfo_log()
2001 android_log_write_int32(ctx, (int32_t)get_time_diff_ms(&wi->last_event_tm, tm)); in killinfo_log()
2003 android_log_write_int32(ctx, wi->wakeups_since_event); in killinfo_log()
2004 android_log_write_int32(ctx, wi->skipped_wakeups); in killinfo_log()
2005 android_log_write_int32(ctx, (int32_t)min(swap_kb, INT32_MAX)); in killinfo_log()
[all …]
/aosp12/system/logging/logd/
H A DLogTags.cpp518 if (android_log_write_int32(ctx, static_cast<int32_t>(tag) < 0) || in WritePmsgEventLogTags()