Home
last modified time | relevance | path

Searched defs:DialSettings (Results 1 – 4 of 4) sorted by relevance

/external/syzkaller/vendor/google.golang.org/api/internal/
Dsettings.go27 type DialSettings struct { struct
28 Endpoint string
29 Scopes []string
30 TokenSource oauth2.TokenSource
31 CredentialsFile string // if set, Token Source is ignored.
32 UserAgent string
33 APIKey string
34 HTTPClient *http.Client
35 GRPCDialOpts []grpc.DialOption
36 GRPCConn *grpc.ClientConn
Dpool.go32 func NewPoolResolver(size int, o *DialSettings) *PoolResolver {
Dcreds.go30 func Creds(ctx context.Context, ds *DialSettings) (*google.DefaultCredentials, error) {
/external/syzkaller/vendor/google.golang.org/api/option/
Doption.go28 Apply(*internal.DialSettings)
45 func (w withCredFile) Apply(o *internal.DialSettings) {
72 func (w withEndpoint) Apply(o *internal.DialSettings) {
84 func (w withScopes) Apply(o *internal.DialSettings) {
97 func (w withUA) Apply(o *internal.DialSettings) { o.UserAgent = string(w) }
149 func (w withGRPCConnectionPool) Apply(o *internal.DialSettings) {
162 func (w withAPIKey) Apply(o *internal.DialSettings) { o.APIKey = string(w) }