Searched defs:PortInfo (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/media/libstagefright/include/
H A DSimpleSoftOMXComponent.h49 struct PortInfo { struct in struct:android::SimpleSoftOMXComponent
81 PortInfo *editPortInfo(OMX_U32 portIndex);
98 Vector<PortInfo> mPorts;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DSignature.java44 private HashMap<String, PortInfo> mInputPorts = null;
45 private HashMap<String, PortInfo> mOutputPorts = null;
49 static class PortInfo { class in class:Signature
53 public PortInfo() { method in class:Signature.PortInfo
58 public PortInfo(int flags, FrameType type) { method in class:Signature.PortInfo
94 addInputPort(name, new PortInfo(flags, type));
107 addOutputPort(name, new PortInfo(flags, type));
146 for (Entry<String, PortInfo> entry : mInputPorts.entrySet()) {
149 for (Entry<String, PortInfo> entry : mOutputPorts.entrySet()) {
161 PortInfo getInputPortInf
[all...]
/frameworks/base/media/java/android/media/midi/
H A DMidiDeviceInfo.java139 public static final class PortInfo { class in class:MidiDeviceInfo
154 PortInfo(int type, int portNumber, String name) { method in class:MidiDeviceInfo.PortInfo
260 * @return array of {@link PortInfo}
262 public PortInfo[] getPorts() {
263 PortInfo[] ports = new PortInfo[mInputPortCount + mOutputPortCount];
267 ports[index++] = new PortInfo(PortInfo.TYPE_INPUT, i, mInputPortNames[i]);
270 ports[index++] = new PortInfo(PortInfo
[all...]
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbPortManager.java123 private final ArrayMap<String, PortInfo> mPorts = new ArrayMap<String, PortInfo>();
152 final PortInfo portInfo = mPorts.get(portId);
160 final PortInfo portInfo = mPorts.get(portId);
389 for (PortInfo portInfo : mPorts.values()) {
400 mPorts.valueAt(i).mDisposition = PortInfo.DISPOSITION_REMOVED;
441 final PortInfo portInfo = mPorts.valueAt(i);
443 case PortInfo.DISPOSITION_ADDED:
445 portInfo.mDisposition = PortInfo.DISPOSITION_READY;
447 case PortInfo
718 private static final class PortInfo { class in class:UsbPortManager
731 public PortInfo(String portId, int supportedModes) { method in class:UsbPortManager.PortInfo
[all...]

Completed in 194 milliseconds