Home | History | Annotate | Download | only in lmkd

Lines Matching defs:ret

38     int ret = -EINVAL;
40 return ret;
45 if ((ret = android_log_write_int64(ctx, getElapsedRealTimeNs())) < 0) {
46 return ret;
49 if ((ret = android_log_write_int32(ctx, code)) < 0) {
50 return ret;
53 if ((ret = android_log_write_int32(ctx, state)) < 0) {
54 return ret;
70 int ret = -EINVAL;
72 return ret;
76 if ((ret = android_log_write_int64(ctx, getElapsedRealTimeNs())) < 0) {
77 return ret;
80 if ((ret = android_log_write_int32(ctx, code)) < 0) {
81 return ret;
84 if ((ret = android_log_write_int32(ctx, uid)) < 0) {
85 return ret;
88 if ((ret = android_log_write_string8(ctx, (process_name == NULL) ? "" : process_name)) < 0) {
89 return ret;
92 if ((ret = android_log_write_int32(ctx, oom_score)) < 0) {
93 return ret;
96 if ((ret = android_log_write_int64(ctx, pgfault)) < 0) {
97 return ret;
100 if ((ret = android_log_write_int64(ctx, pgmajfault)) < 0) {
101 return ret;
104 if ((ret = android_log_write_int64(ctx, rss_in_bytes)) < 0) {
105 return ret;
108 if ((ret = android_log_write_int64(ctx, cache_in_bytes)) < 0) {
109 return ret;
112 if ((ret = android_log_write_int64(ctx, swap_in_bytes)) < 0) {
113 return ret;