HomeSort by relevance Sort by last modified time
    Searched defs:htons (Results 1 - 25 of 32) sorted by null

1 2

  /bionic/libc/upstream-openbsd/lib/libc/net/
htons.c 1 /* $OpenBSD: htons.c,v 1.9 2014/07/21 01:51:10 guenther Exp $ */
10 #undef htons macro
13 htons(u_int16_t x) function
  /device/linaro/bootloader/edk2/StdLib/LibC/Main/
HtoNtoH.c 20 #undef htons macro
47 htons( function
  /external/curl/lib/
warnless.h 105 # undef htons macro
106 # define htons(a) curlx_htons((a)) macro
  /external/syslinux/com32/include/netinet/
in.h 11 #define htons(x) cpu_to_be16(x) macro
  /external/syslinux/core/lwip/src/include/lwip/
def.h 68 #ifdef htons
69 #undef htons macro
70 #endif /* htons */
81 #define htons(x) lwip_htons(x) macro
  /external/iproute2/include/
bpf_api.h 43 #ifndef htons
44 # define htons(X) __constant_htons((X)) macro
  /external/syslinux/gpxe/src/include/
big_bswap.h 7 #define htons(x) (x) macro
little_bswap.h 9 #define htons(x) __bswap_16(x) macro
  /system/core/base/include/android-base/
endian.h 31 /* glibc keeps htons and htonl in <netinet/in.h>. */
56 #define htons(x) __builtin_bswap16(x) macro
  /system/core/libutils/
Unicode.cpp 28 # undef htons macro
33 # define htons(x) ntohs(x) macro
  /bionic/libc/include/sys/
endian.h 53 uint16_t htons(uint16_t __x) __attribute_const__ __INTRODUCED_IN(21);
59 #define htons(x) __swap16(x) macro
76 #define HTONS(x) (x) = htons(__BIONIC_CAST(static_cast,u_int16_t,(x)))
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
endian.h 77 uint16_t htons(uint16_t) __attribute__((__const__));
124 #define htons(x) (x) macro
129 #define HTONS(x) (void) (x)
136 #define htons(x) bswap16((uint16_t)(x))
141 #define HTONS(x) (x) = htons((uint16_t)(x))
  /external/syslinux/gpxe/src/net/udp/
dns.c 50 .st_port = htons ( DNS_PORT ),
292 dns->query.dns.id = htons ( ++qid );
371 case htons ( DNS_TYPE_A ):
384 case htons ( DNS_TYPE_CNAME ):
391 dns->qinfo->qtype = htons ( DNS_TYPE_A );
392 dns->qinfo->qclass = htons ( DNS_CLASS_IN );
415 case htons ( DNS_TYPE_A ):
420 dns->qinfo->qtype = htons ( DNS_TYPE_CNAME );
424 case htons ( DNS_TYPE_CNAME ): function
429 if ( dns->qinfo->qtype == htons ( DNS_TYPE_A ) )
    [all...]
  /external/tcpdump/
netdissect-stdinc.h 286 #undef htons macro
294 #define htons(x) __ntohs(x) macro
  /external/python/cpython2/Lib/plat-os2emx/
IN.py 12 def htons(X): return _swaps(X) function
  /external/python/cpython2/Lib/plat-aix3/
IN.py 70 def htons(x): return (x) function
  /external/python/cpython2/Lib/plat-irix5/
IN.py 18 def htons(x): return (x) function
22 def htons(x): return ntohs(x) function
  /external/valgrind/coregrind/
m_libcfile.c 993 UShort VG_(htons) ( UShort x ) function
    [all...]
  /external/python/cpython2/Lib/plat-aix4/
IN.py 94 def htons(x): return (x) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/netinet/
in.h 370 extern uint16_t htons (uint16_t __hostshort)
388 # define htons(x) (x) macro
394 # define htons(x) __bswap_16 (x) macro
  /external/python/cpython2/Lib/plat-beos5/
IN.py 302 def htons(x): return B_HOST_TO_BENDIAN_INT16(x) function
  /external/python/cpython2/Lib/plat-irix6/
IN.py 61 def htons(x): return (x) function
65 def htons(x): return ntohs(x) function
  /external/python/cpython2/Lib/plat-freebsd6/
IN.py 151 def htons(x): return __htons(x) function
  /external/python/cpython2/Lib/plat-freebsd7/
IN.py 145 def htons(x): return __htons(x) function
  /external/python/cpython2/Lib/plat-freebsd8/
IN.py 145 def htons(x): return __htons(x) function

Completed in 435 milliseconds

1 2