/system/bt/osi/src/ |
H A D | list.c | 14 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 D | ringbuffer.c | 30 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 D | FlushCommand.h | 39 unsigned long tail = -1,
|
H A D | FlushCommand.cpp | 27 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 D | LogReader.cpp | 55 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 D | LogTimes.h | 52 unsigned long tail, unsigned int logMask, pid_t pid,
|
H A D | LogTimes.cpp | 27 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 D | profile_sdcard.sh | 41 local t=$(grep 'write_total' /tmp/tmp-sdcard.txt | tail -n 1 | cut -f 6 -d ' ')
|
/system/core/liblog/ |
H A D | log_read_kern.c | 139 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 D | log_read.c | 249 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 D | logger.h | 165 unsigned int tail, 182 unsigned int tail,
|
/system/extras/tests/bionic/libc/ |
H A D | run-test.sh | 142 RET=`tail -n1 $ADB_CMD_LOG`
|
/system/core/toolbox/upstream-netbsd/usr.bin/grep/ |
H A D | grep.h | 128 extern int tail;
|
H A D | util.c | 226 tail = 0; 365 if ((tail || c) && !cflag && !qflag && !lflag && !Lflag) { 370 tail = Aflag; 376 tail--;
|
H A D | grep.c | 149 int tail; /* lines left to print */ variable
|
/system/core/libpixelflinger/arch-mips/ |
H A D | t32cb16blend.S | 200 bltz $a2,tail 240 tail: label
|
/system/core/libutils/ |
H A D | String8.cpp | 426 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 D | metadata-generate | 147 tail -n "+${end_line}" "${dst_file}" >> "${tmp_name}"
|
/system/core/debuggerd/ |
H A D | tombstone.cpp | 486 // 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
|