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

1 2 3 4 5 6 7 8 9

  /external/v8/tools/clusterfuzz/
v8_fuzz_config.py 8 # List of <probability>, <1st config name>, <2nd config name>, <2nd d8>.
25 class Config(object):
41 '--first-config=' + first_config,
42 '--second-config=' + second_config,
  /external/Reactive-Extensions/RxCpp/Ix/CPP/unittest/
makefile 3 !ifndef Config
4 Config=Debug
7 O=..\..\bin\$(Config)
9 !message Building ===== $(Config) =====
14 !if "$(Config)"=="Debug"
  /external/autotest/server/cros/faft/config/
config.py 9 from autotest_lib.server.cros.faft.config import DEFAULTS
12 class Config(object):
19 the config package and the overrides come from module files named
40 the requested config attribute.
55 logging.debug("No config overrides found for platform: %s.",
83 str_list.append("--[ Raw FAFT Config Dump ]--------------------------")
87 str_list.append("--[ Resolved FAFT Config Values ]-------------------")
  /external/swiftshader/src/OpenGL/libEGL/
Config.cpp 15 // Config.cpp: Implements the egl::Config class, describing the format, type
19 #include "Config.h"
39 Config::Config(sw::Format displayFormat, EGLint minInterval, EGLint maxInterval, sw::Format renderTargetFormat, sw::Format depthStencilFormat, EGLint multiSample)
191 // Although we could support any format as an Android HWComposer compatible config by converting when necessary,
197 EGLConfig Config::getHandle() const
202 // This ordering determines the config ID
203 bool CompareConfig::operator()(const Config &x, const Config &y) cons
    [all...]
  /external/syzkaller/syz-ci/
syz-ci.go 22 // this allows us to handle e.g. changes in manager config format.
30 // (e.g. bad config file, or can't create necessary dirs)
51 // Tag files uniquely identify the build (git hash, compiler identity, kernel config, etc).
62 "github.com/google/syzkaller/pkg/config"
68 var flagConfig = flag.String("config", "", "config file")
70 type Config struct {
111 log.Fatalf("failed to load config: %v", err)
167 func loadConfig(filename string) (*Config, error) {
168 cfg := &Config{
    [all...]
  /external/testng/src/test/java/test/dependent/functionality1/
Config.java 5 public class Config {
  /build/blueprint/bootstrap/minibp/
main.go 32 type Config struct {
36 func (c Config) GeneratingPrimaryBuilder() bool {
40 func (c Config) RemoveAbandonedFilesUnder() (under, exempt []string) {
56 config := Config{
60 bootstrap.Main(ctx, config)
  /external/autotest/client/cros/faft/
config.py 6 class Config(object):
7 """Client side services config. Accessible by server side code as well."""
  /external/autotest/site_utils/lxc/
unittest_setup.py 52 class Config(object):
85 config = Config() variable
90 config.parse_options()
94 log_level = logging.DEBUG if config.verbose else logging.INFO
  /external/syzkaller/syz-hub/
hub.go 12 "github.com/google/syzkaller/pkg/config"
19 flagConfig = flag.String("config", "", "config file")
22 type Config struct {
40 cfg := new(Config)
41 if err := config.LoadFile(*flagConfig, cfg); err != nil {
  /external/syzkaller/tools/syz-bisect/
bisect.go 16 "github.com/google/syzkaller/pkg/config"
21 flagConfig = flag.String("config", "", "bisect config file")
26 type Config struct {
41 mycfg := new(Config)
42 if err := config.LoadFile(*flagConfig, mycfg); err != nil {
59 cfg := &bisect.Config{
78 loadFile("kernel.config", &cfg.Kernel.Config)
  /external/webrtc/webrtc/modules/audio_coding/codecs/pcm16b/
audio_encoder_pcm16b.h 23 struct Config : public AudioEncoderPcm::Config {
25 Config() : AudioEncoderPcm::Config(107), sample_rate_hz(8000) {}
31 explicit AudioEncoderPcm16B(const Config& config)
32 : AudioEncoderPcm(config, config.sample_rate_hz) {}
  /external/parameter-framework/upstream/test/functional-tests/include/
Config.hpp 40 struct Config
42 Config() = default;
45 * { .instances = "fuu" } <=> { &Config::instances, "fuu" }
48 Config(M(Config::*member), T &&value)
  /external/syzkaller/vendor/golang.org/x/oauth2/jwt/
jwt.go 32 // Config is the configuration for using JWT to fetch tokens,
34 type Config struct {
68 func (c *Config) TokenSource(ctx context.Context) oauth2.TokenSource {
77 func (c *Config) Client(ctx context.Context) *http.Client {
85 conf *Config
  /external/webrtc/webrtc/
audio_state.h 30 struct Config {
42 const AudioState::Config& config);
  /build/soong/dexpreopt/dexpreopt_gen/
dexpreopt_gen.go 41 config android.Config
45 func (x *pathContext) Config() android.Config { return x.config }
83 fmt.Fprintf(os.Stderr, "error loading global config %q: %s\n", *globalConfigPath, err)
89 fmt.Fprintf(os.Stderr, "error loading module config %q: %s\n", *moduleConfigPath, err)
  /cts/tests/tests/drm/src/android/drm/cts/
Config.java 21 public interface Config {
  /external/deqp/modules/egl/
teglRenderCase.hpp 44 struct Config
46 eglw::EGLConfig config; member in struct:deqp::egl::RenderCase::Config
50 Config (eglw::EGLConfig config_, eglw::EGLint surfaceTypeBit_, eglw::EGLint apiBits_)
51 : config (config_)
58 virtual void executeForConfig (eglw::EGLDisplay display, eglw::EGLConfig config);
59 virtual void executeForSurface (eglw::EGLDisplay display, eglw::EGLSurface surface, const Config& config) = DE_NULL;
71 virtual void executeForSurface (eglw::EGLDisplay display, eglw::EGLSurface surface, const Config& config);
72 virtual void executeForContext (eglw::EGLDisplay display, eglw::EGLContext context, eglw::EGLSurface surface, const Config& config) = DE_NULL
    [all...]
  /external/deqp/scripts/
run_internal_tests.py 45 class Config:
57 def initBuildDir (config):
58 if os.path.exists(config.buildPath):
59 shutil.rmtree(config.buildPath)
61 os.makedirs(config.buildPath)
62 execute(["cmake", os.path.realpath(config.srcPath)] + config.genParams, workDir = config.buildPath)
64 def prepareBuildDir (config):
66 if os.path.exists(config.buildPath)
    [all...]
  /external/perfetto/include/perfetto/trace_processor/
basic_types.h 26 struct Config {
  /external/syzkaller/pkg/mgrconfig/
mgrconfig.go 13 "github.com/google/syzkaller/pkg/config"
20 type Config struct {
83 // VM-type-specific config.
97 func LoadData(data []byte) (*Config, error) {
108 func LoadFile(filename string) (*Config, error) {
119 func LoadPartialData(data []byte) (*Config, error) {
121 if err := config.LoadData(data, cfg); err != nil {
127 func LoadPartialFile(filename string) (*Config, error) {
129 if err := config.LoadFile(filename, cfg); err != nil {
135 func defaultValues() *Config {
    [all...]
  /external/syzkaller/vm/kvm/
kvm.go 18 "github.com/google/syzkaller/pkg/config"
31 type Config struct {
42 cfg *Config
46 cfg *Config
60 cfg := &Config{
64 if err := config.LoadData(env.Config, cfg); err != nil {
65 return nil, fmt.Errorf("failed to parse kvm vm config: %v", err)
68 return nil, fmt.Errorf("invalid config param count: %v, want [1, 1000]", cfg.Count)
83 return nil, fmt.Errorf("invalid config param cpu: %v, want [1-1024]", cfg.CPU
    [all...]
  /external/syzkaller/vm/odroid/
odroid.go 8 // #cgo pkg-config: libusb-1.0
25 "github.com/google/syzkaller/pkg/config"
35 type Config struct {
46 cfg *Config
50 cfg *Config
58 cfg := &Config{}
59 if err := config.LoadData(env.Config, cfg); err != nil {
60 return nil, fmt.Errorf("failed to parse odroid vm config: %v", err)
63 return nil, fmt.Errorf("config param host_addr is empty"
    [all...]
  /external/v4l2_codec2/vda/
video_decode_accelerator.cc 12 VideoDecodeAccelerator::Config::Config() = default;
13 VideoDecodeAccelerator::Config::Config(const Config& config) = default; member in class:media::VideoDecodeAccelerator::Config
15 VideoDecodeAccelerator::Config::Config(VideoCodecProfile video_codec_profile)
18 VideoDecodeAccelerator::Config::~Config() = default
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
audio_encoder_ilbc.h 24 struct Config {
33 explicit AudioEncoderIlbc(const Config& config);
53 const Config config_;

Completed in 2159 milliseconds

1 2 3 4 5 6 7 8 9