Searched refs:tail (Results 1 - 25 of 28) sorted by relevance

12

/system/core/crash_reporter/
H A 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 \
44 echo "===$f (tail)==="; \
45 tail -20 $f; \
49 echo "===session_manager (tail)==="; \
50 awk '$3 ~ "^session_manager\[" { print }' /var/log/messages | tail
[all...]
H A Dkernel_log_collector.sh41 last_line=$(grep "${msg_pattern}" /var/log/messages | grep -- "${search_key}" | tail -n 1)
/system/bt/osi/src/
H A Dlist.c14 list_node_t *tail; member in struct:list_t
79 return list->tail->data;
86 return list->tail;
101 if (list->tail == prev_node)
102 list->tail = node;
117 if (list->tail == NULL)
118 list->tail = list->head;
132 if (list->tail == NULL) {
134 list->tail = node;
136 list->tail
[all...]
H A Dringbuffer.c30 uint8_t *tail; member in struct:ringbuffer_t
37 p->head = p->tail = p->base;
67 *rb->tail++ = *p++;
68 if (rb->tail >= (rb->base + rb->total))
69 rb->tail = rb->base;
/system/core/logd/
H A DFlushCommand.h40 unsigned long tail = -1,
H A DFlushCommand.cpp31 unsigned long tail,
38 mTail(tail),
29 FlushCommand(LogReader &reader, bool nonBlock, unsigned long tail, unsigned int logMask, pid_t pid, uint64_t start, uint64_t timeout) argument
H A DLogTimes.h53 unsigned long tail, unsigned int logMask, pid_t pid,
H A DLogReader.cpp59 unsigned long tail = 0; local
60 static const char _tail[] = " tail=";
63 tail = atol(cp + sizeof(_tail) - 1);
182 FlushCommand command(*this, nonBlock, tail, logMask, pid, sequence, timeout);
H A DLogTimes.cpp28 bool nonBlock, unsigned long tail,
40 mTail(tail),
27 LogTimeEntry(LogReader &reader, SocketClient *client, bool nonBlock, unsigned long tail, unsigned int logMask, pid_t pid, uint64_t start, uint64_t timeout) argument
/system/core/adb/
H A Dsocket_test.cpp63 auto connect = [](asocket* tail, asocket* head) {
64 tail->peer = head;
65 head->peer = tail;
66 tail->ready(tail);
75 asocket* tail = create_local_socket(intermediate[1]); local
76 ASSERT_NE(nullptr, tail);
79 prev_tail = tail;
/system/extras/tests/sdcard/
H A Dprofile_sdcard.sh41 local t=$(grep 'write_total' /tmp/tmp-sdcard.txt | tail -n 1 | cut -f 6 -d ' ')
/system/core/libpixelflinger/arch-mips64/
H A Dcol32cb16blend.S75 bltz $a2,tail
91 tail: label
H A Dt32cb16blend.S105 bltz $a2,tail
147 tail: label
/system/core/include/log/
H A Dlogger.h184 unsigned int tail,
201 unsigned int tail,
/system/core/libpixelflinger/arch-mips/
H A Dcol32cb16blend.S90 bltz $a2,tail
117 tail: label
H A Dt32cb16blend.S207 bltz $a2,tail
249 tail: label
/system/core/liblog/
H A Dlogger_read.c234 unsigned int tail,
247 logger_list->tail = tail;
326 unsigned int tail,
330 android_logger_list_alloc(mode, tail, pid);
232 android_logger_list_alloc( int mode, unsigned int tail, pid_t pid) argument
323 android_logger_list_open( log_id_t logId, int mode, unsigned int tail, pid_t pid) argument
H A Dlogger.h102 unsigned int tail; member in struct:android_log_logger_list
/system/core/debuggerd/
H A Dtombstone.cpp484 // If "tail" is non-zero, log the last "tail" number of lines.
488 log_t* log, pid_t pid, const char* filename, unsigned int tail) {
497 android_name_to_log_id(filename), ANDROID_LOG_RDONLY | ANDROID_LOG_NONBLOCK, tail, pid);
535 tail ? "tail end of " : "", filename);
602 static void dump_logs(log_t* log, pid_t pid, unsigned int tail) { argument
603 dump_log_file(log, pid, "system", tail);
604 dump_log_file(log, pid, "main", tail);
487 dump_log_file( log_t* log, pid_t pid, const char* filename, unsigned int tail) argument
/system/core/toolbox/upstream-netbsd/usr.bin/grep/
H A Dgrep.h128 extern int tail;
H A Dutil.c226 tail = 0;
365 if ((tail || c) && !cflag && !qflag && !lflag && !Lflag) {
370 tail = Aflag;
376 tail--;
/system/core/libutils/
H A DString8.cpp434 size_t tail = index; local
441 memmove(buf + tail, buf + index + skip, next - index - skip);
442 tail += next - index - skip;
445 unlockBuffer(tail);
/system/media/camera/docs/
H A Dmetadata-generate159 tail -n "+${end_line}" "${dst_file}" >> "${tmp_name}"
/system/sepolicy/tools/
H A Dcheck_seapp.c26 #define list_init(free_fn) { .head = NULL, .tail = NULL, .freefn = free_fn }
89 list_element *tail; member in struct:list
230 list->head = list->tail = e;
234 list->tail->next = e;
235 list->tail = e;
/system/update_engine/scripts/
H A Dbrillo_update_payload213 if value=$(look "${option_key}=" "${file_txt}" | tail -n 1); then

Completed in 666 milliseconds

12