/external/compiler-rt/lib/dfsan/ |
D | done_abilist.txt | 16 fun:dfsan_get_label=custom 28 fun:dfsan_set_write_callback=custom 150 fun:calloc=custom 151 fun:clock_gettime=custom 152 fun:dlopen=custom 153 fun:fgets=custom 154 fun:fstat=custom 155 fun:getcwd=custom 156 fun:get_current_dir_name=custom 157 fun:gethostname=custom [all …]
|
/external/libbrillo/brillo/ |
D | backoff_entry_unittest.cc | 263 TestBackoffEntry custom(&base_policy); in TEST() local 265 custom.SetCustomReleaseTime(custom_horizon); in TEST() 266 custom.InformOfRequest(false); in TEST() 267 custom.InformOfRequest(true); in TEST() 268 custom.set_now(TimeTicks() + TimeDelta::FromDays(2)); in TEST() 269 custom.InformOfRequest(false); in TEST() 270 custom.InformOfRequest(true); in TEST() 271 EXPECT_EQ(custom_horizon, custom.GetReleaseTime()); in TEST() 275 custom.set_now(TimeTicks() + TimeDelta::FromDays(3)); in TEST() 276 custom.InformOfRequest(false); in TEST() [all …]
|
/external/skia/src/ports/ |
D | SkFontMgr_android.cpp | 263 SkFontMgr_Android(const SkFontMgr_Android_CustomFonts* custom) { in SkFontMgr_Android() argument 265 if (custom && SkFontMgr_Android_CustomFonts::kPreferSystem != custom->fSystemFontUse) { in SkFontMgr_Android() 266 SkString base(custom->fBasePath); in SkFontMgr_Android() 268 families, base, custom->fFontsXml, custom->fFallbackFontsXml); in SkFontMgr_Android() 270 if (!custom || in SkFontMgr_Android() 271 (custom && SkFontMgr_Android_CustomFonts::kOnlyCustom != custom->fSystemFontUse)) in SkFontMgr_Android() 275 if (custom && SkFontMgr_Android_CustomFonts::kPreferSystem == custom->fSystemFontUse) { in SkFontMgr_Android() 276 SkString base(custom->fBasePath); in SkFontMgr_Android() 278 families, base, custom->fFontsXml, custom->fFallbackFontsXml); in SkFontMgr_Android() 280 this->buildNameToFamilyMap(families, custom ? custom->fIsolated : false); in SkFontMgr_Android() [all …]
|
/external/vixl/doc/aarch64/topics/ |
D | extending-the-disassembler.md | 35 The [/examples/custom-disassembler.h](/examples/custom-disassembler.h) and 36 [/examples/custom-disassembler.cc](/examples/custom-disassembler.cc) example 41 custom disasm -0x8: add x10, ip0, ip1 // add/sub to x10 44 custom disasm -0x4: cbz x10, #+0x28 (addr 0x24 ; label: somewhere) 47 custom disasm 0x0: add x11, ip0, ip1 50 custom disasm 0x4: add w5, w6, w30 53 custom disasm 0x8: tbz w10, #2, #-0x10 (addr -0x8)
|
/external/curl/docs/ |
D | FEATURES | 14 - custom maximum transfer rate 20 - custom maximum download time 21 - custom least download speed acceptable 22 - custom output result after completion 53 - custom HTTP request 56 - custom headers (replace/remove internally generated headers) 57 - custom user-agent string 58 - custom referrer string 91 - custom ftp commands (before and/or after the transfer) 108 - with custom commands sent before/after the transfer [all …]
|
/external/wpa_supplicant_8/src/drivers/ |
D | driver_wext.c | 234 wpa_driver_wext_event_wireless_custom(void *ctx, char *custom) in wpa_driver_wext_event_wireless_custom() argument 239 custom); in wpa_driver_wext_event_wireless_custom() 243 if (os_strncmp(custom, "MLME-MICHAELMICFAILURE.indication", 33) == 0) { in wpa_driver_wext_event_wireless_custom() 245 os_strstr(custom, " unicast ") != NULL; in wpa_driver_wext_event_wireless_custom() 248 } else if (os_strncmp(custom, "ASSOCINFO(ReqIEs=", 17) == 0) { in wpa_driver_wext_event_wireless_custom() 253 spos = custom + 17; in wpa_driver_wext_event_wireless_custom() 294 } else if (os_strncmp(custom, "STKSTART.request=", 17) == 0) { in wpa_driver_wext_event_wireless_custom() 295 if (hwaddr_aton(custom + 17, data.stkstart.peer)) { in wpa_driver_wext_event_wireless_custom() 297 "STKSTART.request '%s'", custom + 17); in wpa_driver_wext_event_wireless_custom() 428 char *pos, *end, *custom, *buf; in wpa_driver_wext_event_wireless() local [all …]
|
D | driver_atheros.c | 1186 char *custom, char *end) in atheros_wireless_event_wireless_custom() argument 1189 wpa_printf(MSG_DEBUG, "Custom wireless event: '%s'", custom); in atheros_wireless_event_wireless_custom() 1191 if (os_strncmp(custom, "MLME-MICHAELMICFAILURE.indication", 33) == 0) { in atheros_wireless_event_wireless_custom() 1194 pos = os_strstr(custom, "addr="); in atheros_wireless_event_wireless_custom() 1214 } else if (strncmp(custom, "STA-TRAFFIC-STAT", 16) == 0) { in atheros_wireless_event_wireless_custom() 1217 key = custom; in atheros_wireless_event_wireless_custom() 1238 } else if (os_strncmp(custom, "PUSH-BUTTON.indication", 22) == 0) { in atheros_wireless_event_wireless_custom() 1244 } else if (os_strncmp(custom, "Manage.prob_req ", 16) == 0) { in atheros_wireless_event_wireless_custom() 1251 int len = atoi(custom + 16); in atheros_wireless_event_wireless_custom() 1252 if (len < 0 || MGMT_FRAM_TAG_SIZE + len > end - custom) { in atheros_wireless_event_wireless_custom() [all …]
|
/external/llvm/test/Instrumentation/DataFlowSanitizer/Inputs/ |
D | abilist.txt | 7 fun:custom*=uninstrumented 8 fun:custom*=custom
|
/external/curl/lib/ |
D | imap.c | 324 if((!imap->custom && !imap_matchresp(line, len, "LIST")) || in imap_endofresp() 325 (imap->custom && !imap_matchresp(line, len, imap->custom) && in imap_endofresp() 326 (strcmp(imap->custom, "STORE") || in imap_endofresp() 328 strcmp(imap->custom, "SELECT") && in imap_endofresp() 329 strcmp(imap->custom, "EXAMINE") && in imap_endofresp() 330 strcmp(imap->custom, "SEARCH") && in imap_endofresp() 331 strcmp(imap->custom, "EXPUNGE") && in imap_endofresp() 332 strcmp(imap->custom, "LSUB") && in imap_endofresp() 333 strcmp(imap->custom, "UID") && in imap_endofresp() 334 strcmp(imap->custom, "NOOP"))) in imap_endofresp() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/ec/ |
D | CustomNamedCurves.java | 22 import org.bouncycastle.math.ec.custom.sec.SecP192K1Curve; 23 import org.bouncycastle.math.ec.custom.sec.SecP192R1Curve; 24 import org.bouncycastle.math.ec.custom.sec.SecP224K1Curve; 25 import org.bouncycastle.math.ec.custom.sec.SecP224R1Curve; 26 import org.bouncycastle.math.ec.custom.sec.SecP256K1Curve; 27 import org.bouncycastle.math.ec.custom.sec.SecP256R1Curve; 28 import org.bouncycastle.math.ec.custom.sec.SecP384R1Curve; 29 import org.bouncycastle.math.ec.custom.sec.SecP521R1Curve;
|
/external/curl/tests/data/ |
D | test13 | 5 HTTP custom request 15 blabla custom request result 25 HTTP custom request 'DELETE'
|
D | test540 | 68 http://test.remote.example.com/path/540 http://%HOSTIP:%HTTPPORT silly:person custom.set.host.name 79 Host: custom.set.host.name 84 Host: custom.set.host.name 90 Host: custom.set.host.name
|
/external/owasp/sanitizer/src/tests/org/owasp/html/ |
D | CssSchemaTest.java | 80 CssSchema custom = CssSchema.union( in testCustom() local 86 assertSame(key, custom.forKey(key), CssSchema.DEFAULT.forKey(key)); in testCustom() 89 CssSchema.Property cssFloat = custom.forKey("float"); in testCustom()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_flags.inc | 79 "If set, registers the tool's custom SIGSEGV/SIGBUS handler.") 81 "If set, registers the tool's custom SIGABRT handler.") 83 "If set, registers the tool's custom SIGILL handler.") 85 "If set, registers the tool's custom SIGFPE handler.") 182 "If set, uses custom wrappers for strstr and strcasestr functions " 185 "If set, uses custom wrappers for strspn and strcspn function " 188 "If set, uses custom wrappers for strpbrk function " 191 "If set, uses custom wrappers for strlen and strnlen functions " 194 "If set, uses custom wrappers for strchr, strchrnul, and strrchr " 197 "If set, uses custom wrappers for memcmp function " [all …]
|
/external/fmtlib/doc/ |
D | api.rst | 64 A custom ``format_arg`` function may be implemented and used to format any 67 shows how to implement custom formatting for a user-defined structure. 87 This section shows how to define a custom format function for a user-defined 118 custom argument formatter class:: 120 // A custom argument formatter that formats negative integers as unsigned 139 // Pass custom argument formatter as a template arg to BasicFormatter. 191 provides direct access to it. It is possible to create custom writers that 258 The fmt library supports custom dynamic memory allocators. 259 A custom allocator class can be specified as a template argument to 264 It is also possible to write a formatting function that uses a custom
|
/external/junit-params/src/main/java/junitparams/custom/combined/ |
D | CombinedParameters.java | 1 package junitparams.custom.combined; 6 import junitparams.custom.CustomParameters;
|
D | CombinedParametersProvider.java | 1 package junitparams.custom.combined; 6 import junitparams.custom.ParametersProvider;
|
/external/compiler-rt/test/BlocksRuntime/ |
D | nullblockisa.c | 26 } *custom = (struct _custom *)(void *)(b); variable 28 if (custom->innerp->isa != (void *)NULL) {
|
/external/deqp/data/gles2/shaders/ |
D | loops.test | 1 group custom "Custom loop tests" 26 end # custom
|
/external/chromium-trace/catapult/common/eslint/ |
D | README.md | 1 This directory contains the Catapult eslint config, custom Catapult eslint rules, 4 Some of our custom rules are modified versions of those included with eslint, as
|
/external/deqp/data/gles3/shaders/ |
D | loops.test | 1 group custom "Custom loop tests" 29 end # custom
|
/external/junit-params/src/main/java/junitparams/internal/annotation/ |
D | CustomParametersDescriptor.java | 5 import junitparams.custom.CustomParameters; 6 import junitparams.custom.ParametersProvider;
|
/external/valgrind/drd/tests/ |
D | custom_alloc_fiw.stderr.exp | 2 --free-is-write=yes is incompatible with custom memory allocator client requests 6 --free-is-write=yes is incompatible with custom memory allocator client requests
|
/external/junit-params/src/main/java/junitparams/ |
D | FileParameters.java | 8 import junitparams.custom.CustomParameters; 9 import junitparams.custom.FileParametersProvider;
|
/external/llvm/docs/CommandGuide/ |
D | bugpoint.rst | 127 **--run-{int,jit,llc,custom}** 132 custom command (see **--exec-command**) respectively. 134 **--safe-{llc,custom}** 141 static native code compiler, or a custom command, (see **--exec-command**) 147 This option defines the command to use with the **--run-custom** and 148 **--safe-custom** options to execute the bitcode testcase. This can 153 This option defines the command to use with the **--compile-custom** 176 **--safe-{int,jit,llc,custom}**
|