Searched refs:am (Results 1 - 25 of 87) sorted by relevance

1234

/freebsd-10.0-release/contrib/openbsm/bin/auditfilterd/
H A Dauditfilterd_conf.c77 auditfilter_module_free(struct auditfilter_module *am) argument
80 if (am->am_modulename != NULL)
81 free(am->am_modulename);
82 if (am->am_arg_buffer != NULL)
83 free(am->am_arg_buffer);
84 if (am->am_argv != NULL)
85 free(am->am_argv);
96 struct auditfilter_module *am; local
99 am = TAILQ_FIRST(list);
100 TAILQ_REMOVE(list, am, am_lis
110 auditfilter_module_detach(struct auditfilter_module *am) argument
127 struct auditfilter_module *am; local
140 auditfilter_module_attach(struct auditfilter_module *am) argument
188 auditfilter_module_reinit(struct auditfilter_module *am) argument
219 struct auditfilter_module *am; local
296 struct auditfilter_module *am; local
500 struct auditfilter_module *am; local
509 struct auditfilter_module *am; local
[all...]
H A Dauditfilterd.c125 struct auditfilter_module *am; local
127 TAILQ_FOREACH(am, &filter_list, am_list) {
128 if (am->am_rawrecord != NULL)
129 (am->am_rawrecord)(am, ts, data, len);
141 struct auditfilter_module *am; local
155 TAILQ_FOREACH(am, &filter_list, am_list) {
156 if (am->am_record != NULL)
157 (am->am_record)(am, t
[all...]
/freebsd-10.0-release/sys/dev/firewire/
H A Dfwdma.h59 fwdma_v_addr(struct fwdma_alloc_multi *am, int index) argument
61 bus_size_t ssize = am->ssize;
62 int offset = am->esize * index;
64 return ((caddr_t)am->seg[offset / ssize].v_addr + (offset % ssize));
68 fwdma_bus_addr(struct fwdma_alloc_multi *am, int index) argument
70 bus_size_t ssize = am->ssize;
71 int offset = am->esize * index;
73 return (am->seg[offset / ssize].bus_addr + (offset % ssize));
83 fwdma_sync_multiseg(struct fwdma_alloc_multi *am, argument
88 seg = &am
95 fwdma_sync_multiseg_all(struct fwdma_alloc_multi *am, bus_dmasync_op_t op) argument
[all...]
H A Dfwdma.c157 struct fwdma_alloc_multi *am; local
171 am = (struct fwdma_alloc_multi *)malloc(sizeof(struct fwdma_alloc_multi)
173 if (am == NULL) {
177 am->ssize = ssize;
178 am->esize = esize;
179 am->nseg = 0;
195 &am->dma_tag)) {
197 free(am, M_FW);
208 for (seg = &am->seg[0]; nseg --; seg ++) {
209 seg->v_addr = fwdma_malloc_size(am
223 fwdma_free_multiseg(struct fwdma_alloc_multi *am) argument
[all...]
H A Dfwohcivar.h64 struct fwdma_alloc_multi *am; member in struct:fwohci_softc::fwohci_dbch
/freebsd-10.0-release/sys/dev/acpica/Osd/
H A DOsdSynch.c272 struct acpi_mutex *am; local
279 if ((am = malloc(sizeof(*am), M_ACPISEM, M_NOWAIT | M_ZERO)) == NULL)
282 snprintf(am->am_name, sizeof(am->am_name), "ACPI mutex (%p)", am);
283 mtx_init(&am->am_lock, am->am_name, NULL, MTX_DEF);
285 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "created %s\n", am->am_name));
287 *OutHandle = (ACPI_MUTEX)am;
298 struct acpi_mutex *am = (struct acpi_mutex *)Handle; local
345 struct acpi_mutex *am = (struct acpi_mutex *)Handle; local
416 struct acpi_mutex *am = (struct acpi_mutex *)Handle; local
[all...]
/freebsd-10.0-release/contrib/amd/amd/
H A Damfs_error.c40 * File: am-utils/amd/amfs_error.c
59 static int amfs_error_mount(am_node *am, mntfs *mf);
60 static int amfs_error_umount(am_node *am, mntfs *mf);
100 amfs_error_mount(am_node *am, mntfs *mf) argument
107 amfs_error_umount(am_node *am, mntfs *mf) argument
H A Damfs_union.c40 * File: am-utils/amd/amfs_union.c
95 am_node *am; local
96 am = amfs_generic_lookup_child(arg, dir, &error, VLOOK_CREATE);
97 if (am && error < 0)
98 am = amfs_generic_mount_child(am, &error);
H A Dops_efs.c40 * File: am-utils/amd/ops_efs.c
56 static int efs_mount(am_node *am, mntfs *mf);
57 static int efs_umount(am_node *am, mntfs *mf);
149 efs_mount(am_node *am, mntfs *mf) argument
166 efs_umount(am_node *am, mntfs *mf) argument
H A Dops_lofs.c40 * File: am-utils/amd/ops_lofs.c
56 static int lofs_mount(am_node *am, mntfs *mf);
57 static int lofs_umount(am_node *am, mntfs *mf);
138 lofs_mount(am_node *am, mntfs *mf) argument
154 lofs_umount(am_node *am, mntfs *mf) argument
H A Dops_ufs.c40 * File: am-utils/amd/ops_ufs.c
56 static int ufs_mount(am_node *am, mntfs *mf);
57 static int ufs_umount(am_node *am, mntfs *mf);
158 ufs_mount(am_node *am, mntfs *mf) argument
175 ufs_umount(am_node *am, mntfs *mf) argument
H A Dops_xfs.c40 * File: am-utils/amd/ops_xfs.c
56 static int xfs_mount(am_node *am, mntfs *mf);
57 static int xfs_umount(am_node *am, mntfs *mf);
149 xfs_mount(am_node *am, mntfs *mf) argument
166 xfs_umount(am_node *am, mntfs *mf) argument
H A Dops_cdfs.c40 * File: am-utils/amd/ops_cdfs.c
56 static int cdfs_mount(am_node *am, mntfs *mf);
57 static int cdfs_umount(am_node *am, mntfs *mf);
207 cdfs_mount(am_node *am, mntfs *mf) argument
223 cdfs_umount(am_node *am, mntfs *mf) argument
H A Damfs_program.c40 * File: am-utils/amd/amfs_program.c
56 static int amfs_program_mount(am_node *am, mntfs *mf);
57 static int amfs_program_umount(am_node *am, mntfs *mf);
195 amfs_program_mount(am_node *am, mntfs *mf) argument
202 amfs_program_umount(am_node *am, mntfs *mf) argument
H A Damfs_nfsx.c40 * File: am-utils/amd/amfs_nfsx.c
74 static int amfs_nfsx_mount(am_node *am, mntfs *mf);
75 static int amfs_nfsx_umount(am_node *am, mntfs *mf);
369 amfs_nfsx_remount(am_node *am, mntfs *mf, int fg) argument
376 nx->nx_mp = am;
411 n->n_error = m->mf_ops->mount_fs(am, m);
430 amfs_nfsx_mount(am_node *am, mntfs *mf) argument
432 return amfs_nfsx_remount(am, mf, FALSE);
442 amfs_nfsx_umount(am_node *am, mntfs *mf) argument
465 n->n_error = m->mf_ops->umount_fs(am,
[all...]
H A Dops_cachefs.c40 * File: am-utils/amd/ops_cachefs.c
57 static int cachefs_mount(am_node *am, mntfs *mf);
58 static int cachefs_umount(am_node *am, mntfs *mf);
210 cachefs_mount(am_node *am, mntfs *mf) argument
235 cachefs_umount(am_node *am, mntfs *mf) argument
H A Dops_pcfs.c40 * File: am-utils/amd/ops_pcfs.c
56 static int pcfs_mount(am_node *am, mntfs *mf);
57 static int pcfs_umount(am_node *am, mntfs *mf);
204 pcfs_mount(am_node *am, mntfs *mf) argument
221 pcfs_umount(am_node *am, mntfs *mf) argument
/freebsd-10.0-release/lib/libc/stdtime/
H A Dtimelocal.h50 const char *am; member in struct:lc_time_T
/freebsd-10.0-release/usr.sbin/amd/doc/
H A DMakefile7 INFO= am-utils
10 INFOENTRY= "* Am-utils: (am-utils). The Amd automounter suite of utilities"
/freebsd-10.0-release/contrib/atf/
H A DMakefile.am48 include admin/Makefile.am.inc
49 include atf-c/Makefile.am.inc
50 include atf-c++/Makefile.am.inc
51 include atf-sh/Makefile.am.inc
52 include bootstrap/Makefile.am.inc
53 include doc/Makefile.am.inc
54 include test-programs/Makefile.am.inc
57 include atf-report/Makefile.am.inc
58 include atf-config/Makefile.am.inc
59 include atf-run/Makefile.am
[all...]
/freebsd-10.0-release/contrib/amd/scripts/
H A DMakefile.am3 # Package: am-utils
8 am-eject \
32 am-eject.in \
/freebsd-10.0-release/usr.sbin/timed/timed/
H A Dnetworkdelta.c159 float am = -LONG_MAX; local
205 if (ap-am < gnuf || sum == 0) {
215 am = a;
223 if (aa < am)
224 aa = (a + am)/2;
/freebsd-10.0-release/crypto/openssl/crypto/bn/
H A Dbn_exp.c589 BIGNUM tmp, am; local
629 * powers of am, am itself and tmp.
650 /* lay down tmp and am right after powers table */
652 am.d = tmp.d + top;
653 tmp.top = am.top = 0;
654 tmp.dmax = am.dmax = top;
655 tmp.neg = am.neg = 0;
656 tmp.flags = am.flags = BN_FLG_STATIC_DATA;
671 if (!BN_mod(&am,
[all...]
/freebsd-10.0-release/usr.bin/calendar/calendars/de_DE.ISO8859-1/
H A Dcalendar.feiertag40 06/17 Arbeiteraufstand am 17. Juni 1953
/freebsd-10.0-release/contrib/libstdc++/
H A DMakefile.am25 include $(top_srcdir)/fragment.am

Completed in 117 milliseconds

1234