HomeSort by relevance Sort by last modified time
    Searched refs:af (Results 1 - 25 of 199) sorted by null

1 2 3 4 5 6 7 8

  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
p2.cpp 7 auto void af(); // expected-error {{illegal storage class on function}}
14 auto void af(); // expected-error {{storage class specified for a member declaration}}
  /external/tcpdump/missing/
inet_pton.c 51 inet_pton(int af, const char *src, void *dst)
53 if (af != AF_INET) {
resolv_ext.h 38 int af; /* address family for addr, mask */ member in struct:__res_state_ext::__anon28636
  /external/clang/test/CodeGenCXX/
ptr-to-datamember.cpp 32 F Af;
49 F A::* af = &A::Af; member in class:A
50 pr(a1.*af);
52 (a1.*af).iF = 100;
53 (a1.*af).fF = 200.00;
54 printf(" %d %f\n", (a1.*af).iF, (a1.*af).fF);
55 pr(a1.*af);
57 (a1.*af).iF++
64 F A::* af = &A::Af; member in class:A
    [all...]
  /external/tcpdump/
enc.h 44 u_int32_t af; member in struct:enchdr
print-pflog.c 123 u_int8_t af; local
151 af = hdr->af;
155 switch (af) {
  /external/chromium_org/net/websockets/
PRESUBMIT.py 31 added_source_filenames = set(input_api.basename(af.LocalPath())
32 for af in input_api.AffectedSourceFiles(None)
33 if af.Action().startswith('A'))
37 lambda af: af.LocalPath().endswith('/README'))
  /external/openssh/openbsd-compat/
bindresvport.c 55 int error, af; local
71 af = sa->sa_family;
74 af = sa->sa_family;
76 if (af == AF_INET) {
80 } else if (af == AF_INET6) {
88 sa->sa_family = af;
rresvport.c 58 rresvport_af(int *alport, sa_family_t af)
69 switch (af) {
82 sa->sa_family = af;
84 s = socket(af, SOCK_STREAM, 0);
99 sa->sa_family = af;
port-tun.c 211 u_int32_t *af; local
215 if (len <= 0 || len > (int)(sizeof(rbuf) - sizeof(*af)))
220 af = (u_int32_t *)ptr;
225 *af = AF_INET6;
229 *af = AF_INET;
238 af = (u_int32_t *)ptr;
239 if (*af == htonl(AF_INET6))
240 *af = htonl(OPENBSD_AF_INET6);
242 *af = htonl(OPENBSD_AF_INET);
253 u_int32_t *af; local
    [all...]
  /external/openssh/
addrmatch.c 37 sa_family_t af; member in struct:xaddr
52 addr_unicast_masklen(int af)
54 switch (af) {
65 masklen_valid(int af, u_int masklen)
67 switch (af) {
93 xa->af = AF_INET;
99 xa->af = AF_INET6;
113 * Calculate a netmask of length 'l' for address family 'af' and
118 addr_netmask(int af, u_int l, struct xaddr *n)
122 if (masklen_valid(af, l) != 0 || n == NULL
    [all...]
  /external/wpa_supplicant_8/src/utils/
ip_addr.c 20 if (addr->af == AF_INET) {
26 if (addr->af == AF_INET6) {
43 switch (a->af) {
64 addr->af = AF_INET;
70 addr->af = AF_INET6;
ip_addr.h 13 int af; /* AF_INET / AF_INET6 */ member in struct:hostapd_ip_addr
  /frameworks/av/media/libmedia/
AudioSystem.cpp 88 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
89 if (af == 0) return PERMISSION_DENIED;
90 return af->setMicMute(state);
94 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
95 if (af == 0) return PERMISSION_DENIED;
96 *state = af->getMicMute();
102 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
103 if (af == 0) return PERMISSION_DENIED;
104 af->setMasterVolume(value);
110 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger() local
118 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
126 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
136 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
145 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
155 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
164 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
173 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
179 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
185 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
244 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
285 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
325 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
347 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
368 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
376 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
391 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
401 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
407 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
414 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
771 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
778 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
785 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger(); local
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
inet_ntop.cc 20 const char* inet_ntop(int af, const void* src, char* dst, socklen_t size) {
21 if (AF_INET == af) {
33 if (AF_INET6 == af) {
  /external/chromium_org/third_party/libjingle/source/talk/base/
nethelpers.cc 84 const char* inet_ntop(int af, const void *src, char* dst, socklen_t size) {
86 return win32_inet_ntop(af, src, dst, size);
88 return ::inet_ntop(af, src, dst, size);
92 int inet_pton(int af, const char* src, void *dst) {
94 return win32_inet_pton(af, src, dst);
96 return ::inet_pton(af, src, dst);
nethelpers.h 71 const char* inet_ntop(int af, const void *src, char* dst, socklen_t size);
72 int inet_pton(int af, const char* src, void *dst);
  /external/qemu/target-i386/
helper_template.h 57 int cf, pf, af, zf, sf, of; local
63 af = (CC_DST ^ src1 ^ src2) & 0x10;
67 return cf | pf | af | zf | sf | of;
81 int cf, pf, af, zf, sf, of;
87 af = (CC_DST ^ src1 ^ src2) & 0x10;
91 return cf | pf | af | zf | sf | of;
105 int cf, pf, af, zf, sf, of;
111 af = (CC_DST ^ src1 ^ src2) & 0x10;
115 return cf | pf | af | zf | sf | of;
130 int cf, pf, af, zf, sf, of
    [all...]
  /bionic/libc/netbsd/resolv/
res_private.h 9 int af; member in struct:__res_state_ext::sort_list
  /external/kernel-headers/original/linux/netfilter/
x_tables.h 268 int af; /* address/protocol family */ member in struct:xt_table
313 extern struct xt_match *xt_find_match(int af, const char *name, u8 revision);
314 extern struct xt_target *xt_find_target(int af, const char *name, u8 revision);
315 extern struct xt_target *xt_request_find_target(int af, const char *name,
317 extern int xt_find_revision(int af, const char *name, u8 revision, int target,
320 extern struct xt_table *xt_find_table_lock(int af, const char *name);
323 extern int xt_proto_init(int af);
324 extern void xt_proto_fini(int af);
389 extern void xt_compat_lock(int af);
390 extern void xt_compat_unlock(int af);
    [all...]
  /bionic/libc/netbsd/
gethnamaddr.c 512 gethostbyname2(const char *name, int af)
514 return android_gethostbynameforiface(name, af, NULL, 0);
518 android_gethostbynameforiface(const char *name, int af, const char *iface, int mark)
525 hp = gethostbyname_internal(name, af, res, iface, mark);
621 gethostbyname_internal_real(const char *name, int af, res_state res)
637 switch (af) {
650 rs->host.h_addrtype = af;
675 if (inet_pton(af, name,
709 if (inet_pton(af, name,
734 default_dns_files, name, strlen(name), af) != NS_SUCCESS)
916 int af, len; local
993 int af; local
1120 int len, af; local
1255 int af; local
1316 int len, af, advance; local
    [all...]
  /external/iproute2/include/
utils.h 97 extern const char *format_host(int af, int len, const void *addr,
99 extern const char *rt_addr_n2a(int af, int len, const void *addr,
109 const char *dnet_ntop(int af, const void *addr, char *str, size_t len);
110 int dnet_pton(int af, const char *src, void *addr);
112 const char *ipx_ntop(int af, const void *addr, char *str, size_t len);
113 int ipx_pton(int af, const char *src, void *addr);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
Audio_mac.py 109 af = aifc.open(fn, 'r')
110 print af.getparams()
112 p.setoutrate(af.getframerate())
113 p.setsampwidth(af.getsampwidth())
114 p.setnchannels(af.getnchannels())
117 data = af.readframes(BUFSIZ)
  /external/valgrind/main/none/tests/x86/
aad_aam.c 21 int cf __attribute__((unused)),pf,af __attribute__((unused)),zf,sf; local
41 af=!!(flags&0x10);
47 // printf("%x CF=%d PF=%d AF=%d ZF=%d SF=%d OF=%d\n",
48 // flags,cf,pf,af,zf,sf,of);
88 af=!!(flags&0x10);
94 // printf("%x CF=%d PF=%d AF=%d ZF=%d SF=%d OF=%d\n",
95 // flags,cf,pf,af,zf,sf,of);
  /cts/tests/tests/security/jni/
android_security_cts_LoadEffectLibraryTest.cpp 47 sp<IAudioFlinger> af = interface_cast<IAudioFlinger>(binder); local
49 data.writeInterfaceToken(af->getInterfaceDescriptor());

Completed in 466 milliseconds

1 2 3 4 5 6 7 8