Searched defs:tail (Results 1 - 16 of 16) sorted by path

/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/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/core/debuggerd/
H A Dtombstone.cpp483 // If "tail" is non-zero, log the last "tail" number of lines.
487 log_t* log, pid_t pid, const char* filename, unsigned int tail) {
496 android_name_to_log_id(filename), ANDROID_LOG_RDONLY | ANDROID_LOG_NONBLOCK, tail, pid);
534 tail ? "tail end of " : "", filename);
601 static void dump_logs(log_t* log, pid_t pid, unsigned int tail) { argument
602 dump_log_file(log, pid, "system", tail);
603 dump_log_file(log, pid, "main", tail);
486 dump_log_file( log_t* log, pid_t pid, const char* filename, unsigned int tail) argument
/system/core/liblog/
H A Dlogger.h102 unsigned int tail; member in struct:android_log_logger_list
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
/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/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/libutils/
H A DString8.cpp433 size_t tail = index; local
440 memmove(buf + tail, buf + index + skip, next - index - skip);
441 tail += next - index - skip;
444 unlockBuffer(tail);
/system/core/logd/
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 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/toolbox/upstream-netbsd/usr.bin/grep/
H A Dgrep.c149 int tail; /* lines left to print */ variable
/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;

Completed in 246 milliseconds