/external/curl/src/ |
D | tool_cfgable.c | 8 * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al. 29 void config_init(struct OperationConfig* config) in config_init() argument 31 memset(config, 0, sizeof(struct OperationConfig)); in config_init() 33 config->postfieldsize = -1; in config_init() 34 config->use_httpget = FALSE; in config_init() 35 config->create_dirs = FALSE; in config_init() 36 config->maxredirs = DEFAULT_MAXREDIRS; in config_init() 37 config->proto = CURLPROTO_ALL; /* FIXME: better to read from library */ in config_init() 38 config->proto_present = FALSE; in config_init() 39 config->proto_redir = CURLPROTO_ALL & /* All except FILE, SCP and SMB */ in config_init() [all …]
|
D | tool_operate.c | 8 * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al. 92 #define CURLseparator "--_curl_--" 106 " using the --cacert option.\n" 114 " the -k (or --insecure) option.\n" 180 switch(stat_buf->st_fab_rfm) { in VmsSpecialSize() 186 return stat_buf->st_size; in VmsSpecialSize() 192 struct OperationConfig *config) in operate_do() argument 203 CURL *curl = config->easy; in operate_do() 211 bool orig_noprogress = global->noprogress; in operate_do() 212 bool orig_isatty = global->isatty; in operate_do() [all …]
|
D | tool_getparam.c | 8 * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al. 70 {"*4", "dns-ipv4-addr", TRUE}, 71 {"*6", "dns-ipv6-addr", TRUE}, 72 {"*a", "random-file", TRUE}, 73 {"*b", "egd-file", TRUE}, 74 {"*B", "oauth2-bearer", TRUE}, 75 {"*c", "connect-timeout", TRUE}, 77 {"*D", "dns-interface", TRUE}, 78 {"*e", "disable-epsv", FALSE}, 80 /* 'epsv' made like this to make --no-epsv and --epsv to work [all …]
|
/external/webp/src/enc/ |
D | config_enc.c | 3 // Use of this source code is governed by a BSD-style license 8 // ----------------------------------------------------------------------------- 15 #include "../webp/config.h" 20 //------------------------------------------------------------------------------ 22 //------------------------------------------------------------------------------ 24 int WebPConfigInitInternal(WebPConfig* config, in WebPConfigInitInternal() argument 29 if (config == NULL) return 0; in WebPConfigInitInternal() 31 config->quality = quality; in WebPConfigInitInternal() 32 config->target_size = 0; in WebPConfigInitInternal() 33 config->target_PSNR = 0.; in WebPConfigInitInternal() [all …]
|
/external/python/cpython2/Modules/_ctypes/libffi/src/arm/ |
D | trampoline.S | 1 # GENERATED CODE - DO NOT EDIT 25 # ----------------------------------------------------------------------- 34 stmfd sp!, {r0-r3} 36 // Load the context argument from the config page. 37 // This places the first usable config value at _ffi_closure_trampoline_table-4080 38 …// This accounts for the above 4-byte stmfd instruction, plus 8 bytes constant when loading from p… 39 ldr r0, [pc, #-4092] 41 // Load the jump address from the config page. 42 ldr pc, [pc, #-4092] 47 stmfd sp!, {r0-r3} [all …]
|
/external/compiler-rt/test/asan/ |
D | lit.cfg | 1 # -*- Python -*- 8 def get_required_attr(config, attr_name): 9 attr_value = getattr(config, attr_name, None) 17 def push_dynamic_library_lookup_path(config, new_path): 26 (new_path, config.environment.get(dynamic_library_lookup_var, ''))) 27 config.environment[dynamic_library_lookup_var] = new_ld_library_path 29 # Setup config name. 30 config.name = 'AddressSanitizer' + config.name_suffix 32 # Platform-specific default ASAN_OPTIONS for lit tests. 34 if config.host_os == 'Darwin': [all …]
|
/external/compiler-rt/test/ |
D | lit.common.cfg | 1 # -*- Python -*- 4 # This file contains common rules for various compiler-rt testsuites. 16 config.test_format = lit.formats.ShTest(execute_external) 18 config.available_features.add('shell') 21 compiler_path = getattr(config, 'clang', None) 25 compiler_id = getattr(config, 'compiler_id', None) 28 config.cxx_mode_flags = ["--driver-mode=g++"] 30 config.cxx_mode_flags = [] 33 config.debug_info_flags = ["-gline-tables-only"] 35 config.debug_info_flags.append("-gcodeview") [all …]
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | config_file.c | 3 * Copyright (c) 2003-2012, Jouni Malinen <j@w1.fi> 19 #include "config.h" 33 if (len == buflen - 1 && buf[buflen - 1] != '\r' && in newline_terminated() 34 buf[len - 1] != '\n') in newline_terminated() 44 buf[sizeof(buf) - 1] = '\0'; in skip_line_end() 52 * wpa_config_get_line - Read the next configuration file line 62 * This function reads the next non-empty line from the configuration file and 63 * removes comments. The returned string is guaranteed to be null-terminated. 72 s[size - 1] = '\0'; in wpa_config_get_line() 75 * The line was truncated - skip rest of it to avoid in wpa_config_get_line() [all …]
|
/external/icu/icu4c/source/config/ |
D | test-icu-config.sh | 2 ## -*-sh-*- 8 # Just a script to test out icu-config. 11 set -x 12 which icu-config 13 icu-config 14 icu-config -? 15 icu-config --BAD ARGUMENT 16 icu-config --bindir 17 icu-config --cflags 18 icu-config --cxx [all …]
|
/external/llvm/test/ |
D | lit.cfg | 1 # -*- Python -*- 14 config.name = 'LLVM' 19 path = getattr(config, 'lit_tools_dir', None) 21 config.environment['PATH'], 25 config.environment['PATH'])) 26 config.environment['PATH'] = path 40 config.test_format = lit.formats.ShTest(execute_external) 44 config.suffixes = ['.ll', '.c', '.cxx', '.test', '.txt', '.s', '.mir'] 49 config.excludes = ['Inputs', 'CMakeLists.txt', 'README.txt', 'LICENSE.txt'] 52 config.test_source_root = os.path.dirname(__file__) [all …]
|
D | lit.site.cfg | 8 config.enable_ffi = "" 9 config.enable_timestamps = 0 10 config.go_executable = "" 11 config.gold_executable = "ld.gold" 12 config.include_go_tests = 0 13 config.ld64_executable = "ld" 14 config.have_ocamlopt = "" 15 config.have_ocaml_ounit = "" 16 config.host_triple = "x86_64-unknown-linux-gnu" 17 config.target_triple = "x86_64-unknown-linux-gnu" [all …]
|
/external/ImageMagick/config/ |
D | Makefile.am | 1 # Copyright 1999-2016 ImageMagick Studio LLC, a non-profit organization 17 # Where architecture-independent configuration files get installed 18 # (share/ImageMagick-version) 21 config/english.xml \ 22 config/francais.xml \ 23 config/locale.xml 25 # Where architecture-dependent configuration files get installed 26 # (share/arch/ImageMagick-version) 29 config/configure.xml 31 # Where architecture-dependent configuration files get installed [all …]
|
/external/libtextclassifier/tests/ |
D | tokenizer_test.cc | 8 * http://www.apache.org/licenses/LICENSE-2.0 40 TokenizationCodepointRange* config; in TEST() local 43 config = &configs.back(); in TEST() 44 config->set_start(0); in TEST() 45 config->set_end(10); in TEST() 46 config->set_role(TokenizationCodepointRange::TOKEN_SEPARATOR); in TEST() 49 config = &configs.back(); in TEST() 50 config->set_start(32); in TEST() 51 config->set_end(33); in TEST() 52 config->set_role(TokenizationCodepointRange::WHITESPACE_SEPARATOR); in TEST() [all …]
|
/external/clang/test/ |
D | lit.cfg | 1 # -*- Python -*- 15 config.name = 'Clang' 20 path = getattr(config, 'lit_tools_dir', None) 22 config.environment['PATH'], 26 config.environment['PATH'])) 27 config.environment['PATH'] = path 44 config.test_format = lit.formats.ShTest(execute_external) 47 config.suffixes = ['.c', '.cpp', '.m', '.mm', '.cu', '.ll', '.cl', '.s', '.S', '.modulemap', '.test… 52 config.excludes = ['Inputs', 'CMakeLists.txt', 'README.txt', 'LICENSE.txt'] 55 config.test_source_root = os.path.dirname(__file__) [all …]
|
/external/boringssl/src/ssl/test/runner/ |
D | runner.go | 52 …mallocTest = flag.Int64("malloc-test", -1, "If non-negative, run each test with each mallo… 53 …ol("malloc-test-debug", false, "If true, ask bssl_shim to abort rather than fail a malloc. This ca… 54 jsonOutput = flag.String("json-output", "", "The file to output JSON results to.") 57 …numWorkers = flag.Int("num-workers", runtime.NumCPU(), "The number of workers to run in pa… 58 …shimPath = flag.String("shim-path", "../../../build/ssl/test/bssl_shim", "The location o… 59 …resourceDir = flag.String("resource-dir", ".", "The directory in which to find certificate … 61 …transcriptDir = flag.String("transcript-dir", "", "The directory in which to write transcript… 62 …idleTimeout = flag.Duration("idle-timeout", 15*time.Second, "The number of seconds to wait … 64 …allowUnimplemented = flag.Bool("allow-unimplemented", false, "If true, report pass even if some te… 65 …looseErrors = flag.Bool("loose-errors", false, "If true, allow shims to report an untransla… [all …]
|
/external/deqp/modules/egl/ |
D | teglGLES2SharingThreadedTests.cpp | 1 /*------------------------------------------------------------------------- 3 * --------------------------------------- 11 * http://www.apache.org/licenses/LICENSE-2.0 22 *//*--------------------------------------------------------------------*/ 235 if (runtimeContext->context != EGL_NO_CONTEXT) in deinit() 236 egl.makeCurrent(runtimeContext->display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); in deinit() 238 egl.destroyContext(runtimeContext->display, runtimeContext->context); in deinit() 239 runtimeContext->context = EGL_NO_CONTEXT; in deinit() 241 egl.destroySurface(runtimeContext->display, eglSurface); in deinit() 293 m_display = thread.runtimeContext->display; in init() [all …]
|
/external/libchrome/base/trace_event/ |
D | trace_config_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 24 "\"record_mode\":\"record-until-full\"" 35 "\"disabled-by-default-cc\"," 36 "\"disabled-by-default-memory-infra\"]," 47 "\"record_mode\":\"record-continuously\"," 57 // Default trace config enables every category filter except the in CheckDefaultTraceConfigBehavior() 58 // disabled-by-default-* ones. in CheckDefaultTraceConfigBehavior() 60 EXPECT_TRUE(tc.IsCategoryGroupEnabled("not-excluded-category")); in CheckDefaultTraceConfigBehavior() 61 EXPECT_FALSE(tc.IsCategoryGroupEnabled("disabled-by-default-cc")); in CheckDefaultTraceConfigBehavior() 63 EXPECT_TRUE(tc.IsCategoryGroupEnabled("Category1,not-excluded-category")); in CheckDefaultTraceConfigBehavior() [all …]
|
/external/icu/icu4c/source/ |
D | Makefile.in | 5 # Copyright (C) 1998-2016, International Business Machines 9 ## Top-level Makefile.in for ICU 47 DOCZIP = icu-docs.zip 52 ALL_PKGCONFIG_FILES=$(ALL_PKGCONFIG_SUFFIX:%=$(top_builddir)/config/icu-%.pc) 55 …D_BUILT_FILES = $(top_builddir)/config/Makefile.inc $(top_builddir)/config/pkgdata.inc $(top_build… 58 LOCAL_BUILT_FILES = icudefs.mk config/icucross.mk config/icucross.inc 65 MANX_FILES = config/icu-config.$(SECTION) 73 .PHONY : all all-local all-recursive install install-local install-udata install-udata-files instal… 74 install-recursive clean clean-local clean-recursive distclean \ 75 distclean-local distclean-recursive doc dist dist-local dist-recursive \ [all …]
|
/external/syslinux/com32/gpllib/zzjson/ |
D | zzjson_create.c | 2 * ZZJSON - Copyright (C) 2008 by Ivo van Poorten 14 #define ERROR(x...) config->error(config->ehandle, ##x) 18 static ZZJSON *zzjson_create_templ(ZZJSON_CONFIG *config, ZZJSON_TYPE type) { in zzjson_create_templ() argument 19 ZZJSON *zzjson = config->calloc(1, sizeof(ZZJSON)); in zzjson_create_templ() 21 else zzjson->type = type; in zzjson_create_templ() 25 ZZJSON *zzjson_create_true(ZZJSON_CONFIG *config) { in zzjson_create_true() argument 26 return zzjson_create_templ(config, ZZJSON_TRUE); in zzjson_create_true() 29 ZZJSON *zzjson_create_false(ZZJSON_CONFIG *config) { in zzjson_create_false() argument 30 return zzjson_create_templ(config, ZZJSON_FALSE); in zzjson_create_false() 33 ZZJSON *zzjson_create_null(ZZJSON_CONFIG *config) { in zzjson_create_null() argument [all …]
|
/external/compiler-rt/test/profile/ |
D | lit.cfg | 1 # -*- Python -*- 5 def get_required_attr(config, attr_name): 6 attr_value = getattr(config, attr_name, None) 14 # Setup config name. 15 config.name = 'Profile-' + config.target_arch 18 config.test_source_root = os.path.dirname(__file__) 21 if hasattr(config, 'profile_lit_binary_dir') and \ 22 config.profile_lit_binary_dir is not None: 23 config.test_exec_root = os.path.join(config.profile_lit_binary_dir, config.name) 26 # magic to re-execute from the build tree. [all …]
|
/external/deqp/scripts/ |
D | run_internal_tests.py | 1 # -*- coding: utf-8 -*- 3 #------------------------------------------------------------------------- 5 # -------------------------------------- 13 # http://www.apache.org/licenses/LICENSE-2.0 21 #------------------------------------------------------------------------- 31 exit(-1) 45 class Config: class 46 … testBinaryName, executor = 'executor', execserver = 'execserver', junitTool = 'testlog-to-junit'): 57 def initBuildDir (config): argument 58 if os.path.exists(config.buildPath): [all …]
|
/external/boringssl/src/ssl/test/ |
D | bssl_shim.cc | 128 static bool SetTestConfig(SSL *ssl, const TestConfig *config) { in SetTestConfig() argument 129 return SSL_set_ex_data(ssl, g_config_index, (void *)config) == 1; in SetTestConfig() 157 out_x509->reset(PEM_read_bio_X509(bio.get(), nullptr, nullptr, nullptr)); in LoadCertificate() 162 out_chain->reset(sk_X509_new_null()); in LoadCertificate() 175 if (!sk_X509_push(out_chain->get(), cert.get())) { in LoadCertificate() 202 *out = c - '0'; in FromHexDigit() 206 *out = c - 'a' + 10; in FromHexDigit() 210 *out = c - 'A' + 10; in FromHexDigit() 231 out->assign(reinterpret_cast<const char *>(buf.get()), in.size() / 2); in HexDecode() 242 ret.push_back(in.substr(start, i - start)); in SplitParts() [all …]
|
/external/deqp/framework/egl/ |
D | egluConfigInfo.cpp | 1 /*------------------------------------------------------------------------- 3 * ---------------------------------------- 11 * http://www.apache.org/licenses/LICENSE-2.0 21 * \brief EGL config dst-> 22 *//*--------------------------------------------------------------------*/ 87 void queryCoreConfigInfo (const Library& egl, EGLDisplay display, EGLConfig config, ConfigInfo* dst) in queryCoreConfigInfo() argument 89 egl.getConfigAttrib(display, config, EGL_BUFFER_SIZE, &dst->bufferSize); in queryCoreConfigInfo() 90 egl.getConfigAttrib(display, config, EGL_RED_SIZE, &dst->redSize); in queryCoreConfigInfo() 91 egl.getConfigAttrib(display, config, EGL_GREEN_SIZE, &dst->greenSize); in queryCoreConfigInfo() 92 egl.getConfigAttrib(display, config, EGL_BLUE_SIZE, &dst->blueSize); in queryCoreConfigInfo() [all …]
|
/external/sonivox/jet_tools/JetCreator/ |
D | JetFile.py | 14 http://www.apache.org/licenses/LICENSE-2.0 61 # config file defines 252 self.config = config = ConfigParser.ConfigParser() 258 config.read(self.config_file) 264 config = self.config 265 for section in config.sections(): 267 for option, value in config.items(section): 273 config = self.config 274 if config.has_option(OUTPUT_SECTION, OUTPUT_FILENAME): 275 config.filename = config.get(OUTPUT_SECTION, OUTPUT_FILENAME) [all …]
|
/external/compiler-rt/test/ubsan/ |
D | lit.common.cfg | 1 # -*- Python -*- 5 def get_required_attr(config, attr_name): 6 attr_value = getattr(config, attr_name, None) 15 config.test_source_root = os.path.dirname(__file__) 19 ubsan_lit_test_mode = get_required_attr(config, 'ubsan_lit_test_mode') 21 config.name = 'UBSan-Standalone-' + config.target_arch 22 config.available_features.add("ubsan-standalone") 25 config.name = 'UBSan-ASan-' + config.target_arch 26 config.available_features.add("ubsan-asan") 27 clang_ubsan_cflags = ["-fsanitize=address"] [all …]
|