Lines Matching defs:output

471 		if (!list->Insert(reply.output)) {
477 PRINT_OUTPUT("output ", reply.output);
503 media_output output;
504 if (B_OK != node->GetNextOutput(&cookie, &output))
506 if (!list->Insert(output)) {
512 PRINT_OUTPUT("output ", output);
602 media_output* output;
632 for (i = 0, list->Rewind(); list->GetNext(&output); i++) {
634 outputs[i] = *output;
1030 // find the output and input nodes
1067 request1.output = from;
1183 PRINT_OUTPUT(" output", *out_output);
1288 BMediaRoster::Disconnect(const media_output& output, const media_input& input)
1290 if (IS_INVALID_NODEID(output.node.node)) {
1291 printf("BMediaRoster::Disconnect: output.node.node %" B_PRId32
1292 " invalid\n", output.node.node);
1300 if (!(output.node.kind & B_BUFFER_PRODUCER)) {
1301 printf("BMediaRoster::Disconnect: output.node.kind 0x%" B_PRIx32
1302 " is no B_BUFFER_PRODUCER\n", output.node.kind);
1310 if (input.source.port != output.source.port) {
1312 " doesn't match output.source.port %" B_PRId32 "\n",
1313 input.source.port, output.source.port);
1316 if (input.source.id != output.source.id) {
1318 " doesn't match output.source.id %" B_PRId32 "\n", input.source.id,
1319 output.source.id);
1322 if (input.destination.port != output.destination.port) {
1324 " doesn't match output.destination.port %" B_PRId32 "\n",
1325 input.destination.port, output.destination.port);
1328 if (input.destination.id != output.destination.id) {
1330 " doesn't match output.destination.id %" B_PRId32 "\n",
1331 input.destination.id, output.destination.id);
1335 return Disconnect(output.node.node, output.source, input.node.node,
1639 output or input as the currently available is taken into usage.
1882 media_output *output;
1896 for (i = 0, list.Rewind(); list.GetNext(&output);) {
1898 && filter_type != output->format.type) {
1902 if (output->destination != media_destination::null) {
1907 out_free_outputs[i] = *output;
1911 PRINT_OUTPUT(" output ", out_free_outputs[i]);
1935 media_output *output;
1948 for (i = 0, list.Rewind(); list.GetNext(&output);) {
1949 if (output->destination == media_destination::null) {
1953 out_active_outputs[i] = *output;
1957 PRINT_OUTPUT(" output ", out_active_outputs[i]);
1980 media_output *output;
1993 for (i = 0, list.Rewind(); list.GetNext(&output); i++) {
1994 out_outputs[i] = *output;
1998 PRINT_OUTPUT(" output ", out_outputs[i]);
3209 BMediaRoster::GetFormatFor(const media_output& output, media_format* _format,
3215 if ((output.node.kind & B_BUFFER_PRODUCER) == 0)
3217 if (IS_INVALID_SOURCE(output.source))
3227 rv = QueryPort(output.source.port, PRODUCER_FORMAT_SUGGESTION_REQUESTED,
3411 Returns < 0 for "not present", positive size for output data size.