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

/system/bt/osi/src/
H A Dlist.c14 list_node_t *tail; member in struct:list_t
79 return list->tail->data;
94 if (list->tail == prev_node)
95 list->tail = node;
110 if (list->tail == NULL)
111 list->tail = list->head;
125 if (list->tail == NULL) {
127 list->tail = node;
129 list->tail->next = node;
130 list->tail
[all...]
H A Dringbuffer.c30 uint8_t *tail; member in struct:ringbuffer_t
44 p->head = p->tail = p->base;
74 *rb->tail++ = *p++;
75 if (rb->tail >= (rb->base + rb->total))
76 rb->tail = rb->base;
/system/core/logd/
H A DFlushCommand.h39 unsigned long tail = -1,
H A DFlushCommand.cpp27 unsigned long tail,
33 mTail(tail),
25 FlushCommand(LogReader &reader, bool nonBlock, unsigned long tail, unsigned int logMask, pid_t pid, uint64_t start) argument
H A DLogReader.cpp55 unsigned long tail = 0; local
56 static const char _tail[] = " tail=";
59 tail = atol(cp + sizeof(_tail) - 1);
163 FlushCommand command(*this, nonBlock, tail, logMask, pid, sequence);
H A DLogTimes.h52 unsigned long tail, unsigned int logMask, pid_t pid,
H A DLogTimes.cpp27 bool nonBlock, unsigned long tail,
39 mTail(tail),
26 LogTimeEntry(LogReader &reader, SocketClient *client, bool nonBlock, unsigned long tail, unsigned int logMask, pid_t pid, uint64_t start) argument
/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/liblog/
H A Dlog_read_kern.c139 unsigned int tail; member in struct:logger_list
292 unsigned int tail,
303 logger_list->tail = tail;
372 unsigned int tail,
375 struct logger_list *logger_list = android_logger_list_alloc(mode, tail, pid);
391 return (logger_list->tail < 64) ? 64 : logger_list->tail;
409 || (logger_list->queued_lines > logger_list->tail))) {
460 /* within tail
291 android_logger_list_alloc(int mode, unsigned int tail, pid_t pid) argument
370 android_logger_list_open(log_id_t id, int mode, unsigned int tail, pid_t pid) argument
[all...]
H A Dlog_read.c249 unsigned int tail; member in struct:logger_list
529 unsigned int tail,
543 logger_list->tail = tail;
564 logger_list->tail = 0;
609 unsigned int tail,
612 struct logger_list *logger_list = android_logger_list_alloc(mode, tail, pid);
792 if (logger_list->tail) {
793 ret = snprintf(cp, remaining, " tail=%u", logger_list->tail);
528 android_logger_list_alloc(int mode, unsigned int tail, pid_t pid) argument
607 android_logger_list_open(log_id_t id, int mode, unsigned int tail, pid_t pid) argument
[all...]
/system/core/include/log/
H A Dlogger.h165 unsigned int tail,
182 unsigned int tail,
/system/extras/tests/bionic/libc/
H A Drun-test.sh142 RET=`tail -n1 $ADB_CMD_LOG`
/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--;
H A Dgrep.c149 int tail; /* lines left to print */ variable
/system/core/libpixelflinger/arch-mips/
H A Dt32cb16blend.S200 bltz $a2,tail
240 tail: label
/system/core/libutils/
H A DString8.cpp426 size_t tail = index; local
433 memmove(buf + tail, buf + index + skip, next - index - skip);
434 tail += next - index - skip;
437 unlockBuffer(tail);
/system/media/camera/docs/
H A Dmetadata-generate147 tail -n "+${end_line}" "${dst_file}" >> "${tmp_name}"
/system/core/debuggerd/
H A Dtombstone.cpp486 // If "tail" is non-zero, log the last "tail" number of lines.
490 log_t* log, pid_t pid, const char* filename, unsigned int tail) {
499 android_name_to_log_id(filename), ANDROID_LOG_RDONLY | ANDROID_LOG_NONBLOCK, tail, pid);
539 tail ? "tail end of " : "", filename);
606 static void dump_logs(log_t* log, pid_t pid, unsigned int tail) { argument
607 dump_log_file(log, pid, "system", tail);
608 dump_log_file(log, pid, "main", tail);
489 dump_log_file( log_t* log, pid_t pid, const char* filename, unsigned int tail) argument

Completed in 2157 milliseconds