Searched refs:ap (Results 1 - 25 of 1192) sorted by relevance

1234567891011>>

/freebsd-current/crypto/heimdal/lib/roken/
H A Dwarn.c41 va_list ap; local
42 va_start(ap, fmt);
43 vwarn(fmt, ap);
44 va_end(ap);
H A Derrx.c41 va_list ap; local
42 va_start(ap, fmt);
43 verrx(eval, fmt, ap);
44 va_end(ap);
H A Derr.c41 va_list ap; local
42 va_start(ap, fmt);
43 verr(eval, fmt, ap);
44 va_end(ap);
H A Dwarnx.c41 va_list ap; local
42 va_start(ap, fmt);
43 vwarnx(fmt, ap);
44 va_end(ap);
H A Dvwarnx.c40 vwarnx(const char *fmt, va_list ap) argument
42 rk_warnerr(0, fmt, ap);
H A Dvwarn.c40 vwarn(const char *fmt, va_list ap) argument
42 rk_warnerr(1, fmt, ap);
/freebsd-current/usr.sbin/bluetooth/sdpd/
H A Dlog.c52 va_list ap; local
54 va_start(ap, message);
55 vsyslog(LOG_EMERG, message, ap);
56 va_end(ap);
62 va_list ap; local
64 va_start(ap, message);
65 vsyslog(LOG_ALERT, message, ap);
66 va_end(ap);
72 va_list ap; local
74 va_start(ap, messag
82 va_list ap; local
92 va_list ap; local
102 va_list ap; local
112 va_list ap; local
122 va_list ap; local
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Headers/
H A D__stdarg_va_arg.h14 #define va_start(ap, ...) __builtin_va_start(ap, 0)
17 #define va_start(ap, param) __builtin_va_start(ap, param)
19 #define va_end(ap) __builtin_va_end(ap)
20 #define va_arg(ap, type) __builtin_va_arg(ap, type)
H A Dvadefs.h23 #define _crt_va_start(ap, param) __builtin_va_start(ap, param)
27 #define _crt_va_end(ap) __builtin_va_end(ap)
31 #define _crt_va_arg(ap, type) __builtin_va_arg(ap, type)
39 #define __crt_va_start(ap, param) __builtin_va_start(ap, param)
43 #define __crt_va_end(ap) __builtin_va_end(ap)
[all...]
/freebsd-current/crypto/openssl/test/testutil/
H A Doutput.c14 va_list ap; local
17 va_start(ap, fmt);
18 ret = test_vprintf_stdout(fmt, ap);
19 va_end(ap);
26 va_list ap; local
29 va_start(ap, fmt);
30 ret = test_vprintf_stderr(fmt, ap);
31 va_end(ap);
38 va_list ap; local
41 va_start(ap, fm
50 va_list ap; local
[all...]
/freebsd-current/stand/efi/include/
H A Defistdarg.h33 #define va_start(ap,v) ( ap = (va_list)&v + _INTSIZEOF(v) )
34 #define va_arg(ap,t) ( *(t *)((ap += _INTSIZEOF(t)) - _INTSIZEOF(t)) )
35 #define va_end(ap) ( ap = (va_list)0 )
/freebsd-current/contrib/tcpdump/
H A Dprint-arp.c79 #define ar_sha(ap) (((const u_char *)((ap)+1))+ 0)
80 #define ar_spa(ap) (((const u_char *)((ap)+1))+ GET_U_1((ap)->ar_hln))
81 #define ar_tha(ap) (((const u_char *)((ap)+1))+ GET_U_1((ap)->ar_hln)+GET_U_1((ap)->ar_pln))
82 #define ar_tpa(ap) (((cons
192 tpaddr_print_ip(netdissect_options *ndo, const struct arp_pkthdr *ap, u_short pro) argument
204 spaddr_print_ip(netdissect_options *ndo, const struct arp_pkthdr *ap, u_short pro) argument
231 atmarp_tpaddr_print(netdissect_options *ndo, const struct atmarp_pkthdr *ap, u_short pro) argument
243 atmarp_spaddr_print(netdissect_options *ndo, const struct atmarp_pkthdr *ap, u_short pro) argument
258 const struct atmarp_pkthdr *ap; local
351 const struct arp_pkthdr *ap; local
[all...]
/freebsd-current/contrib/wpa/src/ap/
H A Dap_list.c31 static int ap_list_beacon_olbc(struct hostapd_iface *iface, struct ap_info *ap) argument
37 iface->conf->channel != ap->channel)
40 if (ap->erp != -1 && (ap->erp & ERP_INFO_NON_ERP_PRESENT))
44 int rate = (ap->supported_rates[i] & 0x7f) * 5;
53 static struct ap_info * ap_get_ap(struct hostapd_iface *iface, const u8 *ap) argument
57 s = iface->ap_hash[STA_HASH(ap)];
58 while (s != NULL && os_memcmp(s->addr, ap, ETH_ALEN) != 0)
64 static void ap_ap_list_add(struct hostapd_iface *iface, struct ap_info *ap) argument
67 ap
76 ap_ap_list_del(struct hostapd_iface *iface, struct ap_info *ap) argument
90 ap_ap_hash_add(struct hostapd_iface *iface, struct ap_info *ap) argument
97 ap_ap_hash_del(struct hostapd_iface *iface, struct ap_info *ap) argument
119 ap_free_ap(struct hostapd_iface *iface, struct ap_info *ap) argument
131 struct ap_info *ap, *prev; local
147 struct ap_info *ap; local
174 struct ap_info *ap; local
252 struct ap_info *ap; local
[all...]
/freebsd-current/sys/fs/cd9660/
H A Dcd9660_bmap.c52 cd9660_bmap(struct vop_bmap_args *ap) argument
54 struct iso_node *ip = VTOI(ap->a_vp);
55 daddr_t lblkno = ap->a_bn;
62 if (ap->a_bop != NULL)
63 *ap->a_bop = &ip->i_mnt->im_devvp->v_bufobj;
64 if (ap->a_bnp == NULL)
71 *ap->a_bnp = (ip->iso_start + lblkno) << (bshift - DEV_BSHIFT);
77 if (ap->a_runp) {
82 *ap->a_runp = 0;
84 *ap
[all...]
/freebsd-current/contrib/tcp_wrappers/
H A Dmystdarg.h10 #define VASTART(ap,type,name) va_start(ap,name)
11 #define VAEND(ap) va_end(ap)
15 #define VASTART(ap,type,name) {type name; va_start(ap); name = va_arg(ap, type)
16 #define VAEND(ap) va_end(ap);}
/freebsd-current/contrib/unifdef/FreeBSD/
H A Derr.c35 va_list ap; local
36 va_start(ap, fmt);
37 verrc(eval, errno, fmt, ap);
38 va_end(ap);
42 verr(int eval, const char *fmt, va_list ap) argument
44 verrc(eval, errno, fmt, ap);
50 va_list ap; local
51 va_start(ap, fmt);
52 verrc(eval, code, fmt, ap);
53 va_end(ap);
57 verrc(int eval, int code, const char *fmt, va_list ap) argument
71 va_list ap; local
78 verrx(int eval, const char *fmt, va_list ap) argument
90 va_list ap; local
97 vwarn(const char *fmt, va_list ap) argument
105 va_list ap; local
112 vwarnc(int code, const char *fmt, va_list ap) argument
125 va_list ap; local
132 vwarnx(const char *fmt, va_list ap) argument
[all...]
/freebsd-current/contrib/mandoc/
H A Dcompat_err.c42 vwarnxi(const char *fmt, va_list ap) argument
46 vfprintf(stderr, fmt, ap);
50 vwarni(const char *fmt, va_list ap) argument
55 vwarnxi(fmt, ap);
64 va_list ap; local
66 va_start(ap, fmt);
67 vwarni(fmt, ap);
68 va_end(ap);
75 va_list ap; local
77 va_start(ap, fm
87 va_list ap; local
97 va_list ap; local
[all...]
/freebsd-current/contrib/sendmail/include/sm/
H A Dvarargs.h22 # define SM_VA_START(ap, f) va_start(ap, f)
26 # define SM_VA_START(ap, f) va_start(ap)
35 # define SM_VA_END_COPY(ap) do { } while (0)
39 # define SM_VA_END_COPY(ap) va_end(ap)
46 # define SM_VA_LOCAL_DECL va_list ap;
47 # define SM_VA_ARG(ap, type) va_arg(ap, typ
[all...]
/freebsd-current/contrib/sendmail/libsm/
H A Dvprintf.c26 ** ap -- the variable number of args to be used for output
33 sm_vprintf(timeout, fmt, ap)
36 va_list ap;
38 return sm_io_vfprintf(smiostdout, timeout, fmt, ap);
/freebsd-current/sys/sys/
H A D_stdarg.h42 #define va_start(ap, last) __builtin_va_start((ap), (last))
43 #define va_arg(ap, type) __builtin_va_arg((ap), type)
48 #define va_end(ap) __builtin_va_end(ap)
/freebsd-current/usr.sbin/ypserv/
H A Dyp_error.c50 static void __verr(const char *fmt, va_list ap) __printflike(1, 0);
53 __verr(const char *fmt, va_list ap) argument
57 vfprintf(stderr, fmt, ap);
60 vsyslog(LOG_NOTICE, fmt, ap);
67 va_list ap; local
68 va_start(ap, fmt);
69 __verr(fmt,ap);
70 va_end(ap);
/freebsd-current/lib/libc/stdio/
H A Dwscanf.c42 va_list ap; local
45 va_start(ap, fmt);
46 r = vfwscanf(stdin, fmt, ap);
47 va_end(ap);
54 va_list ap; local
57 va_start(ap, fmt);
58 r = vfwscanf_l(stdin, locale, fmt, ap);
59 va_end(ap);
H A Dwprintf.c43 va_list ap; local
45 va_start(ap, fmt);
46 ret = vfwprintf(stdout, fmt, ap);
47 va_end(ap);
55 va_list ap; local
57 va_start(ap, fmt);
58 ret = vfwprintf_l(stdout, locale, fmt, ap);
59 va_end(ap);
H A Dswscanf.c42 va_list ap; local
45 va_start(ap, fmt);
46 r = vswscanf(str, fmt, ap);
47 va_end(ap);
55 va_list ap; local
58 va_start(ap, fmt);
59 r = vswscanf_l(str, locale, fmt, ap);
60 va_end(ap);
H A Dasprintf.c48 va_list ap; local
50 va_start(ap, fmt);
51 ret = vasprintf(s, fmt, ap);
52 va_end(ap);
60 va_list ap; local
62 va_start(ap, fmt);
63 ret = vasprintf_l(s, locale, fmt, ap);
64 va_end(ap);

Completed in 199 milliseconds

1234567891011>>