Home | History | Annotate | Download | only in logd

Lines Matching defs:sequence

70  *  This function returns a positive sequence number on success, else -errno.
74 static int16_t sequence = 0;
91 * to always blindly increment the sequence number
108 * Only increment the sequence number on a guarantee
111 * Also, the sequence is defined as a u32 in the kernel
119 req.nlh.nlmsg_seq = ++sequence;
138 /* If the ack failed, return the error, else return the sequence number */
139 rc = (rc == 0) ? (int)sequence : rc;
142 /* Don't let sequence roll to negative */
143 if (sequence < 0) {
144 sequence = 0;