| /external/skia/gn/ |
| D | ports.gni | 5 # //include/ports/BUILD.bazel 6 # //src/ports/BUILD.bazel 14 # //src/ports:global_init 15 # //src/ports:osfile 17 "$_src/ports/SkGlobalInitialization_default.cpp", 18 "$_src/ports/SkOSFile_stdio.cpp", 22 # //src/ports:typeface_freetype 23 # //src/ports:typeface_freetype_hdrs 25 "$_src/ports/SkFontHost_FreeType.cpp", 26 "$_src/ports/SkFontHost_FreeType_common.cpp", [all …]
|
| /external/arm-trusted-firmware/plat/renesas/common/ |
| D | bl2_secure_setting.c | 23 * Security attribute setting for master ports 29 * Security attribute setting for slave ports 0 to 15 33 * Bit19: AXI-Bus (Main Memory domain AXI) slave ports 35 * Bit 9: DBSC4 register access slave ports. 45 * Bit 6: Boot ROM slave ports. 50 * Bit13: SCEG PKA (secure APB) slave ports 53 * Bit12: SCEG PKA (public APB) slave ports 56 * Bit10: SCEG Secure Core slave ports 71 * Bit22: RPC slave ports. 78 * Bit27: System Timer (SCMT) slave ports [all …]
|
| /external/trusty/arm-trusted-firmware/plat/renesas/common/ |
| D | bl2_secure_setting.c | 23 * Security attribute setting for master ports 29 * Security attribute setting for slave ports 0 to 15 33 * Bit19: AXI-Bus (Main Memory domain AXI) slave ports 35 * Bit 9: DBSC4 register access slave ports. 45 * Bit 6: Boot ROM slave ports. 50 * Bit13: SCEG PKA (secure APB) slave ports 53 * Bit12: SCEG PKA (public APB) slave ports 56 * Bit10: SCEG Secure Core slave ports 71 * Bit22: RPC slave ports. 78 * Bit27: System Timer (SCMT) slave ports [all …]
|
| /external/libchrome/mojo/core/ |
| D | node_controller.h | 26 #include "mojo/core/ports/event.h" 27 #include "mojo/core/ports/name.h" 28 #include "mojo/core/ports/node.h" 29 #include "mojo/core/ports/node_delegate.h" 45 // The owner of ports::Node which facilitates core EDK implementation. All 47 class MOJO_SYSTEM_IMPL_EXPORT NodeController : public ports::NodeDelegate, 50 class PortObserver : public ports::UserData { 62 const ports::NodeName& name() const { return name_; } in name() 64 ports::Node* node() const { return node_.get(); } in node() 70 // Create the relay used to transfer mach ports between processes. [all …]
|
| D | node_channel.h | 22 #include "mojo/core/ports/name.h" 35 virtual void OnAcceptInvitee(const ports::NodeName& from_node, 36 const ports::NodeName& inviter_name, 37 const ports::NodeName& token) = 0; 38 virtual void OnAcceptInvitation(const ports::NodeName& from_node, 39 const ports::NodeName& token, 40 const ports::NodeName& invitee_name) = 0; 41 virtual void OnAddBrokerClient(const ports::NodeName& from_node, 42 const ports::NodeName& client_name, 44 virtual void OnBrokerClientAdded(const ports::NodeName& from_node, [all …]
|
| D | message_pipe_dispatcher.cc | 15 #include "mojo/core/ports/event.h" 16 #include "mojo/core/ports/message_filter.h" 63 class PeekSizeMessageFilter : public ports::MessageFilter { 68 // ports::MessageFilter: 69 bool Match(const ports::UserMessageEvent& message_event) override { in Match() 87 const ports::PortRef& port, in MessagePipeDispatcher() 106 ports::PortRef port0; in Fuse() 114 ports::PortRef port1; in Fuse() 122 // Both ports are always closed by this call. in Fuse() 124 return rv == ports::OK; in Fuse() [all …]
|
| D | node_controller.cc | 60 ports::NodeName GetRandomNodeName() { in GetRandomNodeName() 61 ports::NodeName name; in GetRandomNodeName() 66 Channel::MessagePtr SerializeEventMessage(ports::ScopedEvent event) { in SerializeEventMessage() 67 if (event->type() == ports::Event::Type::kUserMessage) { in SerializeEventMessage() 70 ports::Event::Cast<ports::UserMessageEvent>(&event)); in SerializeEventMessage() 80 ports::ScopedEvent DeserializeEventMessage( in DeserializeEventMessage() 81 const ports::NodeName& from_node, in DeserializeEventMessage() 86 auto event = ports::Event::Deserialize(data, size); in DeserializeEventMessage() 90 if (event->type() != ports::Event::Type::kUserMessage) in DeserializeEventMessage() 100 auto message_event = ports::Event::Cast<ports::UserMessageEvent>(&event); in DeserializeEventMessage() [all …]
|
| D | user_message_impl.h | 16 #include "mojo/core/ports/event.h" 17 #include "mojo/core/ports/name.h" 18 #include "mojo/core/ports/port_ref.h" 19 #include "mojo/core/ports/user_message.h" 27 // UserMessageImpl is the sole implementation of ports::UserMessage used to 28 // attach message data to any ports::UserMessageEvent. 33 class MOJO_SYSTEM_IMPL_EXPORT UserMessageImpl : public ports::UserMessage { 51 // Creates a new ports::UserMessageEvent with an attached UserMessageImpl. 52 static std::unique_ptr<ports::UserMessageEvent> CreateEventForNewMessage(); 54 // Creates a new ports::UserMessageEvent with an attached serialized [all …]
|
| D | dispatcher.cc | 13 #include "mojo/core/ports/event.h" 43 std::unique_ptr<ports::UserMessageEvent> message) { in WriteMessage() 48 std::unique_ptr<ports::UserMessageEvent>* message) { in ReadMessage() 100 ports::PortRef remote_peer_port) { in AttachMessagePipe() 143 ports::PortName* ports, in EndSerialize() argument 162 const ports::PortName* ports, in Deserialize() argument 168 return MessagePipeDispatcher::Deserialize(bytes, num_bytes, ports, in Deserialize() 172 return SharedBufferDispatcher::Deserialize(bytes, num_bytes, ports, in Deserialize() 177 bytes, num_bytes, ports, num_ports, platform_handles, in Deserialize() 181 bytes, num_bytes, ports, num_ports, platform_handles, in Deserialize() [all …]
|
| /external/robolectric/robolectric/src/test/java/org/robolectric/fakes/ |
| D | RoboWebMessagePortTest.java | 18 private RoboWebMessagePort[] ports; field in RoboWebMessagePortTest 22 ports = RoboWebMessagePort.createPair(); in setUp() 27 assertThat(ports[0].getReceivedMessages()).isEmpty(); in testDefaults() 28 assertThat(ports[0].getConnectedPort()).isNotNull(); in testDefaults() 29 assertThat(ports[0].getWebMessageCallback()).isNull(); in testDefaults() 30 assertThat(ports[0].isClosed()).isFalse(); in testDefaults() 31 assertThat(ports[1].getReceivedMessages()).isEmpty(); in testDefaults() 32 assertThat(ports[1].getConnectedPort()).isNotNull(); in testDefaults() 33 assertThat(ports[1].getWebMessageCallback()).isNull(); in testDefaults() 34 assertThat(ports[1].isClosed()).isFalse(); in testDefaults() [all …]
|
| /external/iptables/extensions/ |
| D | libxt_REDIRECT.t | 3 -p tcp -j REDIRECT --to-ports 42;=;OK 4 -p tcp -j REDIRECT --to-ports 0;=;OK 5 -p tcp -j REDIRECT --to-ports 65535;=;OK 6 -p tcp -j REDIRECT --to-ports 65536;;FAIL 7 -p udp -j REDIRECT --to-ports 0-0;-p udp -j REDIRECT --to-ports 0;OK 8 -p udp -j REDIRECT --to-ports 512-512;-p udp -j REDIRECT --to-ports 512;OK 9 -p udp -j REDIRECT --to-ports 42-1234;=;OK 10 -p tcp -j REDIRECT --to-ports 42-1234 --random;=;OK 11 -p tcp -j REDIRECT --to-ports 42-1234/567;;FAIL 12 -p tcp -j REDIRECT --to-ports ssh;-p tcp -j REDIRECT --to-ports 22;OK [all …]
|
| D | libxt_multiport.man | 1 This module matches a set of source or destination ports. Up to 15 2 ports can be specified. A port range (port:port) counts as two 3 ports. It can only be used in conjunction with one of the 7 [\fB!\fP] \fB\-\-source\-ports\fP,\fB\-\-sports\fP \fIport\fP[\fB,\fP\fIport\fP|\fB,\fP\fIport\fP\f… 8 Match if the source port is one of the given ports. The flag 10 is a convenient alias for this option. Multiple ports or port ranges are 12 \fB53,1024:65535\fP would therefore match ports 53 and all from 1024 through 15 [\fB!\fP] \fB\-\-destination\-ports\fP,\fB\-\-dports\fP \fIport\fP[\fB,\fP\fIport\fP|\fB,\fP\fIport… 16 Match if the destination port is one of the given ports. The flag 20 [\fB!\fP] \fB\-\-ports\fP \fIport\fP[\fB,\fP\fIport\fP|\fB,\fP\fIport\fP\fB:\fP\fIport\fP]... [all …]
|
| D | libxt_multiport.c | 26 " --source-ports port[,port,port...]\n" in multiport_help() 29 " --destination-ports port[,port,port...]\n" in multiport_help() 32 " --ports port[,port,port]\n" in multiport_help() 41 "[!] --source-ports port[,port:port,port...]\n" in multiport_help_v1() 44 "[!] --destination-ports port[,port:port,port...]\n" in multiport_help_v1() 47 "[!] --ports port[,port:port,port]\n" in multiport_help_v1() 52 {.name = "source-ports", .id = O_SOURCE_PORTS, .type = XTTYPE_STRING, 56 {.name = "destination-ports", .id = O_DEST_PORTS, 60 {.name = "ports", .id = O_SD_PORTS, .type = XTTYPE_STRING, 85 parse_multi_ports(const char *portstring, uint16_t *ports, const char *proto) in parse_multi_ports() argument [all …]
|
| /external/pdfium/skia/ |
| D | BUILD.gn | 186 "//third_party/skia/src/ports/SkGlobalInitialization_default.cpp", 187 "//third_party/skia/src/ports/SkImageGenerator_none.cpp", 188 "//third_party/skia/src/ports/SkOSFile_stdio.cpp", 193 "//third_party/skia/src/ports/SkDiscardableMemory_none.cpp", 194 "//third_party/skia/src/ports/SkMemory_malloc.cpp", 231 # Select Skia ports. 237 "//third_party/skia/src/ports/SkFontHost_FreeType.cpp", 238 "//third_party/skia/src/ports/SkFontHost_FreeType_common.cpp", 244 "//third_party/skia/src/ports/SkFontHost_win.cpp", 249 "//third_party/skia/src/ports/SkFontMgr_custom.cpp", [all …]
|
| /external/selinux/libsemanage/src/ |
| D | ports_local.c | 78 semanage_port_t **ports = NULL; in semanage_port_validate_local() local 82 /* List and sort the ports */ in semanage_port_validate_local() 83 if (semanage_port_list_local(handle, &ports, &nports) < 0) in semanage_port_validate_local() 85 qsort(ports, nports, sizeof(semanage_port_t *), in semanage_port_validate_local() 92 int proto = semanage_port_get_proto(ports[i]); in semanage_port_validate_local() 93 int low = semanage_port_get_low(ports[i]); in semanage_port_validate_local() 94 int high = semanage_port_get_high(ports[i]); in semanage_port_validate_local() 106 proto2 = semanage_port_get_proto(ports[j]); in semanage_port_validate_local() 107 low2 = semanage_port_get_low(ports[j]); in semanage_port_validate_local() 108 high2 = semanage_port_get_high(ports[j]); in semanage_port_validate_local() [all …]
|
| /external/autotest/client/cros/chameleon/ |
| D | chameleon_port_finder.py | 19 Responsible for finding all ports connected to the chameleon board. 21 It does not verify if these ports are connected to DUT. 28 Chameleon board whose ports we are interested 40 ports as the first element and failed ports as second element. 65 ports_to_str = lambda ports: ', '.join( argument 67 for p in ports) 78 text += ('DUT failed to detect Chameleon ports: %s' 86 Responsible for finding all input ports connected to the chameleon board. 93 input ports as the first element and failed ports as second 105 Responsible for finding all output ports connected to the chameleon board. [all …]
|
| /external/cronet/base/mac/ |
| D | mach_port_rendezvous.h | 34 // calling code register a collection of ports for the new child. In order to 35 // acquire the ports, a child looks up the rendezvous server in the bootstrap 37 // contains the registered ports. 56 // To avoid leaking ports, either use dispositions that create rights during 74 // The collection of ports to pass to a child process. There are no restrictions 91 // Registers a collection of Mach ports |ports| to be acquirable by the 93 // until the process known by |pid| has either acquired the ports or died. 96 void RegisterPortsForPid(pid_t pid, const MachPortsForRendezvous& ports) 102 // cannot race acquiring ports before they are registered. The lock should 103 // be released after the child process is launched and the ports are [all …]
|
| /external/autotest/server/site_tests/firmware_ECUsbPorts/ |
| D | firmware_ECUsbPorts.py | 21 # Delay between turning off and on USB ports 51 Turn off USB ports and also kill FAFT client so that this acts like a 52 reboot. If USB ports cannot be turned off or on, reboot step would 58 # Port disable - same for smart and dumb ports. 90 """Probe the EC's gpio pins to determine the number of USB-A ports""" 95 # Enforce that zero ports are specified explicitly. Without 98 # someone notices this device does indeed have USB-A ports. 101 "No USB A ports could be found. If this device has " 102 "no USB-A ports, specify usb_a_port_count: 0 in your " 105 logging.info("Found %d USB ports via probe", cnt) [all …]
|
| /external/trusty/arm-trusted-firmware/fdts/ |
| D | morello-coresight.dtsi | 29 out-ports { 52 out-ports { 75 out-ports { 98 out-ports { 109 out-ports { 116 in-ports { 136 out-ports { 143 in-ports { 166 in-ports { 180 out-ports { [all …]
|
| /external/linux-kselftest/tools/testing/selftests/net/ |
| D | devlink_port_split.py | 15 # First, check that all the ports with 1 lane fail to split. 16 # Second, check that all the ports with more than 1 lane can be split 45 Class that holds information on the devlink ports, required to the tests; 46 if_names: A list of interfaces in the devlink ports. 51 Get a list of physical devlink ports. 60 ports = json.loads(stdout)['port'] 62 for port in ports: 64 if ports[port]['flavour'] == 'physical': 65 arr.append(Port(bus_info=port, name=ports[port]['netdev'])) 107 Split $port into $k ports. [all …]
|
| /external/libchrome/mojo/core/ports/ |
| D | node.h | 18 #include "mojo/core/ports/event.h" 19 #include "mojo/core/ports/name.h" 20 #include "mojo/core/ports/port.h" 21 #include "mojo/core/ports/port_ref.h" 22 #include "mojo/core/ports/user_data.h" 26 namespace ports { 51 // A Node maintains a collection of Ports (see port.h) indexed by unique 128-bit 53 // Ports within the Node and to or from other Nodes in the system. Typically 57 // New Ports can be created uninitialized using CreateUninitializedPort (and 59 // state using CreatePortPair(). Initialized ports have exactly one conjugate [all …]
|
| /external/linux-kselftest/tools/testing/selftests/drivers/net/mlxsw/ |
| D | sharedbuffer_configuration.py | 249 def get_tcbinds(ports, verify_existence=False): argument 252 for port in ports: 264 def do_check_tcbind(ports, tcbinds, vp): argument 266 pre_tcbinds = get_tcbinds(ports) 272 post_tcbinds = get_tcbinds(ports) 290 def check_tcbind(dlname, ports, pools): argument 291 tcbinds = get_tcbinds(ports, verify_existence=True) 298 do_check_tcbind(ports, tcbinds, RandomValuePicker(pools)) 301 do_check_tcbind(ports, tcbinds, record_vp) 321 def get_portpools(ports, verify_existence=False): argument [all …]
|
| /external/skia/include/ports/ |
| D | BUILD.bazel | 14 visibility = ["//src/ports:__pkg__"], 22 "//src/ports:__pkg__", 29 visibility = ["//src/ports:__pkg__"], 35 visibility = ["//src/ports:__pkg__"], 41 visibility = ["//src/ports:__pkg__"], 47 visibility = ["//src/ports:__pkg__"], 53 visibility = ["//src/ports:__pkg__"], 72 visibility = ["//src/ports:__pkg__"], 78 visibility = ["//src/ports:__pkg__"], 84 visibility = ["//src/ports:__pkg__"], [all …]
|
| /external/python/pyserial/serial/ |
| D | serialcli.py | 13 import System.IO.Ports 41 self._port_handle = System.IO.Ports.SerialPort(self.portstr) 69 self._port_handle.ReadTimeout = System.IO.Ports.SerialPort.InfiniteTimeout 77 self._port_handle.WriteTimeout = System.IO.Ports.SerialPort.InfiniteTimeout 100 … self._port_handle.Parity = getattr(System.IO.Ports.Parity, 'None') # reserved keyword in Py3k 102 self._port_handle.Parity = System.IO.Ports.Parity.Even 104 self._port_handle.Parity = System.IO.Ports.Parity.Odd 106 self._port_handle.Parity = System.IO.Ports.Parity.Mark 108 self._port_handle.Parity = System.IO.Ports.Parity.Space 113 self._port_handle.StopBits = System.IO.Ports.StopBits.One [all …]
|
| /external/chromium-trace/catapult/third_party/pyserial/serial/ |
| D | serialcli.py | 11 import System.IO.Ports 17 return System.IO.Ports.SerialPort.GetPortNames()[portnum] 40 self._port_handle = System.IO.Ports.SerialPort(self.portstr) 62 self._port_handle.ReadTimeout = System.IO.Ports.SerialPort.InfiniteTimeout 70 self._port_handle.WriteTimeout = System.IO.Ports.SerialPort.InfiniteTimeout 94 …self._port_handle.Parity = getattr(System.IO.Ports.Parity, 'None') # reserved keyword in Py3k 96 self._port_handle.Parity = System.IO.Ports.Parity.Even 98 self._port_handle.Parity = System.IO.Ports.Parity.Odd 100 self._port_handle.Parity = System.IO.Ports.Parity.Mark 102 self._port_handle.Parity = System.IO.Ports.Parity.Space [all …]
|