/system/core/crash_reporter/ |
D | crash_reporter_logs.conf | 31 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 …]
|
D | kernel_log_collector.sh | 41 last_line=$(grep "${msg_pattern}" /var/log/messages | grep -- "${search_key}" | tail -n 1)
|
/system/bt/osi/src/ |
D | list.c | 14 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 …]
|
D | ringbuffer.c | 30 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/ |
D | socket_test.cpp | 63 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/ |
D | FlushCommand.cpp | 31 unsigned long tail, in FlushCommand() argument 38 mTail(tail), in FlushCommand()
|
D | LogReader.cpp | 59 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()
|
D | FlushCommand.h | 40 unsigned long tail = -1,
|
D | LogTimes.cpp | 28 bool nonBlock, unsigned long tail, in LogTimeEntry() argument 40 mTail(tail), in LogTimeEntry()
|
D | LogTimes.h | 53 unsigned long tail, unsigned int logMask, pid_t pid,
|
/system/core/liblog/ |
D | logger_read.c | 234 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()
|
D | README | 70 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
|
D | logger.h | 102 unsigned int tail; member
|
/system/core/libpixelflinger/arch-mips64/ |
D | col32cb16blend.S | 75 bltz $a2,tail 91 tail: label
|
D | t32cb16blend.S | 105 bltz $a2,tail 147 tail: label
|
/system/core/toolbox/upstream-netbsd/usr.bin/grep/ |
D | util.c | 226 tail = 0; in procfile() 365 if ((tail || c) && !cflag && !qflag && !lflag && !Lflag) { in procline() 370 tail = Aflag; in procline() 376 tail--; in procline()
|
D | grep.h | 128 extern int tail;
|
/system/core/debuggerd/ |
D | tombstone.cpp | 488 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/ |
D | profile_sdcard.sh | 41 local t=$(grep 'write_total' /tmp/tmp-sdcard.txt | tail -n 1 | cut -f 6 -d ' ')
|
/system/core/libpixelflinger/arch-mips/ |
D | col32cb16blend.S | 90 bltz $a2,tail 117 tail: label
|
D | t32cb16blend.S | 207 bltz $a2,tail 249 tail: label
|
/system/core/include/log/ |
D | logger.h | 184 unsigned int tail, 201 unsigned int tail,
|
/system/core/libutils/ |
D | String8.cpp | 434 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/ |
D | check_seapp.c | 26 #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/ |
D | metadata-generate | 159 tail -n "+${end_line}" "${dst_file}" >> "${tmp_name}"
|