PostgreSQL Source Code
git master
|
Go to the source code of this file.
Macros | |
#define | pg_hton16(x) pg_bswap16(x) |
#define | pg_hton32(x) pg_bswap32(x) |
#define | pg_hton64(x) pg_bswap64(x) |
#define | pg_ntoh16(x) pg_bswap16(x) |
#define | pg_ntoh32(x) pg_bswap32(x) |
#define | pg_ntoh64(x) pg_bswap64(x) |
Functions | |
static uint16 | pg_bswap16 (uint16 x) |
static uint32 | pg_bswap32 (uint32 x) |
static uint64 | pg_bswap64 (uint64 x) |
#define pg_hton16 | ( | x | ) | pg_bswap16(x) |
Definition at line 120 of file pg_bswap.h.
Referenced by CopySendInt16(), getaddrinfo(), PerformRadiusTransaction(), PostmasterMain(), pq_writeint16(), pqPutInt(), and readMessageFromPipe().
#define pg_hton32 | ( | x | ) | pg_bswap32(x) |
Definition at line 121 of file pg_bswap.h.
Referenced by be_gssapi_write(), build_startup_packet(), CopySendInt32(), des_cipher(), get_code_entry(), getaddrinfo(), inet_aton(), internal_cancel(), lo_hton64(), PerformRadiusTransaction(), pg_GSS_write(), pg_sockaddr_cidr_mask(), pq_writeint32(), PQconnectPoll(), pqPutInt(), pqPutMsgEnd(), pqsecure_open_gss(), qc_hash_lookup(), readMessageFromPipe(), scram_SaltedPassword(), secure_open_gssapi(), and socket_putmessage().
#define pg_hton64 | ( | x | ) | pg_bswap64(x) |
Definition at line 122 of file pg_bswap.h.
Referenced by fe_sendint64(), pq_writeint64(), and recompose_code().
#define pg_ntoh16 | ( | x | ) | pg_bswap16(x) |
Definition at line 124 of file pg_bswap.h.
Referenced by CopyGetInt16(), getnameinfo(), PerformRadiusTransaction(), pq_getmsgint(), pqGetInt(), and pqTraceOutputInt16().
#define pg_ntoh32 | ( | x | ) | pg_bswap32(x) |
Definition at line 125 of file pg_bswap.h.
Referenced by be_gssapi_read(), CopyGetInt32(), des_cipher(), des_setkey(), lo_ntoh64(), pg_foreach_ifaddr(), pg_GSS_read(), pq_getmessage(), pq_getmsgint(), pqGetInt(), pqsecure_open_gss(), pqTraceOutputInt32(), pqTraceOutputMessage(), pqTraceOutputNoTypeByteMessage(), processCancelRequest(), ProcessStartupPacket(), and secure_open_gssapi().
#define pg_ntoh64 | ( | x | ) | pg_bswap64(x) |
Definition at line 126 of file pg_bswap.h.
Referenced by fe_recvint64(), pq_getmsgint64(), and process_queued_fetch_requests().
Definition at line 42 of file pg_bswap.h.
Definition at line 64 of file pg_bswap.h.
Referenced by network_abbrev_convert().
|
inlinestatic |