func github.com/jackc/pgio.AppendUint32
25 uses
github.com/jackc/pgio (current package)
write.go#L12: func AppendUint32(buf []byte, n uint32) []byte {
write.go#L31: return AppendUint32(buf, uint32(n))
github.com/jackc/pgproto3/v2
authentication_cleartext_password.go#L37: dst = pgio.AppendUint32(dst, AuthTypeCleartextPassword)
authentication_md5_password.go#L40: dst = pgio.AppendUint32(dst, AuthTypeMD5Password)
authentication_ok.go#L37: dst = pgio.AppendUint32(dst, AuthTypeOk)
authentication_sasl.go#L49: dst = pgio.AppendUint32(dst, AuthTypeSASL)
authentication_sasl_continue.go#L41: dst = pgio.AppendUint32(dst, AuthTypeSASLContinue)
authentication_sasl_final.go#L41: dst = pgio.AppendUint32(dst, AuthTypeSASLFinal)
backend_key_data.go#L34: dst = pgio.AppendUint32(dst, 12)
backend_key_data.go#L35: dst = pgio.AppendUint32(dst, src.ProcessID)
backend_key_data.go#L36: dst = pgio.AppendUint32(dst, src.SecretKey)
cancel_request.go#L42: dst = pgio.AppendUint32(dst, src.ProcessID)
cancel_request.go#L43: dst = pgio.AppendUint32(dst, src.SecretKey)
execute.go#L47: dst = pgio.AppendUint32(dst, src.MaxRows)
notification_response.go#L49: dst = pgio.AppendUint32(dst, src.PID)
parameter_description.go#L49: dst = pgio.AppendUint32(dst, oid)
parse.go#L67: dst = pgio.AppendUint32(dst, oid)
row_description.go#L112: dst = pgio.AppendUint32(dst, fd.TableOID)
row_description.go#L114: dst = pgio.AppendUint32(dst, fd.DataTypeOID)
startup_message.go#L71: dst = pgio.AppendUint32(dst, src.ProtocolVersion)
github.com/jackc/pgtype
composite_type.go#L571: b.buf = pgio.AppendUint32(b.buf, oid)
float4.go#L246: buf = pgio.AppendUint32(buf, math.Float32bits(src.Float))
oid.go#L54: return pgio.AppendUint32(buf, uint32(src)), nil
pguint32.go#L124: return pgio.AppendUint32(buf, src.Uint), nil
tid.go#L129: buf = pgio.AppendUint32(buf, src.BlockNumber)
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |