/freebsd/contrib/openbsm/bin/auditdistd/ |
H A D | trail.c | 65 struct trail { struct 93 struct trail * argument 96 struct trail *trail; in trail_new() local 98 trail = calloc(1, sizeof(*trail)); in trail_new() 100 if (strlcpy(trail->tr_dirname, dirname, sizeof(trail->tr_dirname)) >= in trail_new() 101 sizeof(trail->tr_dirname)) { in trail_new() 102 free(trail); in trail_new() 107 trail->tr_dirfp = opendir(dirname); in trail_new() 108 if (trail->tr_dirfp == NULL) { in trail_new() 114 free(trail); in trail_new() [all …]
|
H A D | trail.h | 41 struct trail; 43 struct trail *trail_new(const char *dirname, bool create); 44 void trail_free(struct trail *trail); 47 void trail_start(struct trail *trail, const char *filename, off_t offset); 48 void trail_next(struct trail *trail); 49 void trail_close(struct trail *trail); 50 void trail_reset(struct trail *trail); 51 void trail_unlink(struct trail *trail, const char *filename); 52 bool trail_switch(struct trail *trail); 53 const char *trail_filename(const struct trail *trail); [all …]
|
H A D | Makefile.in | 116 auditdistd-trail.$(OBJEXT) 382 trail.c 494 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/auditdistd-trail.Po@am__quote@ 713 auditdistd-trail.o: trail.c 714 … -MT auditdistd-trail.o -MD -MP -MF $(DEPDIR)/auditdistd-trail.Tpo -c -o auditdistd-trail.o `test … 715 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/auditdistd-trail.Tpo $(DEPDIR)/auditdistd-trail.… 718 …) $(auditdistd_CFLAGS) $(CFLAGS) -c -o auditdistd-trail.o `test -f 'trail.c' || echo '$(srcdir)/'`… 720 auditdistd-trail.obj: trail.c 721 …distd_CFLAGS) $(CFLAGS) -MT auditdistd-trail.obj -MD -MP -MF $(DEPDIR)/auditdistd-trail.Tpo -c -o … 722 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/auditdistd-trail.Tpo $(DEPDIR)/auditdistd-trail.… [all …]
|
H A D | Makefile.am | 29 trail.c
|
H A D | sender.c | 87 static struct trail *adist_trail;
|
/freebsd/usr.sbin/praudit/tests/ |
H A D | praudit_test.sh | 37 praudit -d "," $(atf_get_srcdir)/trail 50 praudit -d "_" $(atf_get_srcdir)/trail 64 praudit $(atf_get_srcdir)/trail 78 praudit -n $(atf_get_srcdir)/trail 91 praudit -r $(atf_get_srcdir)/trail 105 praudit -l $(atf_get_srcdir)/trail 119 praudit -s $(atf_get_srcdir)/trail 132 praudit -x $(atf_get_srcdir)/trail 166 praudit -rs $(atf_get_srcdir)/trail
|
H A D | Makefile | 8 input/trail \
|
/freebsd/contrib/tzcode/ |
H A D | strftime.c | 639 register int trail; in _yconv() local 642 trail = a % DIVISOR + b % DIVISOR; in _yconv() 643 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR; in _yconv() 644 trail %= DIVISOR; in _yconv() 645 if (trail < 0 && lead > 0) { in _yconv() 646 trail += DIVISOR; in _yconv() 648 } else if (lead < 0 && trail > 0) { in _yconv() 649 trail -= DIVISOR; in _yconv() 653 if (lead == 0 && trail < 0) in _yconv() 658 pt = _conv(((trail < 0) ? -trail : trail), "%02d", pt, ptlim); in _yconv()
|
H A D | zdump.c | 1238 register int trail; in dumptime() local 1255 trail = timeptr->tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR; in dumptime() 1257 trail / DIVISOR; in dumptime() 1258 trail %= DIVISOR; in dumptime() 1259 if (trail < 0 && lead > 0) { in dumptime() 1260 trail += DIVISOR; in dumptime() 1262 } else if (lead < 0 && trail > 0) { in dumptime() 1263 trail -= DIVISOR; in dumptime() 1267 printf("%d", trail); in dumptime() 1268 else printf("%d%d", lead, ((trail < in dumptime() [all...] |
/freebsd/contrib/jemalloc/src/ |
H A D | large.c | 110 extent_t *trail = extent_split_wrapper(tsdn, arena, in large_ralloc_no_move_shrink() local 113 if (trail == NULL) { in large_ralloc_no_move_shrink() 118 large_dalloc_maybe_junk(extent_addr_get(trail), in large_ralloc_no_move_shrink() 119 extent_size_get(trail)); in large_ralloc_no_move_shrink() 122 arena_extents_dirty_dalloc(tsdn, arena, &extent_hooks, trail); in large_ralloc_no_move_shrink() 153 extent_t *trail; in large_ralloc_no_move_expand() local 155 if ((trail = extents_alloc(tsdn, arena, &extent_hooks, in large_ralloc_no_move_expand() 158 || (trail = extents_alloc(tsdn, arena, &extent_hooks, in large_ralloc_no_move_expand() 165 if ((trail = extent_alloc_wrapper(tsdn, arena, &extent_hooks, in large_ralloc_no_move_expand() 175 if (extent_merge_wrapper(tsdn, arena, &extent_hooks, extent, trail)) { in large_ralloc_no_move_expand() [all …]
|
H A D | extent.c | 983 extent_t **extent, extent_t **lead, extent_t **trail, in extent_split_interior() argument 998 *trail = NULL; in extent_split_interior() 1017 *trail = extent_split_impl(tsdn, arena, r_extent_hooks, *extent, in extent_split_interior() 1020 if (*trail == NULL) { in extent_split_interior() 1062 extent_t *trail; in extent_recycle_split() local 1067 tsdn, arena, r_extent_hooks, rtree_ctx, &extent, &lead, &trail, in extent_recycle_split() 1077 assert(to_leak != NULL && lead == NULL && trail == NULL); in extent_recycle_split() 1086 if (trail != NULL) { in extent_recycle_split() 1087 extent_deactivate(tsdn, arena, extents, trail); in extent_recycle_split() 1369 extent_t *trail; in extent_grow_retained() local [all …]
|
/freebsd/lib/libc/stdtime/ |
H A D | strftime.c | 605 register int trail; in _yconv() local 608 trail = a % DIVISOR + b % DIVISOR; in _yconv() 609 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR; in _yconv() 610 trail %= DIVISOR; in _yconv() 611 if (trail < 0 && lead > 0) { in _yconv() 612 trail += DIVISOR; in _yconv() 614 } else if (lead < 0 && trail > 0) { in _yconv() 615 trail -= DIVISOR; in _yconv() 619 if (lead == 0 && trail < 0) in _yconv() 624 pt = _conv(((trail < 0) ? -trail : trail), "%02d", pt, in _yconv()
|
/freebsd/contrib/openbsm/ |
H A D | README | 14 daemon, and the auditdistd(8) audit-trail distribution daemon. 42 auditdistd Audit trail distribution daemon 44 auditreduce Audit trail reduction tool
|
H A D | NEWS | 37 - auditdistd, a distributed audit trail management daemon, has now been 38 merged. This allows trail files to be securely and reliably synced from 50 - Fix expiration of trail files when the host parameter is used. 54 - Fix a directory descriptor leak that happened when audit trail partitions 81 - Add default for 'expire-after' in audit_control to expire trail files when 98 - Audit trail log expiration support added. It is configured in 101 trail files are not expired and removed. See audit_control(5) for 148 - Add 'current' symlink to active audit trail. 149 - Add crash recovery of previous audit trail file when detected on audit 151 - Add the event AUE_audit_recovery to indicated when an audit trail file has [all …]
|
/freebsd/usr.sbin/auditdistd/ |
H A D | Makefile | 23 SRCS+= token.l trail.c
|
/freebsd/ |
H A D | CONTRIBUTING.md | 131 Other projects use Signed-off-by to create a paper trail for contributions they 138 suggest that people add this line. It creates a paper trail for infrequent
|
/freebsd/sys/security/audit/ |
H A D | audit_bsm.c | 120 token_t *cur, *hdr, *trail; in kau_close() local 152 trail = au_to_trailer(tot_rec_size); in kau_close() 153 TAILQ_INSERT_TAIL(&rec->token_q, trail, tokens); in kau_close()
|
/freebsd/contrib/openbsm/bsm/ |
H A D | libbsm.h | 776 au_trailer_t trail; member
|
/freebsd/contrib/ntp/util/ |
H A D | ntp-keygen-opts.def | 558 A certificate trail is created when Autokey asks the immediately 645 a certificate trail ending at a trusted host. 646 The trail is defined by static configuration file entries
|
H A D | ntp-keygen.texi | 146 A certificate trail is created when Autokey asks the immediately
|
H A D | invoke-ntp-keygen.texi | 292 A certificate trail is created when Autokey asks the immediately 379 a certificate trail ending at a trusted host. 380 The trail is defined by static configuration file entries
|
/freebsd/contrib/openbsm/libbsm/ |
H A D | bsm_io.c | 1295 READ_TOKEN_U_INT16(buf, len, tok->tt.trail.magic, tok->len, err); in fetch_trailer_tok() 1299 READ_TOKEN_U_INT32(buf, len, tok->tt.trail.count, tok->len, err); in fetch_trailer_tok() 1313 print_4_bytes(fp, tok->tt.trail.count, "%u"); in print_trailer_tok()
|
/freebsd/contrib/sendmail/contrib/ |
H A D | mmuegel | 368 X '%z', q|$rep = $TZ eq "" ? "" : "$TZ "|, # time zone from TZ env var (w/trail. space) 1668 …to avoid disk space problems. \*(mp tries its best to keep as much of the header trail as possible.
|
/freebsd/share/dict/ |
H A D | web2a | 3251 back trail 7563 bracket trail 9157 by-trail 22789 foot trail 55136 skidding trail 58961 star trail 66147 trail angle 66148 trail arms 66149 trail bar 66150 trail blazer [all …]
|
/freebsd/contrib/ntp/ntpd/ |
H A D | invoke-ntp.conf.texi | 637 in the group be able to construct a certificate trail to one 641 for all hosts along the trail to one or more trusted hosts. 645 a trail to at least one trusted host.
|