/external/libmojo/mojo/edk/system/ports/ |
event.h | 25 PortName peer_port_name; 27 PortName referring_port_name; 47 PortName port_name; 58 PortName proxy_port_name; 60 PortName proxy_to_port_name; 72 PortName new_port_name;
|
node.h | 75 int GetPort(const PortName& port_name, PortRef* port_ref); 86 const PortName& peer_port_name); 141 const PortName& destination_port_name); 159 int OnPortAccepted(const PortName& port_name); 160 int OnObserveProxy(const PortName& port_name, 162 int OnObserveProxyAck(const PortName& port_name, uint64_t last_sequence_num); 163 int OnObserveClosure(const PortName& port_name, uint64_t last_sequence_num); 164 int OnMergePort(const PortName& port_name, const MergePortEventData& event); 166 int AddPortWithName(const PortName& port_name, scoped_refptr<Port> port); 167 void ErasePort(const PortName& port_name) [all...] |
port_ref.h | 22 PortRef(const PortName& name, scoped_refptr<Port> port); 27 const PortName& name() const { return name_; } 33 PortName name_;
|
name.h | 38 struct PortName : Name { 39 PortName() : Name(0, 0) {} 40 PortName(uint64_t v1, uint64_t v2) : Name(v1, v2) {} 43 extern const PortName kInvalidPortName; 59 struct hash<mojo::edk::ports::PortName> { 60 std::size_t operator()(const mojo::edk::ports::PortName& name) const {
|
message.h | 50 PortName* mutable_ports() { 51 return reinterpret_cast<PortName*>(start_ + num_header_bytes_); 53 const PortName* ports() const { 57 size_t num_ports() const { return num_ports_bytes_ / sizeof(PortName); }
|
name.cc | 11 extern const PortName kInvalidPortName = {0, 0};
|
port.h | 36 PortName peer_port_name;
|
port_ref.cc | 19 PortRef::PortRef(const PortName& name, scoped_refptr<Port> port)
|
message.cc | 60 *num_ports_bytes = event_data->num_ports * sizeof(PortName); 77 num_payload_bytes, num_ports * sizeof(PortName)) {
|
node.cc | 107 int Node::GetPort(const PortName& port_name, PortRef* port_ref) { 117 PortName port_name; 131 const PortName& peer_port_name) { 198 std::deque<PortName> referenced_port_names; 203 PortName peer_port_name; 293 const PortName& new_port_name = (*message)->ports()[i]; 355 const PortName& destination_port_name) { 416 PortName port_name = GetEventHeader(*message)->port_name; 498 int Node::OnPortAccepted(const PortName& port_name) { 510 int Node::OnObserveProxy(const PortName& port_name [all...] |
/external/capstone/packages/freebsd/ports/devel/capstone/ |
Makefile | 3 PORTNAME= capstone
|
/external/libmojo/mojo/edk/system/ |
platform_handle_dispatcher.h | 32 ports::PortName* ports, 41 const ports::PortName* ports,
|
platform_handle_dispatcher.cc | 45 ports::PortName* ports, 81 const ports::PortName* ports,
|
data_pipe_consumer_dispatcher.h | 68 ports::PortName* ports, 77 const ports::PortName* ports,
|
data_pipe_producer_dispatcher.h | 68 ports::PortName* ports, 77 const ports::PortName* ports,
|
/device/google/marlin/usb/ |
Usb.cpp | 70 std::string appendRoleNodeHelper(const std::string &portName, 72 std::string node("/sys/class/typec/" + portName); 114 void switchToDrp(const std::string &portName) { 116 appendRoleNodeHelper(std::string(portName.c_str()), PortRoleType::MODE); 134 bool switchMode(const hidl_string &portName, 137 appendRoleNodeHelper(std::string(portName.c_str()), newRole.type); 184 switchToDrp(std::string(portName.c_str())); 191 Return<void> Usb::switchRole(const hidl_string &portName, 194 appendRoleNodeHelper(std::string(portName.c_str()), newRole.type); 210 roleSwitch = switchMode(portName, newRole, this) [all...] |
/device/google/wahoo/usb/ |
Usb.cpp | 96 std::string appendRoleNodeHelper(const std::string &portName, 98 std::string node("/sys/class/typec/" + portName); 140 void switchToDrp(const std::string &portName) { 142 appendRoleNodeHelper(std::string(portName.c_str()), PortRoleType::MODE); 160 bool switchMode(const hidl_string &portName, 163 appendRoleNodeHelper(std::string(portName.c_str()), newRole.type); 210 switchToDrp(std::string(portName.c_str())); 240 Return<void> Usb::switchRole(const hidl_string &portName, 243 appendRoleNodeHelper(std::string(portName.c_str()), newRole.type); 259 roleSwitch = switchMode(portName, newRole, this) [all...] |
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
GraphExporter.java | 105 for(String portName : outputPorts) { 106 OutputPort source = filter.getConnectedOutputPort(portName); 117 String color = filter.getSignature().getOutputPortInfo(portName).isRequired() 123 getDotName(portName) + "_OUT -> " + 129 for(String portName : inputPorts) { 130 InputPort target = filter.getConnectedInputPort(portName); 135 String color = filter.getSignature().getInputPortInfo(portName).isRequired() 142 getDotName(portName) + "_IN [color=" + color + "];\n");
|
Signature.java | 176 String portName = entry.getKey(); 178 InputPort inputPort = filter.getConnectedInputPort(portName); 181 + "input port '" + portName + "'!"); 183 filterInputs.remove(portName); 197 String portName = entry.getKey(); 199 OutputPort outputPort = filter.getConnectedOutputPort(portName); 202 + "output port '" + portName + "'!"); 204 filterOutputs.remove(portName);
|
/hardware/interfaces/usb/1.0/ |
IUsb.hal | 29 * @param portName name of the port for which the role has to be changed 32 oneway switchRole(string portName, PortRole role);
|
IUsbCallback.hal | 40 * @param portName name of the port for which the roleswap is requested. 44 oneway notifyRoleSwitchStatus(string portName, PortRole newRole, Status retval);
|
/hardware/interfaces/usb/1.0/default/ |
Usb.cpp | 52 std::string appendRoleNodeHelper(const std::string portName, PortRoleType type) { 53 std::string node("/sys/class/dual_role_usb/" + portName); 85 Return<void> Usb::switchRole(const hidl_string& portName, 87 std::string filename = appendRoleNodeHelper(std::string(portName.c_str()), 102 mCallback->notifyRoleSwitchStatus(portName, newRole, 111 Return<void> ret = mCallback->notifyRoleSwitchStatus(portName, newRole, Status::ERROR); 118 Status getCurrentRoleHelper(std::string portName, 125 portName + "/power_role"; 129 portName + "/data_role"; 133 portName + "/mode" [all...] |
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
SocketTransportWrapper.java | 68 String portName = null; 71 portName = address; 74 portName = address.substring(i+1); 77 port = Integer.parseInt(portName); 154 String portName = null; 160 portName = address.substring(i+1); 163 port = Integer.parseInt(portName);
|
/hardware/interfaces/usb/1.0/vts/functional/ |
VtsHalUsbV1_0TargetTest.cpp | 83 parent_.usb_last_port_status.portName = 84 currentPortStatus[0].portName.c_str(); 98 Return<void> notifyRoleSwitchStatus(const hidl_string& /*portName*/, 201 ALOGI("rightafter: %s", usb_last_port_status.portName.c_str()); 239 if (!usb_last_port_status.portName.empty()) { 240 hidl_string portBeingSwitched = usb_last_port_status.portName; 241 ALOGI("mode portname:%s", portBeingSwitched.c_str()); 286 if (!usb_last_port_status.portName.empty()) { 287 hidl_string portBeingSwitched = usb_last_port_status.portName; 288 ALOGI("switchPower role portname:%s", portBeingSwitched.c_str()) [all...] |
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
Filter.java | 170 public FrameFormat getOutputFormat(String portName, FrameFormat inputFormat) { 174 public final FrameFormat getInputFormat(String portName) { 175 InputPort inputPort = getInputPort(portName); 222 public final InputPort getInputPort(String portName) { 224 throw new NullPointerException("Attempting to access input port '" + portName 227 InputPort result = mInputPorts.get(portName); 229 throw new IllegalArgumentException("Unknown input port '" + portName + "' on filter " 235 public final OutputPort getOutputPort(String portName) { 237 throw new NullPointerException("Attempting to access output port '" + portName 240 OutputPort result = mOutputPorts.get(portName); [all...] |