Home
last modified time | relevance | path

Searched refs:tail (Results 1 – 25 of 30) sorted by relevance

12

/system/core/crash_reporter/
Dcrash_reporter_logs.conf31 update_engine=cat $(ls -1tr /var/log/update_engine | tail -5 | \
32 sed s.^./var/log/update_engine/.) | tail -c 50000
36 cros_installer=cat $(ls -1tr /var/log/update_engine | tail -5 | \
37 sed s.^./var/log/update_engine/.) | tail -c 50000
42 for f in $(ls -1rt /var/log/chrome/chrome_[0-9]* | tail -2) \
43 $(ls -1rt /home/chronos/u-*/log/chrome_[0-9]* 2>/dev/null | tail -2); do \
45 tail -20 $f; \
50 awk '$3 ~ "^session_manager\[" { print }' /var/log/messages | tail -20; \
61 tail -c 25000; \
91 tail -n 50 /var/log/messages; \
[all …]
Dkernel_log_collector.sh41 last_line=$(grep "${msg_pattern}" /var/log/messages | grep -- "${search_key}" | tail -n 1)
/system/bt/osi/src/
Dlist.c14 list_node_t *tail; member
79 return list->tail->data; in list_back()
86 return list->tail; in list_back_node()
101 if (list->tail == prev_node) in list_insert_after()
102 list->tail = node; in list_insert_after()
117 if (list->tail == NULL) in list_prepend()
118 list->tail = list->head; in list_prepend()
132 if (list->tail == NULL) { in list_append()
134 list->tail = node; in list_append()
136 list->tail->next = node; in list_append()
[all …]
Dringbuffer.c30 uint8_t *tail; member
37 p->head = p->tail = p->base; in ringbuffer_init()
67 *rb->tail++ = *p++; in ringbuffer_insert()
68 if (rb->tail >= (rb->base + rb->total)) in ringbuffer_insert()
69 rb->tail = rb->base; in ringbuffer_insert()
/system/core/adb/
Dsocket_test.cpp63 auto connect = [](asocket* tail, asocket* head) { in TEST_F() argument
64 tail->peer = head; in TEST_F()
65 head->peer = tail; in TEST_F()
66 tail->ready(tail); in TEST_F()
75 asocket* tail = create_local_socket(intermediate[1]); in TEST_F() local
76 ASSERT_NE(nullptr, tail); in TEST_F()
79 prev_tail = tail; in TEST_F()
/system/core/logd/
DFlushCommand.cpp31 unsigned long tail, in FlushCommand() argument
38 mTail(tail), in FlushCommand()
DLogReader.cpp59 unsigned long tail = 0; in onDataAvailable() local
63 tail = atol(cp + sizeof(_tail) - 1); in onDataAvailable()
182 FlushCommand command(*this, nonBlock, tail, logMask, pid, sequence, timeout); in onDataAvailable()
DFlushCommand.h40 unsigned long tail = -1,
DLogTimes.cpp28 bool nonBlock, unsigned long tail, in LogTimeEntry() argument
40 mTail(tail), in LogTimeEntry()
DLogTimes.h53 unsigned long tail, unsigned int logMask, pid_t pid,
/system/core/liblog/
Dlogger_read.c234 unsigned int tail, in android_logger_list_alloc() argument
247 logger_list->tail = tail; in android_logger_list_alloc()
326 unsigned int tail, in android_logger_list_open() argument
330 android_logger_list_alloc(mode, tail, pid); in android_logger_list_open()
DREADME70 tail, pid_t pid)
74 unsigned int tail, pid_t pid)
108 optionally limited to a specific pid and tail of the log(s) and finally
Dlogger.h102 unsigned int tail; member
/system/core/libpixelflinger/arch-mips64/
Dcol32cb16blend.S75 bltz $a2,tail
91 tail: label
Dt32cb16blend.S105 bltz $a2,tail
147 tail: label
/system/core/toolbox/upstream-netbsd/usr.bin/grep/
Dutil.c226 tail = 0; in procfile()
365 if ((tail || c) && !cflag && !qflag && !lflag && !Lflag) { in procline()
370 tail = Aflag; in procline()
376 tail--; in procline()
Dgrep.h128 extern int tail;
/system/core/debuggerd/
Dtombstone.cpp488 log_t* log, pid_t pid, const char* filename, unsigned int tail) { in dump_log_file() argument
497 android_name_to_log_id(filename), ANDROID_LOG_RDONLY | ANDROID_LOG_NONBLOCK, tail, pid); in dump_log_file()
535 tail ? "tail end of " : "", filename); in dump_log_file()
602 static void dump_logs(log_t* log, pid_t pid, unsigned int tail) { in dump_logs() argument
603 dump_log_file(log, pid, "system", tail); in dump_logs()
604 dump_log_file(log, pid, "main", tail); in dump_logs()
/system/extras/tests/sdcard/
Dprofile_sdcard.sh41 local t=$(grep 'write_total' /tmp/tmp-sdcard.txt | tail -n 1 | cut -f 6 -d ' ')
/system/core/libpixelflinger/arch-mips/
Dcol32cb16blend.S90 bltz $a2,tail
117 tail: label
Dt32cb16blend.S207 bltz $a2,tail
249 tail: label
/system/core/include/log/
Dlogger.h184 unsigned int tail,
201 unsigned int tail,
/system/core/libutils/
DString8.cpp434 size_t tail = index; in removeAll() local
441 memmove(buf + tail, buf + index + skip, next - index - skip); in removeAll()
442 tail += next - index - skip; in removeAll()
445 unlockBuffer(tail); in removeAll()
/system/sepolicy/tools/
Dcheck_seapp.c26 #define list_init(free_fn) { .head = NULL, .tail = NULL, .freefn = free_fn }
89 list_element *tail; member
230 list->head = list->tail = e; in list_append()
234 list->tail->next = e; in list_append()
235 list->tail = e; in list_append()
/system/media/camera/docs/
Dmetadata-generate159 tail -n "+${end_line}" "${dst_file}" >> "${tmp_name}"

12