| /external/cronet/base/message_loop/ |
| D | message_pump_win.h | 2 // Use of this source code is governed by a BSD-style license that can be 24 #include "third_party/abseil-cpp/absl/types/optional.h" 81 // #addr-of 87 //----------------------------------------------------------------------------- 94 // events to be serviced, this pump goes into a wait state. In most cases, this 98 // box or such, that window typically provides a bare bones (native?) message 99 // pump. That bare-bones message pump generally supports little more than a 101 // message. MessageLoop extends that bare-bones message pump to also service 104 // The basic structure of the extension (referred to as a sub-pump) is that a 107 // for an extended set of events, including the availability of Tasks to run. [all …]
|
| /external/python/cpython2/Lib/test/ |
| D | test_sgmllib.py | 11 self.events = [] 12 self.append = self.events.append 16 # Normalize the list of events so that buffer artefacts don't 20 for event in self.events: 23 L[-1] = ("data", L[-1][1] + event[1]) 27 self.events = L 70 entity_or_charref = re.compile('(?:&([a-zA-Z][-.a-zA-Z0-9]*)' 71 '|&#(x[0-9a-zA-Z]+|[0-9]+))(;?)') 110 #self.events = parser.events 116 events = self.get_events(source) [all …]
|
| D | test_htmlparser.py | 12 self.events = [] 13 self.append = self.events.append 17 # Normalize the list of events so that buffer artefacts don't 21 for event in self.events: 24 L[-1] = ("data", L[-1][1] + event[1]) 28 self.events = L 80 events = parser.get_events() 81 if events != expected_events: 82 self.fail("received events did not match expected events\n" 84 "\nReceived:\n" + pprint.pformat(events)) [all …]
|
| /external/linux-kselftest/tools/testing/selftests/bpf/bpf_testmod/ |
| D | bpf_testmod-events.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 22 __entry->pid = task->pid; 23 memcpy(__entry->comm, task->comm, TASK_COMM_LEN); 24 __entry->off = ctx->off; 25 __entry->len = ctx->len; 28 __entry->pid, __entry->comm, __entry->off, __entry->len) 31 /* A bare tracepoint with no event associated with it */ 56 #define TRACE_INCLUDE_FILE bpf_testmod-events
|
| /external/linux-kselftest/tools/testing/selftests/bpf/ |
| D | test_flow_dissector.c | 1 // SPDX-License-Identifier: GPL-2.0 6 * GRE/GUE/BARE outer layer 4, where bare is IPIP/SIT/IPv4-in-IPv6/.. 124 switch (addr->sa_family) { in util_printaddr() 133 addr->sa_family); in util_printaddr() 136 if (!inet_ntop(addr->sa_family, ((void *) addr) + off, nbuf, in util_printaddr() 171 iph->ihl = 5; in build_ipv4_header() 172 iph->version = 4; in build_ipv4_header() 173 iph->tos = tos; in build_ipv4_header() 174 iph->ttl = 8; in build_ipv4_header() 175 iph->tot_len = htons(sizeof(*iph) + payload_len); in build_ipv4_header() [all …]
|
| /external/python/cpython3/Lib/asyncio/ |
| D | tasks.py | 24 from . import events 31 # is not thread safe. See bpo-11866 for a longer explanation. 38 loop = events.get_running_loop() 45 loop = events.get_running_loop() 71 "the method support will be mandatory for third-party " 85 # - Either _fut_waiter is None, and _step() is scheduled; 86 # - or _fut_waiter is some Future, and _step() is *not* scheduled. 99 del self._source_traceback[-1] 107 self._name = f'Task-{_task_name_counter()}' 215 # https://github.com/python/cpython/pull/31394#issuecomment-1053545331 [all …]
|
| /external/python/cpython3/Lib/test/ |
| D | test_htmlparser.py | 11 self.events = [] 12 self.append = self.events.append 16 # Normalize the list of events so that buffer artefacts don't 20 for event in self.events: 23 L[-1] = ("data", L[-1][1] + event[1]) 27 self.events = L 93 events = parser.get_events() 94 if events != expected_events: 95 self.fail("received events did not match expected events" + 98 "\nReceived:\n" + pprint.pformat(events)) [all …]
|
| /external/aws-sdk-java-v2/changelogs/ |
| D | 2.22.x-CHANGELOG.md | 1 # __2.22.13__ __2024-01-08__ 3 - ### Features 4 - Aws CodeBuild now supports new compute type BUILD_GENERAL1_XLARGE 7 - ### Features 8 …- Amazon EC2 R7iz bare metal instances are powered by custom 4th generation Intel Xeon Scalable pr… 11 - ### Features 12 …- This release adds support for query type configuration on firewall rules that enables customers … 14 # __2.22.12__ __2024-01-05__ 16 - ### Features 17 - Documentation updates for AWS Key Management Service (KMS). [all …]
|
| D | 2.9.x-CHANGELOG.md | 1 # __2.9.26__ __2019-10-23__ 3 - ### Features 4 …- AWS Security Token Service (STS) now supports a regional configuration flag to make the client r… 7 - ### Features 8 …- This release adds 4 new APIs ListQueues, ListPhoneNumbers, ListContactFlows, and ListHoursOfOper… 11 - ### Features 12 …- Amazon Polly adds new female voices: US Spanish - Lupe and Brazilian Portuguese - Camila; both v… 14 # __2.9.25__ __2019-10-22__ 16 - ### Features 17 - Add support for new serial evaluation method for events in a detector model. [all …]
|
| /external/rust/crates/tracing-subscriber/src/ |
| D | lib.rs | 4 //! scoped, structured, and async-aware diagnostics. The [`Subscriber`] trait 7 //! behaviour, and batteries-included implementations of common subscriber 10 //! `tracing-subscriber` is intended for use by both `Subscriber` authors and 15 //! [msrv]: #supported-rust-versions 19 //! The most important component of the `tracing-subscriber` API is the 30 //! spans and events are recorded by a particular layer. This allows different 32 //! program. See the [documentation on per-layer filtering][plf] for more 36 //! [composed together]: crate::layer#composing-layers 39 //! [plf]: crate::layer#per-layer-filtering 45 //! - [`fmt`] - Formats and logs tracing data (requires the `fmt` feature flag) [all …]
|
| /external/pigweed/docs/os/ |
| D | index.rst | 1 .. _docs-os: 16 Although we primarily target smaller-footprint MMU-less 32-bit microcontrollers, 17 the OS abstraction layers are written to work on everything from single-core 18 bare metal low end microcontrollers to asymmetric multiprocessing (AMP) and 25 .. list-table:: 27 * - **Environment** 28 - **Status** 29 * - STL (Mac, Window, & Linux) 30 - **✔ Supported** 31 * - `FreeRTOS <https://www.freertos.org/>`_ [all …]
|
| /external/rust/crates/gdbstub/src/ |
| D | lib.rs | 1 //! An ergonomic, featureful, and easy-to-integrate implementation of the [GDB 2 //! Remote Serial Protocol](https://sourceware.org/gdb/onlinedocs/gdb/Remote-Protocol.html#Remote-P… 3 //! in Rust, with no-compromises `#![no_std]` support. 10 //! `default-features = false`. 12 //! - `alloc` 13 //! - Implement `Connection` for `Box<dyn Connection>`. 14 //! - Log outgoing packets via `log::trace!` (uses a heap-allocated output 16 //! - Provide built-in implementations for certain protocol features: 17 //! - Use a heap-allocated packet buffer in `GdbStub` (if none is 19 //! - (Monitor Command) Use a heap-allocated output buffer in [all …]
|
| /external/perfetto/ui/src/frontend/ |
| D | router.ts | 7 // http://www.apache.org/licenses/LICENSE-2.0 48 // This is client-only. All the routing logic in the Perfetto UI uses only 70 // For connecting to a trace_processor_shell --httpd instance running on a 71 // non-standard port. This requires the CSP_WS_PERMISSIVE_PORT flag to relax 122 // action (either user-initiated or code-initited) navigates to #!/info, the 160 // When using the UI we can hit "bare" links (e.g. just '#!/info') which 162 // - When clicking on an <a> element from the sidebar. 163 // - When the code calls Router.navigate(). 164 // - When the user pastes a URL from docs page. 166 // We do so by re-setting the `local_cache_key` and doing a [all …]
|
| /external/llvm/lib/Target/ARM/ |
| D | ARMSubtarget.h | 1 //===-- ARMSubtarget.h - Define Subtarget for the ARM ----------*- C++ -*--===// 8 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 65 /// is not 64-bit aligned. 75 /// ARMProcFamily - ARM processor family: Cortex-A8, Cortex-A9, and others. 78 /// ARMProcClass - ARM processor class: None, AClass, RClass or MClass. 81 /// ARMArch - ARM architecture 85 /// HasV6Ops, HasV6MOps, HasV6KOps, HasV6T2Ops, HasV7Ops, HasV8Ops - 101 /// HasVFPv2, HasVFPv3, HasVFPv4, HasFPARMv8, HasNEON - Specify what 109 /// UseNEONForSinglePrecisionFP - if the NEONFP attribute has been [all …]
|
| /external/pigweed/pw_system/py/pw_system/ |
| D | console.py | 7 # https://www.apache.org/licenses/LICENSE-2.0 16 To start the console, provide a serial port as the --device argument and paths 19 python -m pw_system.console --device /dev/ttyUSB0 --proto-globs pw_rpc/echo.proto 24 rpcs - used to invoke RPCs 25 device - the serial device used for communication 26 client - the pw_rpc.Client 27 protos - protocol buffer messages indexed by proto package 32 """ # pylint: disable=line-too-long 83 def get_parser() -> argparse.ArgumentParser: 87 prog="python -m pw_system.console", description=__doc__ [all …]
|
| /external/mesa3d/src/glx/ |
| D | glx_pbuffer.c | 18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL 41 #include <X11/Xlib-xcb.h> 84 req->reqType = opcode; in ChangeDrawableAttribute() 85 req->glxCode = X_GLXChangeDrawableAttributes; in ChangeDrawableAttribute() 86 req->drawable = drawable; in ChangeDrawableAttribute() 87 req->numAttribs = (CARD32) num_attribs; in ChangeDrawableAttribute() 103 /* Keep a local copy for masking out DRI2 proto events as needed */ in ChangeDrawableAttribute() 104 pdraw->eventMask = attribs[i * 2 + 1]; in ChangeDrawableAttribute() 166 psc = priv->screens[config->screen]; in CreateDRIDrawable() 167 if (psc->driScreen == NULL) in CreateDRIDrawable() [all …]
|
| /external/apache-xml/src/main/java/org/apache/xml/dtm/ |
| D | DTM.java | 10 * http://www.apache.org/licenses/LICENSE-2.0 19 * $Id: DTM.java 468653 2006-10-28 07:07:05Z minchau $ 39 * <p>Namespace URLs, local-names, and expanded-names can all be 42 * the URL ID, and the local-name ID. Note that the namespace URL id 44 * For consistancy, zero should not be used for a local-name index. </p> 74 * on Xalan's internals -- especially given Java's lack of C-style 75 * typedefs -- so we won't cut over unless we're convinced the new 84 public static final int NULL = -1; 169 // %TBD% RETIRED -- do via setFeature if needed. Remove from impls. 205 * Returns a bare-bones iterator that must be initialized [all …]
|
| /external/python/cpython3/Doc/howto/ |
| D | logging.rst | 5 :Author: Vinay Sajip <vinay_sajip at red-dove dot com> 7 .. _logging-basic-tutorial: 12 ---------------------- 14 Logging is a means of tracking events that happen when some software runs. The 16 events have occurred. An event is described by a descriptive message which can 18 each occurrence of the event). Events also have an importance which the 30 +-------------------------------------+--------------------------------------+ 36 +-------------------------------------+--------------------------------------+ 37 | Report events that occur during | :func:`logging.info` (or | 41 +-------------------------------------+--------------------------------------+ [all …]
|
| /external/angle/build/android/ |
| D | test_runner.py | 4 # Use of this source code is governed by a BSD-style license that can be 30 import _strptime # pylint: disable=unused-import 32 # pylint: disable=ungrouped-imports 59 from lib.results import result_sink # pylint: disable=import-error 83 '--test-launcher-retry-limit', 84 '--test_launcher_retry_limit', 85 '--num_retries', '--num-retries', 86 '--isolated-script-test-launcher-retry-limit', 91 '--test-launcher-summary-output', 92 '--json-results-file', [all …]
|
| /external/cronet/build/android/ |
| D | test_runner.py | 4 # Use of this source code is governed by a BSD-style license that can be 30 import _strptime # pylint: disable=unused-import 32 # pylint: disable=ungrouped-imports 59 from lib.results import result_sink # pylint: disable=import-error 83 '--test-launcher-retry-limit', 84 '--test_launcher_retry_limit', 85 '--num_retries', '--num-retries', 86 '--isolated-script-test-launcher-retry-limit', 91 '--test-launcher-summary-output', 92 '--json-results-file', [all …]
|
| /external/googleapis/google/cloud/lifesciences/v2beta/ |
| D | workflows.proto | 7 // http://www.apache.org/licenses/LICENSE-2.0 41 "https://www.googleapis.com/auth/cloud-platform"; 54 // you must disable and re-enable the API to grant the Life Sciences 82 // User-defined labels to associate with the returned operation. These 117 // The secret must decrypt to a JSON-encoded dictionary where key-value pairs 135 // this name, making it useful for inter-container communication. The name 147 // google/cloud-sdk) or a bare image name ('bash') to pull from the default 176 // because an action has exited with a non-zero status (and did not have the 181 // non-background action that executed. This can be used by workflow engine 190 // The secret must decrypt to a JSON-encoded dictionary where key-value pairs [all …]
|
| /external/google-cloud-java/java-life-sciences/proto-google-cloud-life-sciences-v2beta/src/main/proto/google/cloud/lifesciences/v2beta/ |
| D | workflows.proto | 7 // http://www.apache.org/licenses/LICENSE-2.0 41 "https://www.googleapis.com/auth/cloud-platform"; 54 // you must disable and re-enable the API to grant the Life Sciences 82 // User-defined labels to associate with the returned operation. These 117 // The secret must decrypt to a JSON-encoded dictionary where key-value pairs 135 // this name, making it useful for inter-container communication. The name 147 // google/cloud-sdk) or a bare image name ('bash') to pull from the default 176 // because an action has exited with a non-zero status (and did not have the 181 // non-background action that executed. This can be used by workflow engine 190 // The secret must decrypt to a JSON-encoded dictionary where key-value pairs [all …]
|
| /external/python/google-api-python-client/googleapiclient/discovery_cache/documents/ |
| D | genomics.v1.json | 10 "x16": "http://www.google.com/images/icons/product/search-16.gif", 11 "x32": "http://www.google.com/images/icons/product/search-32.gif" 47 "Responses with Content-Type of application/json", 48 "Media download with context-dependent Content-Type", 49 "Responses with Content-Type of application/x-protobuf" 81 …"description": "Available to use for quota purposes for server-side applications. Can be any arbit… 111 …"description": "The accelerator type string (for example, \"nvidia-tesla-k80\"). Only NVIDIA GPU a… 130 … be specified here as an encrypted secret. The secret must decrypt to a JSON-encoded dictionary co… 134 …iting any duplicate values. The secret must decrypt to a JSON-encoded dictionary where key-value p… 144 …-zero status (and did not have the `IGNORE_EXIT_STATUS` flag set). This can be used to determine i… [all …]
|
| D | genomics.v2alpha1.json | 5 "https://www.googleapis.com/auth/cloud-platform": { 22 "x16": "http://www.google.com/images/icons/product/search-16.gif", 23 "x32": "http://www.google.com/images/icons/product/search-32.gif" 59 "Responses with Content-Type of application/json", 60 "Media download with context-dependent Content-Type", 61 "Responses with Content-Type of application/x-protobuf" 93 …"description": "Available to use for quota purposes for server-side applications. Can be any arbit… 113 …e Cloud Genomics API before the v2alpha1 API launch, you must disable and re-enable the API to gra… 127 "https://www.googleapis.com/auth/cloud-platform", 138 …"description": "Starts asynchronous cancellation on a long-running operation. The server makes a b… [all …]
|
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
| D | ARMSubtarget.h | 1 //===-- ARMSubtarget.h - Define Subtarget for the ARM ----------*- C++ -*--===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 124 /// is not 64-bit aligned. 134 /// ARMProcFamily - ARM processor family: Cortex-A8, Cortex-A9, and others. 137 /// ARMProcClass - ARM processor class: None, AClass, RClass or MClass. 140 /// ARMArch - ARM architecture 144 /// HasV6Ops, HasV6MOps, HasV6KOps, HasV6T2Ops, HasV7Ops, HasV8Ops - 166 /// HasVFPv2, HasVFPv3, HasVFPv4, HasFPARMv8, HasNEON - Specify what [all …]
|