Home
last modified time | relevance | path

Searched defs:Config (Results 1 – 25 of 99) sorted by relevance

1234

/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/LTO/
DConfig.h41 struct Config { struct
42 enum VisScheme {
48 std::string CPU;
49 TargetOptions Options;
50 std::vector<std::string> MAttrs;
51 std::vector<std::string> MllvmArgs;
52 std::vector<std::string> PassPlugins;
54 std::function<void(legacy::PassManager &)> PreCodeGenPassesHook;
55 std::optional<Reloc::Model> RelocModel = Reloc::PIC_;
56 std::optional<CodeModel::Model> CodeModel;
[all …]
/prebuilts/clang/host/linux-x86/clang-r547379/include/llvm/LTO/
DConfig.h41 struct Config { struct
42 enum VisScheme {
48 std::string CPU;
49 TargetOptions Options;
50 std::vector<std::string> MAttrs;
51 std::vector<std::string> MllvmArgs;
52 std::vector<std::string> PassPlugins;
54 std::function<void(legacy::PassManager &)> PreCodeGenPassesHook;
55 std::optional<Reloc::Model> RelocModel = Reloc::PIC_;
56 std::optional<CodeModel::Model> CodeModel;
[all …]
/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/LTO/
DConfig.h41 struct Config { struct
42 enum VisScheme {
48 std::string CPU;
49 TargetOptions Options;
50 std::vector<std::string> MAttrs;
51 std::vector<std::string> MllvmArgs;
52 std::vector<std::string> PassPlugins;
54 std::function<void(legacy::PassManager &)> PreCodeGenPassesHook;
55 std::optional<Reloc::Model> RelocModel = Reloc::PIC_;
56 std::optional<CodeModel::Model> CodeModel;
[all …]
/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/LTO/
DConfig.h41 struct Config { struct
42 enum VisScheme {
48 std::string CPU;
49 TargetOptions Options;
50 std::vector<std::string> MAttrs;
51 std::vector<std::string> MllvmArgs;
52 std::vector<std::string> PassPlugins;
54 std::function<void(legacy::PassManager &)> PreCodeGenPassesHook;
55 std::optional<Reloc::Model> RelocModel = Reloc::PIC_;
56 std::optional<CodeModel::Model> CodeModel;
[all …]
/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/telemetry/internal/config/
Dconfig.go19 type Config struct { struct
20 *telemetry.UploadConfig
21 program map[string]bool
22 goos map[string]bool
23 goarch map[string]bool
24 goversion map[string]bool
25 pgversion map[pgkey]bool
26 pgcounter map[pgkey]bool
27 pgcounterprefix map[pgkey]bool
28 pgstack map[pgkey]bool
[all …]
/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
Dconfig.go20 type Config struct { struct
21 arch string // "amd64", etc.
22 PtrSize int64 // 4 or 8; copy of cmd/internal/sys.Arch.PtrSize
23 RegSize int64 // 4 or 8; copy of cmd/internal/sys.Arch.RegSize
24 Types Types
25 lowerBlock blockRewriter // block lowering function, first round
26 lowerValue valueRewriter // value lowering function, first round
27 …block lowering function that needs to be run after the first round; only used on some architectures
28 …value lowering function that needs to be run after the first round; only used on some architectures
29 …Load valueRewriter // function for splitting merged load ops; only used on some architectures
[all …]
/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/
Dunitchecker.go60 type Config struct { struct
61 ID string // e.g. "fmt [fmt.test]"
62 Compiler string // gc or gccgo, provided to MakeImporter
63 Dir string // (unused)
64 ImportPath string // package path
65 GoVersion string // minimum required Go version, such as "go1.21.0"
66 GoFiles []string
67 NonGoFiles []string
68 IgnoredFiles []string
69 ImportMap map[string]string // maps import path to package path
[all …]
/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/telemetry/
Dstart.go24 type Config struct { struct
30 ReportCrashes bool
42 Upload bool
48 TelemetryDir string
57 UploadStartTime time.Time
61 UploadURL string
88 func Start(config Config) *StartResult {
108 func MaybeChild(config Config) {
144 func parent(config Config) *StartResult {
251 func child(config Config) {
/prebuilts/go/linux-x86/src/crypto/tls/
Dcommon.go531 type Config struct { struct
536 Rand io.Reader
540 Time func() time.Time
553 Certificates []Certificate
562 NameToCertificate map[string]*Certificate
573 GetCertificate func(*ClientHelloInfo) (*Certificate, error)
590 GetClientCertificate func(*CertificateRequestInfo) (*Certificate, error)
605 GetConfigForClient func(*ClientHelloInfo) (*Config, error)
626 VerifyPeerCertificate func(rawCerts [][]byte, verifiedChains [][]*x509.Certificate) error
637 VerifyConnection func(ConnectionState) error
[all …]
Dtls.go35 func Server(conn net.Conn, config *Config) *Conn {
48 func Client(conn net.Conn, config *Config) *Conn {
78 func NewListener(inner net.Listener, config *Config) net.Listener {
89 func Listen(network, laddr string, config *Config) (net.Listener, error) {
118 func DialWithDialer(dialer *net.Dialer, network, addr string, config *Config) (*Conn, error) {
122 func dial(ctx context.Context, netDialer *net.Dialer, network, addr string, config *Config) (*Conn,…
172 func Dial(network, addr string, config *Config) (*Conn, error) {
188 Config *Config member
Dkey_agreement.go27 …generateServerKeyExchange(*Config, *Certificate, *clientHelloMsg, *serverHelloMsg) (*serverKeyExch…
28 processClientKeyExchange(*Config, *Certificate, *clientKeyExchangeMsg, uint16) ([]byte, error)
34 …processServerKeyExchange(*Config, *clientHelloMsg, *serverHelloMsg, *x509.Certificate, *serverKeyE…
35 …generateClientKeyExchange(*Config, *clientHelloMsg, *x509.Certificate) ([]byte, *clientKeyExchange…
/prebuilts/go/linux-x86/src/testing/quick/
Dquick.go177 type Config struct { struct
180 MaxCount int
185 MaxCountScale float64
188 Rand *rand.Rand
193 Values func([]reflect.Value, *rand.Rand)
199 func (c *Config) getRand() *rand.Rand {
208 func (c *Config) getMaxCount() (maxCount int) {
263 func Check(f any, config *Config) error {
302 func CheckEqual(f, g any, config *Config) error {
343 func arbitraryValues(args []reflect.Value, f reflect.Type, config *Config, rand *rand.Rand) (err er…
/prebuilts/go/linux-x86/src/cmd/compile/internal/types2/
Dapi.go108 type Config struct { struct
111 Context *Context
118 GoVersion string
122 IgnoreFuncBodies bool
131 FakeImportC bool
134 IgnoreBranchErrors bool
143 go115UsesCgo bool
146 Trace bool
155 Error func(err error)
163 Importer Importer
[all …]
/prebuilts/go/linux-x86/src/go/types/
Dapi.go117 type Config struct { struct
120 Context *Context
127 GoVersion string
131 IgnoreFuncBodies bool
140 FakeImportC bool
149 go115UsesCgo bool
152 _Trace bool
161 Error func(err error)
169 Importer Importer
173 Sizes Sizes
[all …]
Dcheck_test.go136 func testFiles(t *testing.T, filenames []string, srcs [][]byte, manual bool, opts ...func(*Config))…
145 …estFilesImpl(t *testing.T, filenames []string, srcs [][]byte, manual bool, opts ...func(*Config)) {
343 func boolFieldAddr(conf *Config, name string) *bool {
350 func stringFieldAddr(conf *Config, name string) *string {
/prebuilts/go/linux-x86/test/fixedbugs/issue59709.dir/
Daconfig.go7 type Config struct { struct
8 name string
9 blah int
/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/DebugInfo/Symbolize/
DDIPrinter.h74 PrinterConfig Config; variable
89 PlainPrinterBase(raw_ostream &OS, ErrorHandler EH, PrinterConfig &Config) in PlainPrinterBase()
114 LLVMPrinter(raw_ostream &OS, ErrorHandler EH, PrinterConfig &Config) in LLVMPrinter()
123 GNUPrinter(raw_ostream &OS, ErrorHandler EH, PrinterConfig &Config) in GNUPrinter()
131 PrinterConfig Config; variable
141 JSONPrinter(raw_ostream &OS, PrinterConfig &Config) in JSONPrinter()
/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/DebugInfo/Symbolize/
DDIPrinter.h74 PrinterConfig Config; variable
89 PlainPrinterBase(raw_ostream &OS, ErrorHandler EH, PrinterConfig &Config) in PlainPrinterBase()
114 LLVMPrinter(raw_ostream &OS, ErrorHandler EH, PrinterConfig &Config) in LLVMPrinter()
123 GNUPrinter(raw_ostream &OS, ErrorHandler EH, PrinterConfig &Config) in GNUPrinter()
131 PrinterConfig Config; variable
141 JSONPrinter(raw_ostream &OS, PrinterConfig &Config) in JSONPrinter()
/prebuilts/clang/host/linux-x86/clang-r547379/include/llvm/DebugInfo/Symbolize/
DDIPrinter.h74 PrinterConfig Config; variable
89 PlainPrinterBase(raw_ostream &OS, ErrorHandler EH, PrinterConfig &Config) in PlainPrinterBase()
114 LLVMPrinter(raw_ostream &OS, ErrorHandler EH, PrinterConfig &Config) in LLVMPrinter()
123 GNUPrinter(raw_ostream &OS, ErrorHandler EH, PrinterConfig &Config) in GNUPrinter()
131 PrinterConfig Config; variable
141 JSONPrinter(raw_ostream &OS, PrinterConfig &Config) in JSONPrinter()
/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/DebugInfo/Symbolize/
DDIPrinter.h74 PrinterConfig Config; variable
89 PlainPrinterBase(raw_ostream &OS, ErrorHandler EH, PrinterConfig &Config) in PlainPrinterBase()
114 LLVMPrinter(raw_ostream &OS, ErrorHandler EH, PrinterConfig &Config) in LLVMPrinter()
123 GNUPrinter(raw_ostream &OS, ErrorHandler EH, PrinterConfig &Config) in GNUPrinter()
131 PrinterConfig Config; variable
141 JSONPrinter(raw_ostream &OS, PrinterConfig &Config) in JSONPrinter()
/prebuilts/go/linux-x86/test/fixedbugs/
Dissue56990.go43 type Config struct { struct
44 TypeMeta
45 ObjectMeta
47 Spec ConfigSpec
77 func Bar(config *Config) *ConfigSpec {
85 func Foo(diskSpec DiskSpec, config *Config) {
/prebuilts/go/linux-x86/src/vendor/golang.org/x/net/http/httpproxy/
Dproxy.go27 type Config struct { struct
31 HTTPProxy string
36 HTTPSProxy string
51 NoProxy string
59 CGI bool
65 Config anonMember
117 func (cfg *Config) ProxyFunc() func(reqURL *url.URL) (*url.URL, error) {
/prebuilts/vndk/v30/arm64/include/frameworks/native/libs/gui/include/gui/
DDisplayEventReceiver.h76 struct Config { struct
77 int32_t configId;
78 nsecs_t vsyncPeriod;
/prebuilts/vndk/v30/x86/include/frameworks/native/libs/gui/include/gui/
DDisplayEventReceiver.h76 struct Config { struct
77 int32_t configId;
78 nsecs_t vsyncPeriod;
/prebuilts/vndk/v30/arm/include/frameworks/native/libs/gui/include/gui/
DDisplayEventReceiver.h76 struct Config { struct
77 int32_t configId;
78 nsecs_t vsyncPeriod;

1234