Searched defs:tail (Results 1 - 11 of 11) sorted by relevance

/system/core/libpixelflinger/arch-mips/
H A Dt32cb16blend.S200 bltz $a2,tail
240 tail: label
/system/core/logd/
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 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
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);
/system/bt/osi/src/
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;
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...]
/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/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/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
/system/core/toolbox/upstream-netbsd/usr.bin/grep/
H A Dgrep.c149 int tail; /* lines left to print */ variable

Completed in 198 milliseconds