Home | History | Annotate | Download | only in libaudioclient

Lines Matching full:portid

185                                         audio_port_handle_t *portId)
207 if (portId == NULL) {
208 ALOGE("getOutputForAttr NULL portId - shouldn't happen");
229 data.writeInt32(*portId);
244 *portId = (audio_port_handle_t)reply.readInt32();
295 audio_port_handle_t *portId)
311 if (portId == NULL) {
312 ALOGE("getInputForAttr NULL portId - shouldn't happen");
324 data.writeInt32(*portId);
335 *portId = (audio_port_handle_t)reply.readInt32();
339 virtual status_t startInput(audio_port_handle_t portId,
344 data.writeInt32(portId);
352 virtual status_t stopInput(audio_port_handle_t portId)
356 data.writeInt32(portId);
361 virtual void releaseInput(audio_port_handle_t portId)
365 data.writeInt32(portId);
1062 audio_port_handle_t portId = (audio_port_handle_t)data.readInt32();
1067 flags, &selectedDeviceId, &portId);
1072 reply->writeInt32(portId);
1124 audio_port_handle_t portId = (audio_port_handle_t)data.readInt32();
1127 flags, &selectedDeviceId, &portId);
1132 reply->writeInt32(portId);
1139 audio_port_handle_t portId = static_cast <audio_port_handle_t>(data.readInt32());
1141 status_t status = startInput(portId, &silenced);
1149 audio_port_handle_t portId = static_cast <audio_port_handle_t>(data.readInt32());
1150 reply->writeInt32(static_cast <uint32_t>(stopInput(portId)));
1156 audio_port_handle_t portId = static_cast <audio_port_handle_t>(data.readInt32());
1157 releaseInput(portId);