HomeSort by relevance Sort by last modified time
    Searched defs:portId (Results 1 - 13 of 13) sorted by null

  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiCecMessageValidator.java 270 int portId = mService.pathToPortId(path);
271 if (portId == Constants.INVALID_PORT_ID) {
HdmiCecLocalDeviceTv.java 365 void setPrevPortId(int portId) {
367 mPrevPortId = portId;
394 void doManualPortSwitching(int portId, IHdmiControlCallback callback) {
397 if (!mService.isValidPortId(portId)) {
401 if (portId == getActivePortId()) {
407 setActivePortId(portId);
418 int newPath = mService.portIdToPath(portId);
503 int portId = getPrevPortId();
504 if (portId != Constants.INVALID_PORT_ID) {
511 if (mService.pathToPortId(inactiveSource.getPhysicalAddress()) == portId) {
    [all...]
HdmiControlService.java 710 * @param portId HDMI port id
713 HdmiPortInfo getPortInfo(int portId) {
714 return mPortInfoMap.get(portId, null);
721 int portIdToPath(int portId) {
722 HdmiPortInfo portInfo = getPortInfo(portId);
724 Slog.e(TAG, "Cannot find the port info: " + portId);
741 boolean isValidPortId(int portId) {
742 return getPortInfo(portId) != null;
805 int portId = pathToPortId(physicalAddress);
806 if (portId != Constants.INVALID_PORT_ID)
    [all...]
  /frameworks/av/services/audioflinger/
TrackBase.h 70 audio_port_handle_t portId = AUDIO_PORT_HANDLE_NONE);
81 audio_port_handle_t portId() const { return mPortId; }
AudioFlinger.cpp 299 audio_port_handle_t portId = AUDIO_PORT_HANDLE_NONE;
311 deviceId, &portId);
318 AUDIO_INPUT_FLAG_MMAP_NOIRQ, deviceId, &portId);
329 thread->configure(attr, streamType, sessionId, callback, *deviceId, portId);
330 *handle = portId;
340 ALOGV("%s done status %d portId %d", __FUNCTION__, ret, portId);
659 audio_port_handle_t portId)
753 clientUid, &lStatus, portId);
    [all...]
Threads.cpp     [all...]
  /frameworks/base/services/usb/java/com/android/server/usb/
UsbPortManager.java 156 public UsbPortStatus getPortStatus(String portId) {
158 final PortInfo portInfo = mPorts.get(portId);
163 public void setPortRoles(String portId, int newPowerRole, int newDataRole,
166 final PortInfo portInfo = mPorts.get(portId);
169 pw.println("No such USB port: " + portId);
177 + "role combination: portId=" + portId
224 logAndPrint(Log.INFO, pw, "Setting USB port mode and role: portId=" + portId
232 RawPortInfo sim = mSimulatedPorts.get(portId);
    [all...]
UsbService.java 439 public UsbPortStatus getPortStatus(String portId) {
440 Preconditions.checkNotNull(portId, "portId must not be null");
445 return mPortManager != null ? mPortManager.getPortStatus(portId) : null;
452 public void setPortRoles(String portId, int powerRole, int dataRole) {
453 Preconditions.checkNotNull(portId, "portId must not be null");
460 mPortManager.setPortRoles(portId, powerRole, dataRole, null);
505 final String portId = args[1];
537 mPortManager.setPortRoles(portId, powerRole, dataRole, pw)
    [all...]
  /frameworks/av/media/libaudioclient/
IAudioFlinger.cpp 112 audio_port_handle_t portId)
141 data.writeInt32(portId);
194 audio_port_handle_t portId)
217 data.writeInt32(portId);
    [all...]
IAudioPolicyService.cpp 197 audio_port_handle_t *portId)
219 if (portId == NULL) {
220 ALOGE("getOutputForAttr NULL portId - shouldn't happen");
240 data.writeInt32(*portId);
255 *portId = (audio_port_handle_t)reply.readInt32();
305 audio_port_handle_t *portId)
321 if (portId == NULL) {
322 ALOGE("getInputForAttr NULL portId - shouldn't happen");
333 data.writeInt32(*portId);
344 *portId = (audio_port_handle_t)reply.readInt32()
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
vds.h 824 VDS_OBJECT_ID portId;
    [all...]
  /prebuilts/sdk/system_23/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 454 milliseconds