Home | History | Annotate | Download | only in syslogd

Lines Matching defs:sqentry

3107 	struct string_queue *sqentry, *sqe1, *sqe2;
3109 if(!(sqentry = malloc(sizeof(*sqentry)))) {
3115 if (dehumanize_number(tmp_buf, (int64_t*) &(sqentry->key)) == -1
3116 || sqentry->key > (LOG_NFACILITIES<<3)) {
3118 free(sqentry);
3122 sqentry->data = tmp_buf;
3126 sqentry, entries);
3132 if (sqe1->key > sqentry->key) {
3134 sqentry, entries);
3140 if (sqe2->key > sqentry->key) {
3142 } else if (sqe2->key == sqentry->key) {
3145 FREEPTR(sqentry);
3150 STAILQ_INSERT_AFTER(&GlobalSign.sig2_delims, sqe1, sqentry, entries);